
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



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

.ir_c00000:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00000;src:url('chunks/assets/font_ed71aea2d8c477cdd668f48c.woff')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.103516;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls0_c00000{letter-spacing:0.000000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:0.000000px;}
.fc0_c00000{color:rgb(49,56,113);}
.fs0_c00000{font-size:216.000000px;}
.y0_c00000{bottom:0.000000px;}
.y1_c00000{bottom:373.700700px;}
.h2_c00000{height:211.992188px;}
.h0_c00000{height:1262.835000px;}
.h1_c00000{height:1263.000000px;}
.w0_c00000{width:892.914000px;}
.w1_c00000{width:893.250000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:125.963400px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.fs0_c00000{font-size:192.000000pt;}
.y0_c00000{bottom:0.000000pt;}
.y1_c00000{bottom:332.178400pt;}
.h2_c00000{height:188.437500pt;}
.h0_c00000{height:1122.520000pt;}
.h1_c00000{height:1122.666667pt;}
.w0_c00000{width:793.701333pt;}
.w1_c00000{width:794.000000pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:111.967467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e0cf3636226661784d2e9dd0.woff')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.043457;font-style:normal;font-weight:normal;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_5bea1cdab8f835e02efbbde0.woff')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_ec0d93be31d6f9c92232cd2d.woff')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_b389b86f03791ba5acdfe96f.woff')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_c06edfd3178cb1df1c4435c9.woff')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00001;src:url('chunks/assets/font_c9806206513dd6edc1bf8207.woff')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:1.043457;font-style:normal;font-weight:normal;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_00b2252916f3561f7aa11173.woff')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.043457;font-style: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;}
.ls19_c00001{letter-spacing:-0.462000px;}
.ls1a_c00001{letter-spacing:-0.330000px;}
.ls18_c00001{letter-spacing:-0.264000px;}
.ls1d_c00001{letter-spacing:-0.198000px;}
.ls1c_c00001{letter-spacing:-0.132000px;}
.ls17_c00001{letter-spacing:-0.066000px;}
.ls16_c00001{letter-spacing:0.000000px;}
.ls9_c00001{letter-spacing:0.001920px;}
.lsc_c00001{letter-spacing:0.006744px;}
.ls13_c00001{letter-spacing:0.114388px;}
.ls2_c00001{letter-spacing:0.132000px;}
.ls1_c00001{letter-spacing:0.138960px;}
.lsd_c00001{letter-spacing:0.160800px;}
.lsf_c00001{letter-spacing:0.190468px;}
.lse_c00001{letter-spacing:0.197520px;}
.ls7_c00001{letter-spacing:0.198000px;}
.ls10_c00001{letter-spacing:0.203304px;}
.ls11_c00001{letter-spacing:0.215280px;}
.lsb_c00001{letter-spacing:0.224520px;}
.ls12_c00001{letter-spacing:0.226468px;}
.ls5_c00001{letter-spacing:0.245280px;}
.ls14_c00001{letter-spacing:0.256096px;}
.lsa_c00001{letter-spacing:0.264000px;}
.ls6_c00001{letter-spacing:0.277920px;}
.ls1b_c00001{letter-spacing:0.330000px;}
.ls4_c00001{letter-spacing:0.369672px;}
.ls0_c00001{letter-spacing:0.402000px;}
.ls3_c00001{letter-spacing:1.062000px;}
.ls15_c00001{letter-spacing:1.406160px;}
.ls8_c00001{letter-spacing:11.790720px;}
.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:-15.234240px;}
.ws1_c00001{word-spacing:-15.102240px;}
.ws3_c00001{word-spacing:-14.970240px;}
.ws0_c00001{word-spacing:-14.904240px;}
.ws4_c00001{word-spacing:-14.706240px;}
.ws22_c00001{word-spacing:-1.506000px;}
.ws5_c00001{word-spacing:-1.406160px;}
.ws1d_c00001{word-spacing:-1.398000px;}
.ws3b_c00001{word-spacing:-0.984000px;}
.wsc_c00001{word-spacing:-0.930000px;}
.ws46_c00001{word-spacing:-0.924000px;}
.ws41_c00001{word-spacing:-0.912000px;}
.ws20_c00001{word-spacing:-0.888000px;}
.ws3e_c00001{word-spacing:-0.846000px;}
.ws13_c00001{word-spacing:-0.714000px;}
.ws29_c00001{word-spacing:-0.684000px;}
.ws15_c00001{word-spacing:-0.660000px;}
.ws34_c00001{word-spacing:-0.654000px;}
.ws2d_c00001{word-spacing:-0.648000px;}
.ws45_c00001{word-spacing:-0.642000px;}
.ws44_c00001{word-spacing:-0.612000px;}
.ws1f_c00001{word-spacing:-0.594000px;}
.ws2b_c00001{word-spacing:-0.582000px;}
.ws39_c00001{word-spacing:-0.576000px;}
.ws31_c00001{word-spacing:-0.528000px;}
.ws9_c00001{word-spacing:-0.468000px;}
.ws42_c00001{word-spacing:-0.396000px;}
.ws25_c00001{word-spacing:-0.390000px;}
.ws11_c00001{word-spacing:-0.342000px;}
.ws21_c00001{word-spacing:-0.330000px;}
.ws40_c00001{word-spacing:-0.306000px;}
.ws3f_c00001{word-spacing:-0.282000px;}
.ws12_c00001{word-spacing:-0.264000px;}
.ws18_c00001{word-spacing:-0.198000px;}
.ws3a_c00001{word-spacing:-0.162000px;}
.wsb_c00001{word-spacing:-0.132000px;}
.ws1a_c00001{word-spacing:-0.096000px;}
.ws27_c00001{word-spacing:-0.012000px;}
.ws6_c00001{word-spacing:0.000000px;}
.ws1e_c00001{word-spacing:0.114000px;}
.ws26_c00001{word-spacing:0.132000px;}
.ws2e_c00001{word-spacing:0.138000px;}
.wsd_c00001{word-spacing:0.144000px;}
.ws1c_c00001{word-spacing:0.168000px;}
.ws28_c00001{word-spacing:0.198000px;}
.ws33_c00001{word-spacing:0.216000px;}
.ws37_c00001{word-spacing:0.228000px;}
.ws2a_c00001{word-spacing:0.240000px;}
.ws2c_c00001{word-spacing:0.246000px;}
.ws19_c00001{word-spacing:0.264000px;}
.ws3d_c00001{word-spacing:0.276000px;}
.ws30_c00001{word-spacing:0.300000px;}
.ws3c_c00001{word-spacing:0.324000px;}
.ws1b_c00001{word-spacing:0.330000px;}
.ws2f_c00001{word-spacing:0.342000px;}
.wsf_c00001{word-spacing:0.348000px;}
.wsa_c00001{word-spacing:0.390000px;}
.wse_c00001{word-spacing:0.396000px;}
.ws7_c00001{word-spacing:0.402000px;}
.ws8_c00001{word-spacing:0.420000px;}
.ws23_c00001{word-spacing:0.462000px;}
.ws10_c00001{word-spacing:0.510000px;}
.ws14_c00001{word-spacing:0.528000px;}
.ws43_c00001{word-spacing:0.546000px;}
.ws38_c00001{word-spacing:0.552000px;}
.ws36_c00001{word-spacing:0.582000px;}
.ws24_c00001{word-spacing:0.594000px;}
.ws35_c00001{word-spacing:0.654000px;}
.ws32_c00001{word-spacing:0.930000px;}
.ws16_c00001{word-spacing:1.032000px;}
.ws17_c00001{word-spacing:1.044000px;}
._0_c00001{margin-left:-2.656080px;}
._2_c00001{margin-left:-1.137120px;}
._1_c00001{width:1.124928px;}
._9_c00001{width:6.354006px;}
._4_c00001{width:8.424006px;}
._3_c00001{width:12.064800px;}
._6_c00001{width:13.077391px;}
._7_c00001{width:18.048015px;}
._5_c00001{width:19.391363px;}
._8_c00001{width:20.629388px;}
.fc1_c00001{color:rgb(0,0,0);}
.fc0_c00001{color:rgb(23,54,93);}
.fs1_c00001{font-size:66.240000px;}
.fs0_c00001{font-size:156.240000px;}
.y0_c00001{bottom:0.000000px;}
.y17_c00001{bottom:229.272900px;}
.y16_c00001{bottom:249.426900px;}
.y15_c00001{bottom:289.733400px;}
.y14_c00001{bottom:309.887400px;}
.y13_c00001{bottom:350.028900px;}
.y12_c00001{bottom:370.182900px;}
.y11_c00001{bottom:390.336900px;}
.y10_c00001{bottom:410.491500px;}
.yf_c00001{bottom:430.645500px;}
.ye_c00001{bottom:450.799500px;}
.yd_c00001{bottom:470.953500px;}
.yc_c00001{bottom:511.260000px;}
.yb_c00001{bottom:531.387000px;}
.ya_c00001{bottom:551.514000px;}
.y9_c00001{bottom:571.641000px;}
.y8_c00001{bottom:591.768000px;}
.y7_c00001{bottom:611.895000px;}
.y6_c00001{bottom:632.022000px;}
.y5_c00001{bottom:652.149000px;}
.y4_c00001{bottom:672.276000px;}
.y3_c00001{bottom:730.584000px;}
.y2_c00001{bottom:750.738000px;}
.y1_c00001{bottom:807.087450px;}
.h4_c00001{height:54.628594px;}
.h5_c00001{height:57.310725px;}
.h3_c00001{height:57.313125px;}
.h2_c00001{height:135.184219px;}
.h1_c00001{height:1263.000000px;}
.h0_c00001{height:1263.060000px;}
.w0_c00001{width:892.980000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:106.380000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls19_c00001{letter-spacing:-0.410667pt;}
.ls1a_c00001{letter-spacing:-0.293333pt;}
.ls18_c00001{letter-spacing:-0.234667pt;}
.ls1d_c00001{letter-spacing:-0.176000pt;}
.ls1c_c00001{letter-spacing:-0.117333pt;}
.ls17_c00001{letter-spacing:-0.058667pt;}
.ls16_c00001{letter-spacing:0.000000pt;}
.ls9_c00001{letter-spacing:0.001707pt;}
.lsc_c00001{letter-spacing:0.005995pt;}
.ls13_c00001{letter-spacing:0.101678pt;}
.ls2_c00001{letter-spacing:0.117333pt;}
.ls1_c00001{letter-spacing:0.123520pt;}
.lsd_c00001{letter-spacing:0.142933pt;}
.lsf_c00001{letter-spacing:0.169305pt;}
.lse_c00001{letter-spacing:0.175573pt;}
.ls7_c00001{letter-spacing:0.176000pt;}
.ls10_c00001{letter-spacing:0.180715pt;}
.ls11_c00001{letter-spacing:0.191360pt;}
.lsb_c00001{letter-spacing:0.199573pt;}
.ls12_c00001{letter-spacing:0.201305pt;}
.ls5_c00001{letter-spacing:0.218027pt;}
.ls14_c00001{letter-spacing:0.227641pt;}
.lsa_c00001{letter-spacing:0.234667pt;}
.ls6_c00001{letter-spacing:0.247040pt;}
.ls1b_c00001{letter-spacing:0.293333pt;}
.ls4_c00001{letter-spacing:0.328597pt;}
.ls0_c00001{letter-spacing:0.357333pt;}
.ls3_c00001{letter-spacing:0.944000pt;}
.ls15_c00001{letter-spacing:1.249920pt;}
.ls8_c00001{letter-spacing:10.480640pt;}
.ws2_c00001{word-spacing:-13.541547pt;}
.ws1_c00001{word-spacing:-13.424213pt;}
.ws3_c00001{word-spacing:-13.306880pt;}
.ws0_c00001{word-spacing:-13.248213pt;}
.ws4_c00001{word-spacing:-13.072213pt;}
.ws22_c00001{word-spacing:-1.338667pt;}
.ws5_c00001{word-spacing:-1.249920pt;}
.ws1d_c00001{word-spacing:-1.242667pt;}
.ws3b_c00001{word-spacing:-0.874667pt;}
.wsc_c00001{word-spacing:-0.826667pt;}
.ws46_c00001{word-spacing:-0.821333pt;}
.ws41_c00001{word-spacing:-0.810667pt;}
.ws20_c00001{word-spacing:-0.789333pt;}
.ws3e_c00001{word-spacing:-0.752000pt;}
.ws13_c00001{word-spacing:-0.634667pt;}
.ws29_c00001{word-spacing:-0.608000pt;}
.ws15_c00001{word-spacing:-0.586667pt;}
.ws34_c00001{word-spacing:-0.581333pt;}
.ws2d_c00001{word-spacing:-0.576000pt;}
.ws45_c00001{word-spacing:-0.570667pt;}
.ws44_c00001{word-spacing:-0.544000pt;}
.ws1f_c00001{word-spacing:-0.528000pt;}
.ws2b_c00001{word-spacing:-0.517333pt;}
.ws39_c00001{word-spacing:-0.512000pt;}
.ws31_c00001{word-spacing:-0.469333pt;}
.ws9_c00001{word-spacing:-0.416000pt;}
.ws42_c00001{word-spacing:-0.352000pt;}
.ws25_c00001{word-spacing:-0.346667pt;}
.ws11_c00001{word-spacing:-0.304000pt;}
.ws21_c00001{word-spacing:-0.293333pt;}
.ws40_c00001{word-spacing:-0.272000pt;}
.ws3f_c00001{word-spacing:-0.250667pt;}
.ws12_c00001{word-spacing:-0.234667pt;}
.ws18_c00001{word-spacing:-0.176000pt;}
.ws3a_c00001{word-spacing:-0.144000pt;}
.wsb_c00001{word-spacing:-0.117333pt;}
.ws1a_c00001{word-spacing:-0.085333pt;}
.ws27_c00001{word-spacing:-0.010667pt;}
.ws6_c00001{word-spacing:0.000000pt;}
.ws1e_c00001{word-spacing:0.101333pt;}
.ws26_c00001{word-spacing:0.117333pt;}
.ws2e_c00001{word-spacing:0.122667pt;}
.wsd_c00001{word-spacing:0.128000pt;}
.ws1c_c00001{word-spacing:0.149333pt;}
.ws28_c00001{word-spacing:0.176000pt;}
.ws33_c00001{word-spacing:0.192000pt;}
.ws37_c00001{word-spacing:0.202667pt;}
.ws2a_c00001{word-spacing:0.213333pt;}
.ws2c_c00001{word-spacing:0.218667pt;}
.ws19_c00001{word-spacing:0.234667pt;}
.ws3d_c00001{word-spacing:0.245333pt;}
.ws30_c00001{word-spacing:0.266667pt;}
.ws3c_c00001{word-spacing:0.288000pt;}
.ws1b_c00001{word-spacing:0.293333pt;}
.ws2f_c00001{word-spacing:0.304000pt;}
.wsf_c00001{word-spacing:0.309333pt;}
.wsa_c00001{word-spacing:0.346667pt;}
.wse_c00001{word-spacing:0.352000pt;}
.ws7_c00001{word-spacing:0.357333pt;}
.ws8_c00001{word-spacing:0.373333pt;}
.ws23_c00001{word-spacing:0.410667pt;}
.ws10_c00001{word-spacing:0.453333pt;}
.ws14_c00001{word-spacing:0.469333pt;}
.ws43_c00001{word-spacing:0.485333pt;}
.ws38_c00001{word-spacing:0.490667pt;}
.ws36_c00001{word-spacing:0.517333pt;}
.ws24_c00001{word-spacing:0.528000pt;}
.ws35_c00001{word-spacing:0.581333pt;}
.ws32_c00001{word-spacing:0.826667pt;}
.ws16_c00001{word-spacing:0.917333pt;}
.ws17_c00001{word-spacing:0.928000pt;}
._0_c00001{margin-left:-2.360960pt;}
._2_c00001{margin-left:-1.010773pt;}
._1_c00001{width:0.999936pt;}
._9_c00001{width:5.648005pt;}
._4_c00001{width:7.488005pt;}
._3_c00001{width:10.724267pt;}
._6_c00001{width:11.624347pt;}
._7_c00001{width:16.042680pt;}
._5_c00001{width:17.236767pt;}
._8_c00001{width:18.337234pt;}
.fs1_c00001{font-size:58.880000pt;}
.fs0_c00001{font-size:138.880000pt;}
.y0_c00001{bottom:0.000000pt;}
.y17_c00001{bottom:203.798133pt;}
.y16_c00001{bottom:221.712800pt;}
.y15_c00001{bottom:257.540800pt;}
.y14_c00001{bottom:275.455467pt;}
.y13_c00001{bottom:311.136800pt;}
.y12_c00001{bottom:329.051467pt;}
.y11_c00001{bottom:346.966133pt;}
.y10_c00001{bottom:364.881333pt;}
.yf_c00001{bottom:382.796000pt;}
.ye_c00001{bottom:400.710667pt;}
.yd_c00001{bottom:418.625333pt;}
.yc_c00001{bottom:454.453333pt;}
.yb_c00001{bottom:472.344000pt;}
.ya_c00001{bottom:490.234667pt;}
.y9_c00001{bottom:508.125333pt;}
.y8_c00001{bottom:526.016000pt;}
.y7_c00001{bottom:543.906667pt;}
.y6_c00001{bottom:561.797333pt;}
.y5_c00001{bottom:579.688000pt;}
.y4_c00001{bottom:597.578667pt;}
.y3_c00001{bottom:649.408000pt;}
.y2_c00001{bottom:667.322667pt;}
.y1_c00001{bottom:717.411067pt;}
.h4_c00001{height:48.558750pt;}
.h5_c00001{height:50.942867pt;}
.h3_c00001{height:50.945000pt;}
.h2_c00001{height:120.163750pt;}
.h1_c00001{height:1122.666667pt;}
.h0_c00001{height:1122.720000pt;}
.w0_c00001{width:793.760000pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:94.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e343b651b307fc3254a1442e.woff')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00002;src:url('chunks/assets/font_df465ad139de4c0466578b16.woff')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:0.728027;font-style:normal;font-weight:normal;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_a791d8d0bc49d823aa8dd918.woff')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.087402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00002;src:url('chunks/assets/font_cd17158c3a5884fb9716916c.woff')format("woff");}.ff4_c00002{font-family:ff4_c00002;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00002;src:url('chunks/assets/font_a2d71bb42e259891c761f7fb.woff')format("woff");}.ff5_c00002{font-family:ff5_c00002;line-height:1.088379;font-style: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);}
.m1_c00002{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.lsc_c00002{letter-spacing:-0.993600px;}
.lsb_c00002{letter-spacing:-0.728640px;}
.ls3_c00002{letter-spacing:-0.662400px;}
.ls7_c00002{letter-spacing:-0.596160px;}
.ls1_c00002{letter-spacing:-0.505440px;}
.lsd_c00002{letter-spacing:-0.463680px;}
.lsa_c00002{letter-spacing:-0.397440px;}
.lse_c00002{letter-spacing:-0.331200px;}
.ls4_c00002{letter-spacing:-0.264960px;}
.ls6_c00002{letter-spacing:-0.198720px;}
.lsf_c00002{letter-spacing:-0.132480px;}
.ls2_c00002{letter-spacing:0.000000px;}
.ls0_c00002{letter-spacing:0.066240px;}
.ls9_c00002{letter-spacing:0.132480px;}
.ls5_c00002{letter-spacing:0.331200px;}
.ls8_c00002{letter-spacing:0.397440px;}
.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:-18.532800px;}
.ws9_c00002{word-spacing:-14.904000px;}
.ws5_c00002{word-spacing:-14.705280px;}
.ws3_c00002{word-spacing:-14.639040px;}
.ws8_c00002{word-spacing:-14.374080px;}
.ws2_c00002{word-spacing:-14.307840px;}
.ws6_c00002{word-spacing:-14.175360px;}
.wsb_c00002{word-spacing:-14.109120px;}
.ws4_c00002{word-spacing:-13.976640px;}
.ws1_c00002{word-spacing:-13.910400px;}
.ws7_c00002{word-spacing:-13.844160px;}
.wsa_c00002{word-spacing:-13.579200px;}
.ws17_c00002{word-spacing:-0.529920px;}
.ws14_c00002{word-spacing:-0.397440px;}
.ws10_c00002{word-spacing:-0.331200px;}
.wsf_c00002{word-spacing:-0.264960px;}
.ws1a_c00002{word-spacing:-0.198720px;}
.ws16_c00002{word-spacing:-0.132480px;}
.wse_c00002{word-spacing:-0.066240px;}
.wsc_c00002{word-spacing:0.000000px;}
.ws18_c00002{word-spacing:0.066240px;}
.ws11_c00002{word-spacing:0.198720px;}
.wsd_c00002{word-spacing:0.264960px;}
.ws19_c00002{word-spacing:0.331200px;}
.ws15_c00002{word-spacing:0.397440px;}
.ws13_c00002{word-spacing:0.596160px;}
.ws12_c00002{word-spacing:0.662400px;}
._a_c00002{margin-left:-14.291640px;}
._4_c00002{margin-left:-12.916800px;}
._5_c00002{margin-left:-11.714472px;}
._1_c00002{margin-left:-10.032264px;}
._6_c00002{margin-left:-8.661240px;}
._b_c00002{margin-left:-7.581384px;}
._7_c00002{margin-left:-6.180336px;}
._9_c00002{margin-left:-4.875552px;}
._2_c00002{margin-left:-3.179520px;}
._3_c00002{margin-left:-1.192320px;}
._0_c00002{width:1.069848px;}
._8_c00002{width:2.914560px;}
.fc1_c00002{color:rgb(0,0,0);}
.fc0_c00002{color:rgb(54,95,145);}
.fs1_c00002{font-size:66.240000px;}
.fs2_c00002{font-size:72.000000px;}
.fs0_c00002{font-size:84.240000px;}
.y0_c00002{bottom:0.000000px;}
.y24_c00002{bottom:130.140000px;}
.y23_c00002{bottom:160.020000px;}
.y22_c00002{bottom:189.720000px;}
.y21_c00002{bottom:219.419280px;}
.y20_c00002{bottom:241.560000px;}
.y1f_c00002{bottom:271.440000px;}
.y1e_c00002{bottom:301.140000px;}
.y1d_c00002{bottom:331.020000px;}
.y1c_c00002{bottom:360.720000px;}
.y1b_c00002{bottom:390.420000px;}
.y1a_c00002{bottom:420.120000px;}
.y19_c00002{bottom:450.001440px;}
.y18_c00002{bottom:471.960000px;}
.y17_c00002{bottom:501.840000px;}
.y16_c00002{bottom:531.720000px;}
.y15_c00002{bottom:561.420000px;}
.y14_c00002{bottom:591.120000px;}
.y13_c00002{bottom:620.820000px;}
.y12_c00002{bottom:650.700000px;}
.y11_c00002{bottom:680.400000px;}
.y10_c00002{bottom:710.099280px;}
.yf_c00002{bottom:732.240000px;}
.ye_c00002{bottom:762.120000px;}
.yd_c00002{bottom:791.820000px;}
.yc_c00002{bottom:821.700000px;}
.yb_c00002{bottom:851.400000px;}
.ya_c00002{bottom:881.100000px;}
.y9_c00002{bottom:910.800000px;}
.y8_c00002{bottom:940.680000px;}
.y7_c00002{bottom:970.380000px;}
.y6_c00002{bottom:1000.079280px;}
.y5_c00002{bottom:1022.220000px;}
.y4_c00002{bottom:1052.100000px;}
.y3_c00002{bottom:1081.800000px;}
.y2_c00002{bottom:1111.500000px;}
.y1_c00002{bottom:1136.520000px;}
.h4_c00002{height:57.636562px;}
.h6_c00002{height:62.572365px;}
.h3_c00002{height:62.578125px;}
.h5_c00002{height:62.581005px;}
.h2_c00002{height:69.473320px;}
.h1_c00002{height:1263.000000px;}
.h0_c00002{height:1263.060000px;}
.w0_c00002{width:892.980000px;}
.w1_c00002{width:893.250000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:106.380000px;}
.x2_c00002{left:122.940000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.lsc_c00002{letter-spacing:-0.883200pt;}
.lsb_c00002{letter-spacing:-0.647680pt;}
.ls3_c00002{letter-spacing:-0.588800pt;}
.ls7_c00002{letter-spacing:-0.529920pt;}
.ls1_c00002{letter-spacing:-0.449280pt;}
.lsd_c00002{letter-spacing:-0.412160pt;}
.lsa_c00002{letter-spacing:-0.353280pt;}
.lse_c00002{letter-spacing:-0.294400pt;}
.ls4_c00002{letter-spacing:-0.235520pt;}
.ls6_c00002{letter-spacing:-0.176640pt;}
.lsf_c00002{letter-spacing:-0.117760pt;}
.ls2_c00002{letter-spacing:0.000000pt;}
.ls0_c00002{letter-spacing:0.058880pt;}
.ls9_c00002{letter-spacing:0.117760pt;}
.ls5_c00002{letter-spacing:0.294400pt;}
.ls8_c00002{letter-spacing:0.353280pt;}
.ws0_c00002{word-spacing:-16.473600pt;}
.ws9_c00002{word-spacing:-13.248000pt;}
.ws5_c00002{word-spacing:-13.071360pt;}
.ws3_c00002{word-spacing:-13.012480pt;}
.ws8_c00002{word-spacing:-12.776960pt;}
.ws2_c00002{word-spacing:-12.718080pt;}
.ws6_c00002{word-spacing:-12.600320pt;}
.wsb_c00002{word-spacing:-12.541440pt;}
.ws4_c00002{word-spacing:-12.423680pt;}
.ws1_c00002{word-spacing:-12.364800pt;}
.ws7_c00002{word-spacing:-12.305920pt;}
.wsa_c00002{word-spacing:-12.070400pt;}
.ws17_c00002{word-spacing:-0.471040pt;}
.ws14_c00002{word-spacing:-0.353280pt;}
.ws10_c00002{word-spacing:-0.294400pt;}
.wsf_c00002{word-spacing:-0.235520pt;}
.ws1a_c00002{word-spacing:-0.176640pt;}
.ws16_c00002{word-spacing:-0.117760pt;}
.wse_c00002{word-spacing:-0.058880pt;}
.wsc_c00002{word-spacing:0.000000pt;}
.ws18_c00002{word-spacing:0.058880pt;}
.ws11_c00002{word-spacing:0.176640pt;}
.wsd_c00002{word-spacing:0.235520pt;}
.ws19_c00002{word-spacing:0.294400pt;}
.ws15_c00002{word-spacing:0.353280pt;}
.ws13_c00002{word-spacing:0.529920pt;}
.ws12_c00002{word-spacing:0.588800pt;}
._a_c00002{margin-left:-12.703680pt;}
._4_c00002{margin-left:-11.481600pt;}
._5_c00002{margin-left:-10.412864pt;}
._1_c00002{margin-left:-8.917568pt;}
._6_c00002{margin-left:-7.698880pt;}
._b_c00002{margin-left:-6.739008pt;}
._7_c00002{margin-left:-5.493632pt;}
._9_c00002{margin-left:-4.333824pt;}
._2_c00002{margin-left:-2.826240pt;}
._3_c00002{margin-left:-1.059840pt;}
._0_c00002{width:0.950976pt;}
._8_c00002{width:2.590720pt;}
.fs1_c00002{font-size:58.880000pt;}
.fs2_c00002{font-size:64.000000pt;}
.fs0_c00002{font-size:74.880000pt;}
.y0_c00002{bottom:0.000000pt;}
.y24_c00002{bottom:115.680000pt;}
.y23_c00002{bottom:142.240000pt;}
.y22_c00002{bottom:168.640000pt;}
.y21_c00002{bottom:195.039360pt;}
.y20_c00002{bottom:214.720000pt;}
.y1f_c00002{bottom:241.280000pt;}
.y1e_c00002{bottom:267.680000pt;}
.y1d_c00002{bottom:294.240000pt;}
.y1c_c00002{bottom:320.640000pt;}
.y1b_c00002{bottom:347.040000pt;}
.y1a_c00002{bottom:373.440000pt;}
.y19_c00002{bottom:400.001280pt;}
.y18_c00002{bottom:419.520000pt;}
.y17_c00002{bottom:446.080000pt;}
.y16_c00002{bottom:472.640000pt;}
.y15_c00002{bottom:499.040000pt;}
.y14_c00002{bottom:525.440000pt;}
.y13_c00002{bottom:551.840000pt;}
.y12_c00002{bottom:578.400000pt;}
.y11_c00002{bottom:604.800000pt;}
.y10_c00002{bottom:631.199360pt;}
.yf_c00002{bottom:650.880000pt;}
.ye_c00002{bottom:677.440000pt;}
.yd_c00002{bottom:703.840000pt;}
.yc_c00002{bottom:730.400000pt;}
.yb_c00002{bottom:756.800000pt;}
.ya_c00002{bottom:783.200000pt;}
.y9_c00002{bottom:809.600000pt;}
.y8_c00002{bottom:836.160000pt;}
.y7_c00002{bottom:862.560000pt;}
.y6_c00002{bottom:888.959360pt;}
.y5_c00002{bottom:908.640000pt;}
.y4_c00002{bottom:935.200000pt;}
.y3_c00002{bottom:961.600000pt;}
.y2_c00002{bottom:988.000000pt;}
.y1_c00002{bottom:1010.240000pt;}
.h4_c00002{height:51.232500pt;}
.h6_c00002{height:55.619880pt;}
.h3_c00002{height:55.625000pt;}
.h5_c00002{height:55.627560pt;}
.h2_c00002{height:61.754062pt;}
.h1_c00002{height:1122.666667pt;}
.h0_c00002{height:1122.720000pt;}
.w0_c00002{width:793.760000pt;}
.w1_c00002{width:794.000000pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:94.560000pt;}
.x2_c00002{left:109.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_711c61ad27b04f5f693de914.woff')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.088379;font-style:normal;font-weight:normal;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_b6c583b3f283a98d93710cc9.woff')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.087402;font-style:normal;font-weight:normal;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_8bc240675d35851030b05801.woff')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:0.942383;font-style:normal;font-weight:normal;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_5a11a249478fc08a80734a1c.woff')format("woff");}.ff4_c00003{font-family:ff4_c00003;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00003;src:url('chunks/assets/font_505e5cc13db0308651ad9d01.woff')format("woff");}.ff5_c00003{font-family:ff5_c00003;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00003{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.lsd_c00003{letter-spacing:-0.331200px;}
.ls8_c00003{letter-spacing:-0.264960px;}
.ls9_c00003{letter-spacing:-0.198720px;}
.lsa_c00003{letter-spacing:-0.132480px;}
.lse_c00003{letter-spacing:-0.066240px;}
.ls7_c00003{letter-spacing:0.000000px;}
.ls0_c00003{letter-spacing:0.066240px;}
.lsb_c00003{letter-spacing:0.132480px;}
.ls6_c00003{letter-spacing:0.331200px;}
.lsc_c00003{letter-spacing:0.397440px;}
.ls4_c00003{letter-spacing:1.722240px;}
.ls3_c00003{letter-spacing:1.854720px;}
.ls1_c00003{letter-spacing:2.119680px;}
.ls5_c00003{letter-spacing:2.583360px;}
.ls2_c00003{letter-spacing:4.173120px;}
.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;}
}
.ws3_c00003{word-spacing:-14.970240px;}
.ws0_c00003{word-spacing:-14.904000px;}
.ws7_c00003{word-spacing:-14.705280px;}
.ws1_c00003{word-spacing:-14.639040px;}
.ws6_c00003{word-spacing:-14.572800px;}
.ws5_c00003{word-spacing:-14.506560px;}
.ws2_c00003{word-spacing:-14.307840px;}
.ws4_c00003{word-spacing:-14.241600px;}
.ws8_c00003{word-spacing:-0.331200px;}
.wse_c00003{word-spacing:-0.132480px;}
.wsb_c00003{word-spacing:-0.066240px;}
.ws9_c00003{word-spacing:0.000000px;}
.wsd_c00003{word-spacing:0.132480px;}
.wsc_c00003{word-spacing:0.198720px;}
.wsa_c00003{word-spacing:0.264960px;}
.wsf_c00003{word-spacing:0.331200px;}
._6_c00003{margin-left:-14.128992px;}
._7_c00003{margin-left:-12.651840px;}
._4_c00003{margin-left:-10.015488px;}
._2_c00003{margin-left:-8.558208px;}
._5_c00003{margin-left:-6.948576px;}
._9_c00003{margin-left:-5.425056px;}
._8_c00003{margin-left:-3.775680px;}
._1_c00003{margin-left:-2.119680px;}
._0_c00003{margin-left:-1.119456px;}
._3_c00003{width:1.059840px;}
._b_c00003{width:3.444480px;}
._a_c00003{width:4.782528px;}
._c_c00003{width:848.998080px;}
.fc0_c00003{color:rgb(0,0,0);}
.fs0_c00003{font-size:66.240000px;}
.fs1_c00003{font-size:72.000000px;}
.y0_c00003{bottom:0.000000px;}
.y19_c00003{bottom:419.582160px;}
.y18_c00003{bottom:456.660000px;}
.y17_c00003{bottom:486.720000px;}
.y16_c00003{bottom:516.420000px;}
.y15_c00003{bottom:546.120000px;}
.y14_c00003{bottom:575.820000px;}
.y13_c00003{bottom:605.700000px;}
.y12_c00003{bottom:635.400000px;}
.y11_c00003{bottom:665.100000px;}
.y10_c00003{bottom:694.800000px;}
.yf_c00003{bottom:724.680000px;}
.ye_c00003{bottom:754.380000px;}
.yd_c00003{bottom:784.080000px;}
.yc_c00003{bottom:813.780000px;}
.yb_c00003{bottom:843.659850px;}
.ya_c00003{bottom:873.360000px;}
.y9_c00003{bottom:903.060000px;}
.y8_c00003{bottom:932.760000px;}
.y7_c00003{bottom:962.640000px;}
.y6_c00003{bottom:992.340000px;}
.y5_c00003{bottom:1022.040000px;}
.y4_c00003{bottom:1051.740000px;}
.y3_c00003{bottom:1081.620000px;}
.y2_c00003{bottom:1111.320000px;}
.y1_c00003{bottom:1141.020000px;}
.h4_c00003{height:54.628594px;}
.h3_c00003{height:57.571875px;}
.h2_c00003{height:62.578125px;}
.h1_c00003{height:1263.000000px;}
.h0_c00003{height:1263.060000px;}
.w0_c00003{width:892.980000px;}
.w1_c00003{width:893.250000px;}
.x0_c00003{left:0.000000px;}
.x2_c00003{left:106.380000px;}
.x1_c00003{left:122.940000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.lsd_c00003{letter-spacing:-0.294400pt;}
.ls8_c00003{letter-spacing:-0.235520pt;}
.ls9_c00003{letter-spacing:-0.176640pt;}
.lsa_c00003{letter-spacing:-0.117760pt;}
.lse_c00003{letter-spacing:-0.058880pt;}
.ls7_c00003{letter-spacing:0.000000pt;}
.ls0_c00003{letter-spacing:0.058880pt;}
.lsb_c00003{letter-spacing:0.117760pt;}
.ls6_c00003{letter-spacing:0.294400pt;}
.lsc_c00003{letter-spacing:0.353280pt;}
.ls4_c00003{letter-spacing:1.530880pt;}
.ls3_c00003{letter-spacing:1.648640pt;}
.ls1_c00003{letter-spacing:1.884160pt;}
.ls5_c00003{letter-spacing:2.296320pt;}
.ls2_c00003{letter-spacing:3.709440pt;}
.ws3_c00003{word-spacing:-13.306880pt;}
.ws0_c00003{word-spacing:-13.248000pt;}
.ws7_c00003{word-spacing:-13.071360pt;}
.ws1_c00003{word-spacing:-13.012480pt;}
.ws6_c00003{word-spacing:-12.953600pt;}
.ws5_c00003{word-spacing:-12.894720pt;}
.ws2_c00003{word-spacing:-12.718080pt;}
.ws4_c00003{word-spacing:-12.659200pt;}
.ws8_c00003{word-spacing:-0.294400pt;}
.wse_c00003{word-spacing:-0.117760pt;}
.wsb_c00003{word-spacing:-0.058880pt;}
.ws9_c00003{word-spacing:0.000000pt;}
.wsd_c00003{word-spacing:0.117760pt;}
.wsc_c00003{word-spacing:0.176640pt;}
.wsa_c00003{word-spacing:0.235520pt;}
.wsf_c00003{word-spacing:0.294400pt;}
._6_c00003{margin-left:-12.559104pt;}
._7_c00003{margin-left:-11.246080pt;}
._4_c00003{margin-left:-8.902656pt;}
._2_c00003{margin-left:-7.607296pt;}
._5_c00003{margin-left:-6.176512pt;}
._9_c00003{margin-left:-4.822272pt;}
._8_c00003{margin-left:-3.356160pt;}
._1_c00003{margin-left:-1.884160pt;}
._0_c00003{margin-left:-0.995072pt;}
._3_c00003{width:0.942080pt;}
._b_c00003{width:3.061760pt;}
._a_c00003{width:4.251136pt;}
._c_c00003{width:754.664960pt;}
.fs0_c00003{font-size:58.880000pt;}
.fs1_c00003{font-size:64.000000pt;}
.y0_c00003{bottom:0.000000pt;}
.y19_c00003{bottom:372.961920pt;}
.y18_c00003{bottom:405.920000pt;}
.y17_c00003{bottom:432.640000pt;}
.y16_c00003{bottom:459.040000pt;}
.y15_c00003{bottom:485.440000pt;}
.y14_c00003{bottom:511.840000pt;}
.y13_c00003{bottom:538.400000pt;}
.y12_c00003{bottom:564.800000pt;}
.y11_c00003{bottom:591.200000pt;}
.y10_c00003{bottom:617.600000pt;}
.yf_c00003{bottom:644.160000pt;}
.ye_c00003{bottom:670.560000pt;}
.yd_c00003{bottom:696.960000pt;}
.yc_c00003{bottom:723.360000pt;}
.yb_c00003{bottom:749.919867pt;}
.ya_c00003{bottom:776.320000pt;}
.y9_c00003{bottom:802.720000pt;}
.y8_c00003{bottom:829.120000pt;}
.y7_c00003{bottom:855.680000pt;}
.y6_c00003{bottom:882.080000pt;}
.y5_c00003{bottom:908.480000pt;}
.y4_c00003{bottom:934.880000pt;}
.y3_c00003{bottom:961.440000pt;}
.y2_c00003{bottom:987.840000pt;}
.y1_c00003{bottom:1014.240000pt;}
.h4_c00003{height:48.558750pt;}
.h3_c00003{height:51.175000pt;}
.h2_c00003{height:55.625000pt;}
.h1_c00003{height:1122.666667pt;}
.h0_c00003{height:1122.720000pt;}
.w0_c00003{width:793.760000pt;}
.w1_c00003{width:794.000000pt;}
.x0_c00003{left:0.000000pt;}
.x2_c00003{left:94.560000pt;}
.x1_c00003{left:109.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_acb3aeb7383502fd45a12a9c.woff')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_8b6b3c4f5d50cd88231c919c.woff')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00004;src:url('chunks/assets/font_7eaa9de8cf98f5b6560e73cf.woff')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00004;src:url('chunks/assets/font_4503f88029cff14e32154ea5.woff')format("woff");}.ff4_c00004{font-family:ff4_c00004;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00004;src:url('chunks/assets/font_d12c52165682d0ec22cc3a4f.woff')format("woff");}.ff5_c00004{font-family:ff5_c00004;line-height:1.043457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00004;src:url('chunks/assets/font_11362b09e41428adf99881ce.woff')format("woff");}.ff6_c00004{font-family:ff6_c00004;line-height:0.871094;font-style: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);}
.m1_c00004{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls1c_c00004{letter-spacing:-0.927360px;}
.ls1f_c00004{letter-spacing:-0.794880px;}
.ls1b_c00004{letter-spacing:-0.529920px;}
.ls21_c00004{letter-spacing:-0.463680px;}
.ls16_c00004{letter-spacing:-0.311040px;}
.ls1a_c00004{letter-spacing:-0.264960px;}
.ls15_c00004{letter-spacing:-0.233280px;}
.ls18_c00004{letter-spacing:-0.198720px;}
.ls1d_c00004{letter-spacing:-0.077760px;}
.ls19_c00004{letter-spacing:-0.066240px;}
.ls14_c00004{letter-spacing:0.000000px;}
.ls1e_c00004{letter-spacing:0.077760px;}
.ls3_c00004{letter-spacing:0.132480px;}
.ls11_c00004{letter-spacing:0.155520px;}
.ls13_c00004{letter-spacing:0.168480px;}
.ls12_c00004{letter-spacing:0.264960px;}
.ls20_c00004{letter-spacing:0.311040px;}
.ls4_c00004{letter-spacing:0.331200px;}
.ls0_c00004{letter-spacing:0.388800px;}
.ls17_c00004{letter-spacing:0.777600px;}
.ls2_c00004{letter-spacing:1.589760px;}
.ls1_c00004{letter-spacing:2.318400px;}
.ls10_c00004{letter-spacing:3.047040px;}
.lsd_c00004{letter-spacing:5.166720px;}
.lse_c00004{letter-spacing:5.895360px;}
.lsf_c00004{letter-spacing:10.200960px;}
.lsc_c00004{letter-spacing:13.115520px;}
.lsb_c00004{letter-spacing:13.844160px;}
.ls9_c00004{letter-spacing:15.500160px;}
.lsa_c00004{letter-spacing:16.692480px;}
.ls5_c00004{letter-spacing:41.201280px;}
.ls6_c00004{letter-spacing:41.929920px;}
.ls7_c00004{letter-spacing:49.083840px;}
.ls8_c00004{letter-spacing:49.812480px;}
.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:-19.206720px;}
.ws3_c00004{word-spacing:-18.351360px;}
.ws2_c00004{word-spacing:-17.573760px;}
.ws8_c00004{word-spacing:-17.496000px;}
.wsa_c00004{word-spacing:-17.340480px;}
.ws1_c00004{word-spacing:-17.262720px;}
.wsb_c00004{word-spacing:-15.235200px;}
.ws6_c00004{word-spacing:-14.970240px;}
.ws4_c00004{word-spacing:-14.904000px;}
.ws9_c00004{word-spacing:-14.771520px;}
.ws5_c00004{word-spacing:-14.705280px;}
.ws7_c00004{word-spacing:-14.042880px;}
.ws18_c00004{word-spacing:-0.466560px;}
.ws17_c00004{word-spacing:-0.311040px;}
.wsd_c00004{word-spacing:-0.168480px;}
.ws10_c00004{word-spacing:-0.132480px;}
.wse_c00004{word-spacing:-0.077760px;}
.wsc_c00004{word-spacing:0.000000px;}
.ws13_c00004{word-spacing:0.066240px;}
.wsf_c00004{word-spacing:0.198720px;}
.ws15_c00004{word-spacing:0.233280px;}
.ws11_c00004{word-spacing:0.264960px;}
.ws19_c00004{word-spacing:0.463680px;}
.ws12_c00004{word-spacing:0.529920px;}
.ws16_c00004{word-spacing:0.794880px;}
.ws14_c00004{word-spacing:0.927360px;}
._9_c00004{margin-left:-3.562272px;}
._0_c00004{margin-left:-1.710072px;}
._1_c00004{width:1.376352px;}
._2_c00004{width:2.940912px;}
._d_c00004{width:5.195880px;}
._c_c00004{width:6.400800px;}
._12_c00004{width:7.481880px;}
._11_c00004{width:8.571456px;}
._f_c00004{width:9.883008px;}
._e_c00004{width:11.103264px;}
._a_c00004{width:12.539232px;}
._b_c00004{width:13.675176px;}
._7_c00004{width:16.612992px;}
._8_c00004{width:17.642592px;}
._10_c00004{width:18.799416px;}
._4_c00004{width:41.103360px;}
._3_c00004{width:42.242688px;}
._5_c00004{width:49.567392px;}
._6_c00004{width:50.581944px;}
.fc2_c00004{color:rgb(0,0,0);}
.fc1_c00004{color:rgb(79,129,189);}
.fc0_c00004{color:rgb(54,95,145);}
.fs2_c00004{font-size:66.240000px;}
.fs1_c00004{font-size:77.760000px;}
.fs0_c00004{font-size:84.240000px;}
.y0_c00004{bottom:0.000000px;}
.y21_c00004{bottom:195.142320px;}
.y20_c00004{bottom:233.296560px;}
.y1f_c00004{bottom:256.513680px;}
.y1e_c00004{bottom:279.730800px;}
.y1d_c00004{bottom:302.765760px;}
.y1c_c00004{bottom:340.920000px;}
.y1b_c00004{bottom:365.400000px;}
.y1a_c00004{bottom:406.462320px;}
.y19_c00004{bottom:429.679440px;}
.y18_c00004{bottom:452.896560px;}
.y17_c00004{bottom:475.931520px;}
.y16_c00004{bottom:499.148640px;}
.y15_c00004{bottom:522.365760px;}
.y14_c00004{bottom:560.520000px;}
.y13_c00004{bottom:585.000000px;}
.y12_c00004{bottom:626.056560px;}
.y11_c00004{bottom:649.273680px;}
.y10_c00004{bottom:672.308640px;}
.yf_c00004{bottom:695.525760px;}
.ye_c00004{bottom:733.680000px;}
.yd_c00004{bottom:758.167920px;}
.yc_c00004{bottom:785.520000px;}
.yb_c00004{bottom:826.587360px;}
.ya_c00004{bottom:849.804480px;}
.y9_c00004{bottom:872.839440px;}
.y8_c00004{bottom:896.056560px;}
.y7_c00004{bottom:919.273680px;}
.y6_c00004{bottom:942.490800px;}
.y5_c00004{bottom:965.525760px;}
.y4_c00004{bottom:1003.680000px;}
.y3_c00004{bottom:1028.340000px;}
.y2_c00004{bottom:1070.992800px;}
.y1_c00004{bottom:1136.700000px;}
.h4_c00004{height:54.628594px;}
.h5_c00004{height:57.313125px;}
.h3_c00004{height:64.129219px;}
.h2_c00004{height:69.473320px;}
.h1_c00004{height:1263.000000px;}
.h0_c00004{height:1263.060000px;}
.w0_c00004{width:892.980000px;}
.w1_c00004{width:893.250000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:106.380000px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls1c_c00004{letter-spacing:-0.824320pt;}
.ls1f_c00004{letter-spacing:-0.706560pt;}
.ls1b_c00004{letter-spacing:-0.471040pt;}
.ls21_c00004{letter-spacing:-0.412160pt;}
.ls16_c00004{letter-spacing:-0.276480pt;}
.ls1a_c00004{letter-spacing:-0.235520pt;}
.ls15_c00004{letter-spacing:-0.207360pt;}
.ls18_c00004{letter-spacing:-0.176640pt;}
.ls1d_c00004{letter-spacing:-0.069120pt;}
.ls19_c00004{letter-spacing:-0.058880pt;}
.ls14_c00004{letter-spacing:0.000000pt;}
.ls1e_c00004{letter-spacing:0.069120pt;}
.ls3_c00004{letter-spacing:0.117760pt;}
.ls11_c00004{letter-spacing:0.138240pt;}
.ls13_c00004{letter-spacing:0.149760pt;}
.ls12_c00004{letter-spacing:0.235520pt;}
.ls20_c00004{letter-spacing:0.276480pt;}
.ls4_c00004{letter-spacing:0.294400pt;}
.ls0_c00004{letter-spacing:0.345600pt;}
.ls17_c00004{letter-spacing:0.691200pt;}
.ls2_c00004{letter-spacing:1.413120pt;}
.ls1_c00004{letter-spacing:2.060800pt;}
.ls10_c00004{letter-spacing:2.708480pt;}
.lsd_c00004{letter-spacing:4.592640pt;}
.lse_c00004{letter-spacing:5.240320pt;}
.lsf_c00004{letter-spacing:9.067520pt;}
.lsc_c00004{letter-spacing:11.658240pt;}
.lsb_c00004{letter-spacing:12.305920pt;}
.ls9_c00004{letter-spacing:13.777920pt;}
.lsa_c00004{letter-spacing:14.837760pt;}
.ls5_c00004{letter-spacing:36.623360pt;}
.ls6_c00004{letter-spacing:37.271040pt;}
.ls7_c00004{letter-spacing:43.630080pt;}
.ls8_c00004{letter-spacing:44.277760pt;}
.ws0_c00004{word-spacing:-17.072640pt;}
.ws3_c00004{word-spacing:-16.312320pt;}
.ws2_c00004{word-spacing:-15.621120pt;}
.ws8_c00004{word-spacing:-15.552000pt;}
.wsa_c00004{word-spacing:-15.413760pt;}
.ws1_c00004{word-spacing:-15.344640pt;}
.wsb_c00004{word-spacing:-13.542400pt;}
.ws6_c00004{word-spacing:-13.306880pt;}
.ws4_c00004{word-spacing:-13.248000pt;}
.ws9_c00004{word-spacing:-13.130240pt;}
.ws5_c00004{word-spacing:-13.071360pt;}
.ws7_c00004{word-spacing:-12.482560pt;}
.ws18_c00004{word-spacing:-0.414720pt;}
.ws17_c00004{word-spacing:-0.276480pt;}
.wsd_c00004{word-spacing:-0.149760pt;}
.ws10_c00004{word-spacing:-0.117760pt;}
.wse_c00004{word-spacing:-0.069120pt;}
.wsc_c00004{word-spacing:0.000000pt;}
.ws13_c00004{word-spacing:0.058880pt;}
.wsf_c00004{word-spacing:0.176640pt;}
.ws15_c00004{word-spacing:0.207360pt;}
.ws11_c00004{word-spacing:0.235520pt;}
.ws19_c00004{word-spacing:0.412160pt;}
.ws12_c00004{word-spacing:0.471040pt;}
.ws16_c00004{word-spacing:0.706560pt;}
.ws14_c00004{word-spacing:0.824320pt;}
._9_c00004{margin-left:-3.166464pt;}
._0_c00004{margin-left:-1.520064pt;}
._1_c00004{width:1.223424pt;}
._2_c00004{width:2.614144pt;}
._d_c00004{width:4.618560pt;}
._c_c00004{width:5.689600pt;}
._12_c00004{width:6.650560pt;}
._11_c00004{width:7.619072pt;}
._f_c00004{width:8.784896pt;}
._e_c00004{width:9.869568pt;}
._a_c00004{width:11.145984pt;}
._b_c00004{width:12.155712pt;}
._7_c00004{width:14.767104pt;}
._8_c00004{width:15.682304pt;}
._10_c00004{width:16.710592pt;}
._4_c00004{width:36.536320pt;}
._3_c00004{width:37.549056pt;}
._5_c00004{width:44.059904pt;}
._6_c00004{width:44.961728pt;}
.fs2_c00004{font-size:58.880000pt;}
.fs1_c00004{font-size:69.120000pt;}
.fs0_c00004{font-size:74.880000pt;}
.y0_c00004{bottom:0.000000pt;}
.y21_c00004{bottom:173.459840pt;}
.y20_c00004{bottom:207.374720pt;}
.y1f_c00004{bottom:228.012160pt;}
.y1e_c00004{bottom:248.649600pt;}
.y1d_c00004{bottom:269.125120pt;}
.y1c_c00004{bottom:303.040000pt;}
.y1b_c00004{bottom:324.800000pt;}
.y1a_c00004{bottom:361.299840pt;}
.y19_c00004{bottom:381.937280pt;}
.y18_c00004{bottom:402.574720pt;}
.y17_c00004{bottom:423.050240pt;}
.y16_c00004{bottom:443.687680pt;}
.y15_c00004{bottom:464.325120pt;}
.y14_c00004{bottom:498.240000pt;}
.y13_c00004{bottom:520.000000pt;}
.y12_c00004{bottom:556.494720pt;}
.y11_c00004{bottom:577.132160pt;}
.y10_c00004{bottom:597.607680pt;}
.yf_c00004{bottom:618.245120pt;}
.ye_c00004{bottom:652.160000pt;}
.yd_c00004{bottom:673.927040pt;}
.yc_c00004{bottom:698.240000pt;}
.yb_c00004{bottom:734.744320pt;}
.ya_c00004{bottom:755.381760pt;}
.y9_c00004{bottom:775.857280pt;}
.y8_c00004{bottom:796.494720pt;}
.y7_c00004{bottom:817.132160pt;}
.y6_c00004{bottom:837.769600pt;}
.y5_c00004{bottom:858.245120pt;}
.y4_c00004{bottom:892.160000pt;}
.y3_c00004{bottom:914.080000pt;}
.y2_c00004{bottom:951.993600pt;}
.y1_c00004{bottom:1010.400000pt;}
.h4_c00004{height:48.558750pt;}
.h5_c00004{height:50.945000pt;}
.h3_c00004{height:57.003750pt;}
.h2_c00004{height:61.754062pt;}
.h1_c00004{height:1122.666667pt;}
.h0_c00004{height:1122.720000pt;}
.w0_c00004{width:793.760000pt;}
.w1_c00004{width:794.000000pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:94.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c4528e3fa3cec8a1c7406fe0.woff')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_5123ca8c8adf4385553cdcc9.woff')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_2bcbb226bfaac5d262008c20.woff')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00005;src:url('chunks/assets/font_5a0fb25cc345d94dffda13b1.woff')format("woff");}.ff4_c00005{font-family:ff4_c00005;line-height:0.871094;font-style:normal;font-weight:normal;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_ecede6e9f5b59af81b89cab7.woff')format("woff");}.ff5_c00005{font-family:ff5_c00005;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00005;src:url('chunks/assets/font_34f89fd8e7239ad3f1d1c2a2.woff')format("woff");}.ff6_c00005{font-family:ff6_c00005;line-height:1.043457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00005{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls25_c00005{letter-spacing:-1.258560px;}
.ls21_c00005{letter-spacing:-0.927360px;}
.ls1c_c00005{letter-spacing:-0.794880px;}
.ls26_c00005{letter-spacing:-0.596160px;}
.ls1e_c00005{letter-spacing:-0.397440px;}
.ls1f_c00005{letter-spacing:-0.311040px;}
.ls1d_c00005{letter-spacing:-0.264960px;}
.ls23_c00005{letter-spacing:-0.233280px;}
.ls1a_c00005{letter-spacing:-0.198720px;}
.ls20_c00005{letter-spacing:-0.132480px;}
.ls19_c00005{letter-spacing:-0.077760px;}
.ls1b_c00005{letter-spacing:-0.066240px;}
.ls18_c00005{letter-spacing:0.000000px;}
.ls24_c00005{letter-spacing:0.077760px;}
.ls8_c00005{letter-spacing:0.119232px;}
.ls1_c00005{letter-spacing:0.132480px;}
.ls22_c00005{letter-spacing:0.168480px;}
.ls17_c00005{letter-spacing:0.198720px;}
.lsf_c00005{letter-spacing:0.264960px;}
.ls13_c00005{letter-spacing:0.311040px;}
.ls2_c00005{letter-spacing:0.331200px;}
.ls9_c00005{letter-spacing:0.397440px;}
.ls15_c00005{letter-spacing:1.589760px;}
.ls10_c00005{letter-spacing:3.047040px;}
.ls11_c00005{letter-spacing:3.080160px;}
.ls12_c00005{letter-spacing:3.113280px;}
.lsa_c00005{letter-spacing:7.352640px;}
.lsb_c00005{letter-spacing:8.081280px;}
.ls7_c00005{letter-spacing:11.658240px;}
.ls16_c00005{letter-spacing:14.572800px;}
.lse_c00005{letter-spacing:15.301440px;}
.ls0_c00005{letter-spacing:15.963840px;}
.ls14_c00005{letter-spacing:17.421120px;}
.ls3_c00005{letter-spacing:18.878400px;}
.ls4_c00005{letter-spacing:27.489600px;}
.ls6_c00005{letter-spacing:28.218240px;}
.ls5_c00005{letter-spacing:28.946880px;}
.lsc_c00005{letter-spacing:33.981120px;}
.lsd_c00005{letter-spacing:34.709760px;}
.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;}
}
.wsb_c00005{word-spacing:-19.206720px;}
.ws10_c00005{word-spacing:-17.884800px;}
.wsc_c00005{word-spacing:-17.651520px;}
.ws7_c00005{word-spacing:-17.573760px;}
.wsf_c00005{word-spacing:-17.496000px;}
.wse_c00005{word-spacing:-17.340480px;}
.wsd_c00005{word-spacing:-17.262720px;}
.ws6_c00005{word-spacing:-15.301440px;}
.wsa_c00005{word-spacing:-15.235200px;}
.ws12_c00005{word-spacing:-15.102720px;}
.ws2_c00005{word-spacing:-14.970240px;}
.ws1_c00005{word-spacing:-14.904000px;}
.ws8_c00005{word-spacing:-14.837760px;}
.ws0_c00005{word-spacing:-14.771520px;}
.ws4_c00005{word-spacing:-14.705280px;}
.ws5_c00005{word-spacing:-14.572800px;}
.ws11_c00005{word-spacing:-14.374080px;}
.ws3_c00005{word-spacing:-14.175360px;}
.ws9_c00005{word-spacing:-14.042880px;}
.ws1e_c00005{word-spacing:-0.311040px;}
.ws1b_c00005{word-spacing:-0.264960px;}
.ws1a_c00005{word-spacing:-0.233280px;}
.ws1d_c00005{word-spacing:-0.168480px;}
.ws18_c00005{word-spacing:-0.132480px;}
.ws13_c00005{word-spacing:0.000000px;}
.ws16_c00005{word-spacing:0.066240px;}
.ws14_c00005{word-spacing:0.077760px;}
.ws15_c00005{word-spacing:0.198720px;}
.ws1f_c00005{word-spacing:0.233280px;}
.ws17_c00005{word-spacing:0.264960px;}
.ws19_c00005{word-spacing:0.311040px;}
.ws20_c00005{word-spacing:0.397440px;}
.ws1c_c00005{word-spacing:0.794880px;}
.ws21_c00005{word-spacing:1.258560px;}
._10_c00005{margin-left:-3.643200px;}
._f_c00005{margin-left:-2.222784px;}
._3_c00005{margin-left:-1.220832px;}
._0_c00005{width:1.578528px;}
._e_c00005{width:2.623104px;}
._a_c00005{width:6.756480px;}
._9_c00005{width:7.756704px;}
._8_c00005{width:11.092608px;}
._7_c00005{width:12.267648px;}
._1_c00005{width:16.306848px;}
._11_c00005{width:17.507520px;}
._2_c00005{width:18.618048px;}
._4_c00005{width:19.634976px;}
._5_c00005{width:27.028512px;}
._6_c00005{width:28.485216px;}
._b_c00005{width:32.027040px;}
._c_c00005{width:33.745248px;}
._d_c00005{width:34.998048px;}
.fc2_c00005{color:rgb(54,95,145);}
.fc1_c00005{color:rgb(0,0,0);}
.fc0_c00005{color:rgb(79,129,189);}
.fs1_c00005{font-size:66.240000px;}
.fs0_c00005{font-size:77.760000px;}
.fs2_c00005{font-size:84.240000px;}
.y0_c00005{bottom:0.000000px;}
.y24_c00005{bottom:166.167360px;}
.y23_c00005{bottom:189.384480px;}
.y22_c00005{bottom:212.601600px;}
.y21_c00005{bottom:235.636560px;}
.y20_c00005{bottom:258.853680px;}
.y1f_c00005{bottom:282.070800px;}
.y1e_c00005{bottom:305.105760px;}
.y1d_c00005{bottom:343.260000px;}
.y1c_c00005{bottom:367.740000px;}
.y1b_c00005{bottom:408.791520px;}
.y1a_c00005{bottom:432.008640px;}
.y19_c00005{bottom:455.225760px;}
.y18_c00005{bottom:493.380000px;}
.y17_c00005{bottom:517.860000px;}
.y16_c00005{bottom:560.880000px;}
.y15_c00005{bottom:624.455280px;}
.y14_c00005{bottom:647.490240px;}
.y13_c00005{bottom:670.707360px;}
.y12_c00005{bottom:693.924480px;}
.y11_c00005{bottom:716.959440px;}
.y10_c00005{bottom:740.176560px;}
.yf_c00005{bottom:763.393680px;}
.ye_c00005{bottom:801.547920px;}
.yd_c00005{bottom:824.765040px;}
.yc_c00005{bottom:847.800000px;}
.yb_c00005{bottom:872.280000px;}
.ya_c00005{bottom:913.350240px;}
.y9_c00005{bottom:936.567360px;}
.y8_c00005{bottom:959.784480px;}
.y7_c00005{bottom:982.819440px;}
.y6_c00005{bottom:1006.036560px;}
.y5_c00005{bottom:1029.253680px;}
.y4_c00005{bottom:1052.288640px;}
.y3_c00005{bottom:1090.442880px;}
.y2_c00005{bottom:1113.660000px;}
.y1_c00005{bottom:1138.140000px;}
.h3_c00005{height:54.628594px;}
.h4_c00005{height:57.313125px;}
.h2_c00005{height:64.129219px;}
.h5_c00005{height:69.473320px;}
.h1_c00005{height:1263.000000px;}
.h0_c00005{height:1263.060000px;}
.w0_c00005{width:892.980000px;}
.w1_c00005{width:893.250000px;}
.x0_c00005{left:0.000000px;}
.x1_c00005{left:106.380000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls25_c00005{letter-spacing:-1.118720pt;}
.ls21_c00005{letter-spacing:-0.824320pt;}
.ls1c_c00005{letter-spacing:-0.706560pt;}
.ls26_c00005{letter-spacing:-0.529920pt;}
.ls1e_c00005{letter-spacing:-0.353280pt;}
.ls1f_c00005{letter-spacing:-0.276480pt;}
.ls1d_c00005{letter-spacing:-0.235520pt;}
.ls23_c00005{letter-spacing:-0.207360pt;}
.ls1a_c00005{letter-spacing:-0.176640pt;}
.ls20_c00005{letter-spacing:-0.117760pt;}
.ls19_c00005{letter-spacing:-0.069120pt;}
.ls1b_c00005{letter-spacing:-0.058880pt;}
.ls18_c00005{letter-spacing:0.000000pt;}
.ls24_c00005{letter-spacing:0.069120pt;}
.ls8_c00005{letter-spacing:0.105984pt;}
.ls1_c00005{letter-spacing:0.117760pt;}
.ls22_c00005{letter-spacing:0.149760pt;}
.ls17_c00005{letter-spacing:0.176640pt;}
.lsf_c00005{letter-spacing:0.235520pt;}
.ls13_c00005{letter-spacing:0.276480pt;}
.ls2_c00005{letter-spacing:0.294400pt;}
.ls9_c00005{letter-spacing:0.353280pt;}
.ls15_c00005{letter-spacing:1.413120pt;}
.ls10_c00005{letter-spacing:2.708480pt;}
.ls11_c00005{letter-spacing:2.737920pt;}
.ls12_c00005{letter-spacing:2.767360pt;}
.lsa_c00005{letter-spacing:6.535680pt;}
.lsb_c00005{letter-spacing:7.183360pt;}
.ls7_c00005{letter-spacing:10.362880pt;}
.ls16_c00005{letter-spacing:12.953600pt;}
.lse_c00005{letter-spacing:13.601280pt;}
.ls0_c00005{letter-spacing:14.190080pt;}
.ls14_c00005{letter-spacing:15.485440pt;}
.ls3_c00005{letter-spacing:16.780800pt;}
.ls4_c00005{letter-spacing:24.435200pt;}
.ls6_c00005{letter-spacing:25.082880pt;}
.ls5_c00005{letter-spacing:25.730560pt;}
.lsc_c00005{letter-spacing:30.205440pt;}
.lsd_c00005{letter-spacing:30.853120pt;}
.wsb_c00005{word-spacing:-17.072640pt;}
.ws10_c00005{word-spacing:-15.897600pt;}
.wsc_c00005{word-spacing:-15.690240pt;}
.ws7_c00005{word-spacing:-15.621120pt;}
.wsf_c00005{word-spacing:-15.552000pt;}
.wse_c00005{word-spacing:-15.413760pt;}
.wsd_c00005{word-spacing:-15.344640pt;}
.ws6_c00005{word-spacing:-13.601280pt;}
.wsa_c00005{word-spacing:-13.542400pt;}
.ws12_c00005{word-spacing:-13.424640pt;}
.ws2_c00005{word-spacing:-13.306880pt;}
.ws1_c00005{word-spacing:-13.248000pt;}
.ws8_c00005{word-spacing:-13.189120pt;}
.ws0_c00005{word-spacing:-13.130240pt;}
.ws4_c00005{word-spacing:-13.071360pt;}
.ws5_c00005{word-spacing:-12.953600pt;}
.ws11_c00005{word-spacing:-12.776960pt;}
.ws3_c00005{word-spacing:-12.600320pt;}
.ws9_c00005{word-spacing:-12.482560pt;}
.ws1e_c00005{word-spacing:-0.276480pt;}
.ws1b_c00005{word-spacing:-0.235520pt;}
.ws1a_c00005{word-spacing:-0.207360pt;}
.ws1d_c00005{word-spacing:-0.149760pt;}
.ws18_c00005{word-spacing:-0.117760pt;}
.ws13_c00005{word-spacing:0.000000pt;}
.ws16_c00005{word-spacing:0.058880pt;}
.ws14_c00005{word-spacing:0.069120pt;}
.ws15_c00005{word-spacing:0.176640pt;}
.ws1f_c00005{word-spacing:0.207360pt;}
.ws17_c00005{word-spacing:0.235520pt;}
.ws19_c00005{word-spacing:0.276480pt;}
.ws20_c00005{word-spacing:0.353280pt;}
.ws1c_c00005{word-spacing:0.706560pt;}
.ws21_c00005{word-spacing:1.118720pt;}
._10_c00005{margin-left:-3.238400pt;}
._f_c00005{margin-left:-1.975808pt;}
._3_c00005{margin-left:-1.085184pt;}
._0_c00005{width:1.403136pt;}
._e_c00005{width:2.331648pt;}
._a_c00005{width:6.005760pt;}
._9_c00005{width:6.894848pt;}
._8_c00005{width:9.860096pt;}
._7_c00005{width:10.904576pt;}
._1_c00005{width:14.494976pt;}
._11_c00005{width:15.562240pt;}
._2_c00005{width:16.549376pt;}
._4_c00005{width:17.453312pt;}
._5_c00005{width:24.025344pt;}
._6_c00005{width:25.320192pt;}
._b_c00005{width:28.468480pt;}
._c_c00005{width:29.995776pt;}
._d_c00005{width:31.109376pt;}
.fs1_c00005{font-size:58.880000pt;}
.fs0_c00005{font-size:69.120000pt;}
.fs2_c00005{font-size:74.880000pt;}
.y0_c00005{bottom:0.000000pt;}
.y24_c00005{bottom:147.704320pt;}
.y23_c00005{bottom:168.341760pt;}
.y22_c00005{bottom:188.979200pt;}
.y21_c00005{bottom:209.454720pt;}
.y20_c00005{bottom:230.092160pt;}
.y1f_c00005{bottom:250.729600pt;}
.y1e_c00005{bottom:271.205120pt;}
.y1d_c00005{bottom:305.120000pt;}
.y1c_c00005{bottom:326.880000pt;}
.y1b_c00005{bottom:363.370240pt;}
.y1a_c00005{bottom:384.007680pt;}
.y19_c00005{bottom:404.645120pt;}
.y18_c00005{bottom:438.560000pt;}
.y17_c00005{bottom:460.320000pt;}
.y16_c00005{bottom:498.560000pt;}
.y15_c00005{bottom:555.071360pt;}
.y14_c00005{bottom:575.546880pt;}
.y13_c00005{bottom:596.184320pt;}
.y12_c00005{bottom:616.821760pt;}
.y11_c00005{bottom:637.297280pt;}
.y10_c00005{bottom:657.934720pt;}
.yf_c00005{bottom:678.572160pt;}
.ye_c00005{bottom:712.487040pt;}
.yd_c00005{bottom:733.124480pt;}
.yc_c00005{bottom:753.600000pt;}
.yb_c00005{bottom:775.360000pt;}
.ya_c00005{bottom:811.866880pt;}
.y9_c00005{bottom:832.504320pt;}
.y8_c00005{bottom:853.141760pt;}
.y7_c00005{bottom:873.617280pt;}
.y6_c00005{bottom:894.254720pt;}
.y5_c00005{bottom:914.892160pt;}
.y4_c00005{bottom:935.367680pt;}
.y3_c00005{bottom:969.282560pt;}
.y2_c00005{bottom:989.920000pt;}
.y1_c00005{bottom:1011.680000pt;}
.h3_c00005{height:48.558750pt;}
.h4_c00005{height:50.945000pt;}
.h2_c00005{height:57.003750pt;}
.h5_c00005{height:61.754062pt;}
.h1_c00005{height:1122.666667pt;}
.h0_c00005{height:1122.720000pt;}
.w0_c00005{width:793.760000pt;}
.w1_c00005{width:794.000000pt;}
.x0_c00005{left:0.000000pt;}
.x1_c00005{left:94.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0410fec98db738225c3bc703.woff')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_ba7e51e18fd025e1d4b65a2d.woff')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_00fa236647df303e71d87548.woff')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00006;src:url('chunks/assets/font_1a5bb3083e13c4dea6efbfc9.woff')format("woff");}.ff4_c00006{font-family:ff4_c00006;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00006;src:url('chunks/assets/font_534ff85ddb080a470e4838e8.woff')format("woff");}.ff5_c00006{font-family:ff5_c00006;line-height:1.043457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00006;src:url('chunks/assets/font_b7150065172973e087450720.woff')format("woff");}.ff6_c00006{font-family:ff6_c00006;line-height:0.871094;font-style: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;}
.ls19_c00006{letter-spacing:-0.927360px;}
.ls1d_c00006{letter-spacing:-0.397440px;}
.ls1c_c00006{letter-spacing:-0.331200px;}
.ls11_c00006{letter-spacing:-0.311040px;}
.ls15_c00006{letter-spacing:-0.264960px;}
.ls17_c00006{letter-spacing:-0.233280px;}
.ls14_c00006{letter-spacing:-0.198720px;}
.ls13_c00006{letter-spacing:-0.077760px;}
.ls16_c00006{letter-spacing:-0.066240px;}
.ls12_c00006{letter-spacing:0.000000px;}
.ls0_c00006{letter-spacing:0.132480px;}
.ls4_c00006{letter-spacing:0.198720px;}
.ls1a_c00006{letter-spacing:0.311040px;}
.ls18_c00006{letter-spacing:0.331200px;}
.ls1_c00006{letter-spacing:0.397440px;}
.ls1b_c00006{letter-spacing:0.466560px;}
.ls6_c00006{letter-spacing:0.861120px;}
.lsc_c00006{letter-spacing:3.047040px;}
.lsd_c00006{letter-spacing:3.133152px;}
.ls10_c00006{letter-spacing:5.166720px;}
.lsf_c00006{letter-spacing:5.895360px;}
.ls9_c00006{letter-spacing:8.809920px;}
.lsa_c00006{letter-spacing:9.538560px;}
.ls7_c00006{letter-spacing:10.200960px;}
.ls8_c00006{letter-spacing:10.929600px;}
.lsb_c00006{letter-spacing:13.148640px;}
.ls2_c00006{letter-spacing:15.301440px;}
.ls3_c00006{letter-spacing:15.963840px;}
.lse_c00006{letter-spacing:21.726720px;}
.ls5_c00006{letter-spacing:31.861440px;}
.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;}
}
.ws3_c00006{word-spacing:-17.496000px;}
.ws2_c00006{word-spacing:-17.340480px;}
.ws0_c00006{word-spacing:-17.262720px;}
.wsa_c00006{word-spacing:-15.301440px;}
.ws8_c00006{word-spacing:-15.102720px;}
.ws6_c00006{word-spacing:-14.970240px;}
.ws7_c00006{word-spacing:-14.904000px;}
.ws4_c00006{word-spacing:-14.771520px;}
.ws1_c00006{word-spacing:-14.705280px;}
.ws9_c00006{word-spacing:-14.639040px;}
.wsb_c00006{word-spacing:-14.572800px;}
.ws5_c00006{word-spacing:-14.042880px;}
.ws15_c00006{word-spacing:-0.466560px;}
.ws14_c00006{word-spacing:-0.331200px;}
.ws12_c00006{word-spacing:-0.311040px;}
.ws11_c00006{word-spacing:-0.132480px;}
.wsc_c00006{word-spacing:0.000000px;}
.ws10_c00006{word-spacing:0.066240px;}
.wsd_c00006{word-spacing:0.077760px;}
.wse_c00006{word-spacing:0.198720px;}
.ws13_c00006{word-spacing:0.233280px;}
.wsf_c00006{word-spacing:0.264960px;}
._7_c00006{margin-left:-2.967552px;}
._6_c00006{margin-left:-1.616256px;}
._0_c00006{width:1.259712px;}
._5_c00006{width:2.506752px;}
._10_c00006{width:3.546144px;}
._11_c00006{width:4.916736px;}
._8_c00006{width:6.145056px;}
._4_c00006{width:7.192512px;}
._3_c00006{width:8.272224px;}
._c_c00006{width:10.049760px;}
._d_c00006{width:11.154816px;}
._f_c00006{width:12.850560px;}
._9_c00006{width:16.250688px;}
._1_c00006{width:20.532096px;}
._2_c00006{width:21.826080px;}
._e_c00006{width:25.103808px;}
._b_c00006{width:30.589632px;}
._a_c00006{width:31.868064px;}
.fc1_c00006{color:rgb(0,0,0);}
.fc0_c00006{color:rgb(79,129,189);}
.fs1_c00006{font-size:66.240000px;}
.fs0_c00006{font-size:77.760000px;}
.y0_c00006{bottom:0.000000px;}
.y24_c00006{bottom:200.187360px;}
.y23_c00006{bottom:223.222320px;}
.y22_c00006{bottom:246.439440px;}
.y21_c00006{bottom:269.656560px;}
.y20_c00006{bottom:292.691520px;}
.y1f_c00006{bottom:315.908640px;}
.y1e_c00006{bottom:339.125760px;}
.y1d_c00006{bottom:377.280000px;}
.y1c_c00006{bottom:401.760000px;}
.y1b_c00006{bottom:442.827360px;}
.y1a_c00006{bottom:465.862320px;}
.y19_c00006{bottom:489.079440px;}
.y18_c00006{bottom:512.296560px;}
.y17_c00006{bottom:535.513680px;}
.y16_c00006{bottom:558.548640px;}
.y15_c00006{bottom:581.765760px;}
.y14_c00006{bottom:619.920000px;}
.y13_c00006{bottom:644.407920px;}
.y12_c00006{bottom:671.760000px;}
.y11_c00006{bottom:712.819290px;}
.y10_c00006{bottom:736.036410px;}
.yf_c00006{bottom:759.071370px;}
.ye_c00006{bottom:782.288490px;}
.yd_c00006{bottom:805.505610px;}
.yc_c00006{bottom:843.659850px;}
.yb_c00006{bottom:868.147920px;}
.ya_c00006{bottom:895.500000px;}
.y9_c00006{bottom:936.567360px;}
.y8_c00006{bottom:959.784480px;}
.y7_c00006{bottom:982.819440px;}
.y6_c00006{bottom:1006.036560px;}
.y5_c00006{bottom:1029.253680px;}
.y4_c00006{bottom:1052.288640px;}
.y3_c00006{bottom:1075.505760px;}
.y2_c00006{bottom:1113.660000px;}
.y1_c00006{bottom:1138.140000px;}
.h3_c00006{height:54.628594px;}
.h4_c00006{height:57.313125px;}
.h2_c00006{height:64.129219px;}
.h1_c00006{height:1263.000000px;}
.h0_c00006{height:1263.060000px;}
.w0_c00006{width:892.980000px;}
.w1_c00006{width:893.250000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:106.380000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls19_c00006{letter-spacing:-0.824320pt;}
.ls1d_c00006{letter-spacing:-0.353280pt;}
.ls1c_c00006{letter-spacing:-0.294400pt;}
.ls11_c00006{letter-spacing:-0.276480pt;}
.ls15_c00006{letter-spacing:-0.235520pt;}
.ls17_c00006{letter-spacing:-0.207360pt;}
.ls14_c00006{letter-spacing:-0.176640pt;}
.ls13_c00006{letter-spacing:-0.069120pt;}
.ls16_c00006{letter-spacing:-0.058880pt;}
.ls12_c00006{letter-spacing:0.000000pt;}
.ls0_c00006{letter-spacing:0.117760pt;}
.ls4_c00006{letter-spacing:0.176640pt;}
.ls1a_c00006{letter-spacing:0.276480pt;}
.ls18_c00006{letter-spacing:0.294400pt;}
.ls1_c00006{letter-spacing:0.353280pt;}
.ls1b_c00006{letter-spacing:0.414720pt;}
.ls6_c00006{letter-spacing:0.765440pt;}
.lsc_c00006{letter-spacing:2.708480pt;}
.lsd_c00006{letter-spacing:2.785024pt;}
.ls10_c00006{letter-spacing:4.592640pt;}
.lsf_c00006{letter-spacing:5.240320pt;}
.ls9_c00006{letter-spacing:7.831040pt;}
.lsa_c00006{letter-spacing:8.478720pt;}
.ls7_c00006{letter-spacing:9.067520pt;}
.ls8_c00006{letter-spacing:9.715200pt;}
.lsb_c00006{letter-spacing:11.687680pt;}
.ls2_c00006{letter-spacing:13.601280pt;}
.ls3_c00006{letter-spacing:14.190080pt;}
.lse_c00006{letter-spacing:19.312640pt;}
.ls5_c00006{letter-spacing:28.321280pt;}
.ws3_c00006{word-spacing:-15.552000pt;}
.ws2_c00006{word-spacing:-15.413760pt;}
.ws0_c00006{word-spacing:-15.344640pt;}
.wsa_c00006{word-spacing:-13.601280pt;}
.ws8_c00006{word-spacing:-13.424640pt;}
.ws6_c00006{word-spacing:-13.306880pt;}
.ws7_c00006{word-spacing:-13.248000pt;}
.ws4_c00006{word-spacing:-13.130240pt;}
.ws1_c00006{word-spacing:-13.071360pt;}
.ws9_c00006{word-spacing:-13.012480pt;}
.wsb_c00006{word-spacing:-12.953600pt;}
.ws5_c00006{word-spacing:-12.482560pt;}
.ws15_c00006{word-spacing:-0.414720pt;}
.ws14_c00006{word-spacing:-0.294400pt;}
.ws12_c00006{word-spacing:-0.276480pt;}
.ws11_c00006{word-spacing:-0.117760pt;}
.wsc_c00006{word-spacing:0.000000pt;}
.ws10_c00006{word-spacing:0.058880pt;}
.wsd_c00006{word-spacing:0.069120pt;}
.wse_c00006{word-spacing:0.176640pt;}
.ws13_c00006{word-spacing:0.207360pt;}
.wsf_c00006{word-spacing:0.235520pt;}
._7_c00006{margin-left:-2.637824pt;}
._6_c00006{margin-left:-1.436672pt;}
._0_c00006{width:1.119744pt;}
._5_c00006{width:2.228224pt;}
._10_c00006{width:3.152128pt;}
._11_c00006{width:4.370432pt;}
._8_c00006{width:5.462272pt;}
._4_c00006{width:6.393344pt;}
._3_c00006{width:7.353088pt;}
._c_c00006{width:8.933120pt;}
._d_c00006{width:9.915392pt;}
._f_c00006{width:11.422720pt;}
._9_c00006{width:14.445056pt;}
._1_c00006{width:18.250752pt;}
._2_c00006{width:19.400960pt;}
._e_c00006{width:22.314496pt;}
._b_c00006{width:27.190784pt;}
._a_c00006{width:28.327168pt;}
.fs1_c00006{font-size:58.880000pt;}
.fs0_c00006{font-size:69.120000pt;}
.y0_c00006{bottom:0.000000pt;}
.y24_c00006{bottom:177.944320pt;}
.y23_c00006{bottom:198.419840pt;}
.y22_c00006{bottom:219.057280pt;}
.y21_c00006{bottom:239.694720pt;}
.y20_c00006{bottom:260.170240pt;}
.y1f_c00006{bottom:280.807680pt;}
.y1e_c00006{bottom:301.445120pt;}
.y1d_c00006{bottom:335.360000pt;}
.y1c_c00006{bottom:357.120000pt;}
.y1b_c00006{bottom:393.624320pt;}
.y1a_c00006{bottom:414.099840pt;}
.y19_c00006{bottom:434.737280pt;}
.y18_c00006{bottom:455.374720pt;}
.y17_c00006{bottom:476.012160pt;}
.y16_c00006{bottom:496.487680pt;}
.y15_c00006{bottom:517.125120pt;}
.y14_c00006{bottom:551.040000pt;}
.y13_c00006{bottom:572.807040pt;}
.y12_c00006{bottom:597.120000pt;}
.y11_c00006{bottom:633.617147pt;}
.y10_c00006{bottom:654.254587pt;}
.yf_c00006{bottom:674.730107pt;}
.ye_c00006{bottom:695.367547pt;}
.yd_c00006{bottom:716.004987pt;}
.yc_c00006{bottom:749.919867pt;}
.yb_c00006{bottom:771.687040pt;}
.ya_c00006{bottom:796.000000pt;}
.y9_c00006{bottom:832.504320pt;}
.y8_c00006{bottom:853.141760pt;}
.y7_c00006{bottom:873.617280pt;}
.y6_c00006{bottom:894.254720pt;}
.y5_c00006{bottom:914.892160pt;}
.y4_c00006{bottom:935.367680pt;}
.y3_c00006{bottom:956.005120pt;}
.y2_c00006{bottom:989.920000pt;}
.y1_c00006{bottom:1011.680000pt;}
.h3_c00006{height:48.558750pt;}
.h4_c00006{height:50.945000pt;}
.h2_c00006{height:57.003750pt;}
.h1_c00006{height:1122.666667pt;}
.h0_c00006{height:1122.720000pt;}
.w0_c00006{width:793.760000pt;}
.w1_c00006{width:794.000000pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:94.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b6df18b5d0065cccaa9ed4c8.woff')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_12ee94a4ad0ab01b2bc30b8b.woff')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_585bdfc5e2194aa81319ce54.woff')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00007;src:url('chunks/assets/font_2ead0e96527bd21ca3ec860b.woff')format("woff");}.ff4_c00007{font-family:ff4_c00007;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00007;src:url('chunks/assets/font_cd932b53a5214e20564b9fc0.woff')format("woff");}.ff5_c00007{font-family:ff5_c00007;line-height:1.043457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00007;src:url('chunks/assets/font_f8c700b7c3106ee1cadb187f.woff')format("woff");}.ff6_c00007{font-family:ff6_c00007;line-height:0.871094;font-style: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);}
.m1_c00007{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls18_c00007{letter-spacing:-1.059840px;}
.ls1b_c00007{letter-spacing:-0.927360px;}
.ls19_c00007{letter-spacing:-0.794880px;}
.ls1f_c00007{letter-spacing:-0.397440px;}
.ls12_c00007{letter-spacing:-0.311040px;}
.ls16_c00007{letter-spacing:-0.264960px;}
.ls1a_c00007{letter-spacing:-0.233280px;}
.ls15_c00007{letter-spacing:-0.198720px;}
.ls1e_c00007{letter-spacing:-0.132480px;}
.ls17_c00007{letter-spacing:-0.066240px;}
.ls13_c00007{letter-spacing:0.000000px;}
.ls14_c00007{letter-spacing:0.077760px;}
.ls1_c00007{letter-spacing:0.132480px;}
.ls1c_c00007{letter-spacing:0.168480px;}
.ls1d_c00007{letter-spacing:0.264960px;}
.lsf_c00007{letter-spacing:0.331200px;}
.ls5_c00007{letter-spacing:0.397440px;}
.ls7_c00007{letter-spacing:1.589760px;}
.ls8_c00007{letter-spacing:1.603008px;}
.ls9_c00007{letter-spacing:3.047040px;}
.ls3_c00007{letter-spacing:5.166720px;}
.ls2_c00007{letter-spacing:5.895360px;}
.ls11_c00007{letter-spacing:8.809920px;}
.ls0_c00007{letter-spacing:9.538560px;}
.lsb_c00007{letter-spacing:10.929600px;}
.lsa_c00007{letter-spacing:11.015712px;}
.lsc_c00007{letter-spacing:12.386880px;}
.lse_c00007{letter-spacing:15.963840px;}
.lsd_c00007{letter-spacing:16.692480px;}
.ls10_c00007{letter-spacing:17.421120px;}
.ls6_c00007{letter-spacing:30.404160px;}
.ls4_c00007{letter-spacing:31.132800px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00007{word-spacing:-17.651520px;}
.ws5_c00007{word-spacing:-17.573760px;}
.ws7_c00007{word-spacing:-15.301440px;}
.ws1_c00007{word-spacing:-14.970240px;}
.ws3_c00007{word-spacing:-14.904000px;}
.ws6_c00007{word-spacing:-14.771520px;}
.ws2_c00007{word-spacing:-14.705280px;}
.ws9_c00007{word-spacing:-14.572800px;}
.ws4_c00007{word-spacing:-14.175360px;}
.ws8_c00007{word-spacing:-14.042880px;}
.wsd_c00007{word-spacing:-0.331200px;}
.ws14_c00007{word-spacing:-0.264960px;}
.ws13_c00007{word-spacing:-0.168480px;}
.wse_c00007{word-spacing:-0.132480px;}
.wsb_c00007{word-spacing:0.000000px;}
.wsf_c00007{word-spacing:0.066240px;}
.ws15_c00007{word-spacing:0.132480px;}
.wsc_c00007{word-spacing:0.198720px;}
.ws12_c00007{word-spacing:0.233280px;}
.ws11_c00007{word-spacing:0.264960px;}
.wsa_c00007{word-spacing:0.311040px;}
.ws16_c00007{word-spacing:0.794880px;}
.ws10_c00007{word-spacing:1.059840px;}
._c_c00007{margin-left:-3.981024px;}
._5_c00007{margin-left:-2.147328px;}
._2_c00007{margin-left:-1.132704px;}
._0_c00007{width:1.080864px;}
._9_c00007{width:2.102112px;}
._8_c00007{width:3.428928px;}
._6_c00007{width:4.739328px;}
._4_c00007{width:5.776128px;}
._1_c00007{width:9.194112px;}
._a_c00007{width:10.598400px;}
._3_c00007{width:12.371328px;}
._b_c00007{width:17.116416px;}
._7_c00007{width:31.436352px;}
.fc2_c00007{color:rgb(54,95,145);}
.fc1_c00007{color:rgb(0,0,0);}
.fc0_c00007{color:rgb(79,129,189);}
.fs1_c00007{font-size:66.240000px;}
.fs0_c00007{font-size:77.760000px;}
.fs2_c00007{font-size:84.240000px;}
.y0_c00007{bottom:0.000000px;}
.y23_c00007{bottom:185.241600px;}
.y22_c00007{bottom:208.276560px;}
.y21_c00007{bottom:231.493680px;}
.y20_c00007{bottom:254.710800px;}
.y1f_c00007{bottom:292.865040px;}
.y1e_c00007{bottom:315.900000px;}
.y1d_c00007{bottom:340.380000px;}
.y1c_c00007{bottom:381.436560px;}
.y1b_c00007{bottom:404.653680px;}
.y1a_c00007{bottom:427.870800px;}
.y19_c00007{bottom:466.025040px;}
.y18_c00007{bottom:489.060000px;}
.y17_c00007{bottom:513.720000px;}
.y16_c00007{bottom:556.560000px;}
.y15_c00007{bottom:620.138160px;}
.y14_c00007{bottom:643.355280px;}
.y13_c00007{bottom:666.572400px;}
.y12_c00007{bottom:689.607360px;}
.y11_c00007{bottom:712.824480px;}
.y10_c00007{bottom:736.041600px;}
.yf_c00007{bottom:759.076560px;}
.ye_c00007{bottom:782.293680px;}
.yd_c00007{bottom:805.510800px;}
.yc_c00007{bottom:843.665040px;}
.yb_c00007{bottom:866.700000px;}
.ya_c00007{bottom:891.360000px;}
.y9_c00007{bottom:932.424480px;}
.y8_c00007{bottom:955.459440px;}
.y7_c00007{bottom:978.676560px;}
.y6_c00007{bottom:1001.893680px;}
.y5_c00007{bottom:1024.928640px;}
.y4_c00007{bottom:1048.145760px;}
.y3_c00007{bottom:1086.300000px;}
.y2_c00007{bottom:1110.787920px;}
.y1_c00007{bottom:1138.140000px;}
.h3_c00007{height:54.628594px;}
.h4_c00007{height:57.313125px;}
.h2_c00007{height:64.129219px;}
.h5_c00007{height:69.473320px;}
.h1_c00007{height:1263.000000px;}
.h0_c00007{height:1263.060000px;}
.w0_c00007{width:892.980000px;}
.w1_c00007{width:893.250000px;}
.x0_c00007{left:0.000000px;}
.x1_c00007{left:106.380000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls18_c00007{letter-spacing:-0.942080pt;}
.ls1b_c00007{letter-spacing:-0.824320pt;}
.ls19_c00007{letter-spacing:-0.706560pt;}
.ls1f_c00007{letter-spacing:-0.353280pt;}
.ls12_c00007{letter-spacing:-0.276480pt;}
.ls16_c00007{letter-spacing:-0.235520pt;}
.ls1a_c00007{letter-spacing:-0.207360pt;}
.ls15_c00007{letter-spacing:-0.176640pt;}
.ls1e_c00007{letter-spacing:-0.117760pt;}
.ls17_c00007{letter-spacing:-0.058880pt;}
.ls13_c00007{letter-spacing:0.000000pt;}
.ls14_c00007{letter-spacing:0.069120pt;}
.ls1_c00007{letter-spacing:0.117760pt;}
.ls1c_c00007{letter-spacing:0.149760pt;}
.ls1d_c00007{letter-spacing:0.235520pt;}
.lsf_c00007{letter-spacing:0.294400pt;}
.ls5_c00007{letter-spacing:0.353280pt;}
.ls7_c00007{letter-spacing:1.413120pt;}
.ls8_c00007{letter-spacing:1.424896pt;}
.ls9_c00007{letter-spacing:2.708480pt;}
.ls3_c00007{letter-spacing:4.592640pt;}
.ls2_c00007{letter-spacing:5.240320pt;}
.ls11_c00007{letter-spacing:7.831040pt;}
.ls0_c00007{letter-spacing:8.478720pt;}
.lsb_c00007{letter-spacing:9.715200pt;}
.lsa_c00007{letter-spacing:9.791744pt;}
.lsc_c00007{letter-spacing:11.010560pt;}
.lse_c00007{letter-spacing:14.190080pt;}
.lsd_c00007{letter-spacing:14.837760pt;}
.ls10_c00007{letter-spacing:15.485440pt;}
.ls6_c00007{letter-spacing:27.025920pt;}
.ls4_c00007{letter-spacing:27.673600pt;}
.ws0_c00007{word-spacing:-15.690240pt;}
.ws5_c00007{word-spacing:-15.621120pt;}
.ws7_c00007{word-spacing:-13.601280pt;}
.ws1_c00007{word-spacing:-13.306880pt;}
.ws3_c00007{word-spacing:-13.248000pt;}
.ws6_c00007{word-spacing:-13.130240pt;}
.ws2_c00007{word-spacing:-13.071360pt;}
.ws9_c00007{word-spacing:-12.953600pt;}
.ws4_c00007{word-spacing:-12.600320pt;}
.ws8_c00007{word-spacing:-12.482560pt;}
.wsd_c00007{word-spacing:-0.294400pt;}
.ws14_c00007{word-spacing:-0.235520pt;}
.ws13_c00007{word-spacing:-0.149760pt;}
.wse_c00007{word-spacing:-0.117760pt;}
.wsb_c00007{word-spacing:0.000000pt;}
.wsf_c00007{word-spacing:0.058880pt;}
.ws15_c00007{word-spacing:0.117760pt;}
.wsc_c00007{word-spacing:0.176640pt;}
.ws12_c00007{word-spacing:0.207360pt;}
.ws11_c00007{word-spacing:0.235520pt;}
.wsa_c00007{word-spacing:0.276480pt;}
.ws16_c00007{word-spacing:0.706560pt;}
.ws10_c00007{word-spacing:0.942080pt;}
._c_c00007{margin-left:-3.538688pt;}
._5_c00007{margin-left:-1.908736pt;}
._2_c00007{margin-left:-1.006848pt;}
._0_c00007{width:0.960768pt;}
._9_c00007{width:1.868544pt;}
._8_c00007{width:3.047936pt;}
._6_c00007{width:4.212736pt;}
._4_c00007{width:5.134336pt;}
._1_c00007{width:8.172544pt;}
._a_c00007{width:9.420800pt;}
._3_c00007{width:10.996736pt;}
._b_c00007{width:15.214592pt;}
._7_c00007{width:27.943424pt;}
.fs1_c00007{font-size:58.880000pt;}
.fs0_c00007{font-size:69.120000pt;}
.fs2_c00007{font-size:74.880000pt;}
.y0_c00007{bottom:0.000000pt;}
.y23_c00007{bottom:164.659200pt;}
.y22_c00007{bottom:185.134720pt;}
.y21_c00007{bottom:205.772160pt;}
.y20_c00007{bottom:226.409600pt;}
.y1f_c00007{bottom:260.324480pt;}
.y1e_c00007{bottom:280.800000pt;}
.y1d_c00007{bottom:302.560000pt;}
.y1c_c00007{bottom:339.054720pt;}
.y1b_c00007{bottom:359.692160pt;}
.y1a_c00007{bottom:380.329600pt;}
.y19_c00007{bottom:414.244480pt;}
.y18_c00007{bottom:434.720000pt;}
.y17_c00007{bottom:456.640000pt;}
.y16_c00007{bottom:494.720000pt;}
.y15_c00007{bottom:551.233920pt;}
.y14_c00007{bottom:571.871360pt;}
.y13_c00007{bottom:592.508800pt;}
.y12_c00007{bottom:612.984320pt;}
.y11_c00007{bottom:633.621760pt;}
.y10_c00007{bottom:654.259200pt;}
.yf_c00007{bottom:674.734720pt;}
.ye_c00007{bottom:695.372160pt;}
.yd_c00007{bottom:716.009600pt;}
.yc_c00007{bottom:749.924480pt;}
.yb_c00007{bottom:770.400000pt;}
.ya_c00007{bottom:792.320000pt;}
.y9_c00007{bottom:828.821760pt;}
.y8_c00007{bottom:849.297280pt;}
.y7_c00007{bottom:869.934720pt;}
.y6_c00007{bottom:890.572160pt;}
.y5_c00007{bottom:911.047680pt;}
.y4_c00007{bottom:931.685120pt;}
.y3_c00007{bottom:965.600000pt;}
.y2_c00007{bottom:987.367040pt;}
.y1_c00007{bottom:1011.680000pt;}
.h3_c00007{height:48.558750pt;}
.h4_c00007{height:50.945000pt;}
.h2_c00007{height:57.003750pt;}
.h5_c00007{height:61.754062pt;}
.h1_c00007{height:1122.666667pt;}
.h0_c00007{height:1122.720000pt;}
.w0_c00007{width:793.760000pt;}
.w1_c00007{width:794.000000pt;}
.x0_c00007{left:0.000000pt;}
.x1_c00007{left:94.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dc2b37a7f94977a61c9bf0c7.woff')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00008;src:url('chunks/assets/font_eb9665eb4b90841285a9f7d1.woff')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_0419d905be1ba825ca0b1e50.woff')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00008;src:url('chunks/assets/font_df1820e8cf6de18fb57ca7c7.woff')format("woff");}.ff4_c00008{font-family:ff4_c00008;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00008;src:url('chunks/assets/font_1d3ad9fa9cb6041966347eb4.woff')format("woff");}.ff5_c00008{font-family:ff5_c00008;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00008;src:url('chunks/assets/font_e36459cc9157d4e2d583c0ee.woff')format("woff");}.ff6_c00008{font-family:ff6_c00008;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00008;src:url('chunks/assets/font_9c460a7e19cf370ae9485301.woff')format("woff");}.ff7_c00008{font-family:ff7_c00008;line-height:1.043457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.lsa1_c00008{letter-spacing:-0.930000px;}
.lsaf_c00008{letter-spacing:-0.794880px;}
.lsa0_c00008{letter-spacing:-0.792000px;}
.lsb0_c00008{letter-spacing:-0.728640px;}
.lsa8_c00008{letter-spacing:-0.726000px;}
.lsab_c00008{letter-spacing:-0.397440px;}
.ls9c_c00008{letter-spacing:-0.312000px;}
.lsac_c00008{letter-spacing:-0.311040px;}
.lsa9_c00008{letter-spacing:-0.264960px;}
.ls9f_c00008{letter-spacing:-0.264000px;}
.lsa4_c00008{letter-spacing:-0.234000px;}
.lsae_c00008{letter-spacing:-0.198720px;}
.ls9d_c00008{letter-spacing:-0.198000px;}
.ls9a_c00008{letter-spacing:-0.078000px;}
.lsad_c00008{letter-spacing:-0.077760px;}
.lsaa_c00008{letter-spacing:-0.066240px;}
.ls9e_c00008{letter-spacing:-0.066000px;}
.ls9b_c00008{letter-spacing:0.000000px;}
.ls12_c00008{letter-spacing:0.132000px;}
.ls96_c00008{letter-spacing:0.132480px;}
.ls99_c00008{letter-spacing:0.251712px;}
.ls39_c00008{letter-spacing:0.285360px;}
.ls0_c00008{letter-spacing:0.294000px;}
.ls98_c00008{letter-spacing:0.324576px;}
.lsa7_c00008{letter-spacing:0.330000px;}
.ls95_c00008{letter-spacing:0.331200px;}
.ls94_c00008{letter-spacing:0.397440px;}
.ls6f_c00008{letter-spacing:0.522480px;}
.ls1_c00008{letter-spacing:0.552000px;}
.ls70_c00008{letter-spacing:0.569760px;}
.ls6c_c00008{letter-spacing:0.580800px;}
.ls7c_c00008{letter-spacing:0.588960px;}
.ls7e_c00008{letter-spacing:0.610800px;}
.lsa5_c00008{letter-spacing:0.624000px;}
.lsa3_c00008{letter-spacing:0.702000px;}
.ls4c_c00008{letter-spacing:0.749280px;}
.ls49_c00008{letter-spacing:0.766800px;}
.ls50_c00008{letter-spacing:0.767760px;}
.ls67_c00008{letter-spacing:0.903360px;}
.ls11_c00008{letter-spacing:0.904800px;}
.ls2b_c00008{letter-spacing:1.023120px;}
.ls2d_c00008{letter-spacing:1.080240px;}
.ls29_c00008{letter-spacing:1.084800px;}
.ls38_c00008{letter-spacing:1.252800px;}
.ls8_c00008{letter-spacing:1.294800px;}
.lsb_c00008{letter-spacing:1.303920px;}
.ls19_c00008{letter-spacing:1.397280px;}
.ls1c_c00008{letter-spacing:1.420800px;}
.ls22_c00008{letter-spacing:1.422000px;}
.ls5b_c00008{letter-spacing:1.426800px;}
.ls42_c00008{letter-spacing:1.930800px;}
.ls3c_c00008{letter-spacing:1.932960px;}
.ls3f_c00008{letter-spacing:1.938960px;}
.ls36_c00008{letter-spacing:2.428800px;}
.ls74_c00008{letter-spacing:2.500800px;}
.ls8d_c00008{letter-spacing:3.133680px;}
.ls46_c00008{letter-spacing:4.090228px;}
.ls45_c00008{letter-spacing:4.188960px;}
.ls47_c00008{letter-spacing:4.198800px;}
.ls44_c00008{letter-spacing:4.345964px;}
.ls17_c00008{letter-spacing:4.456320px;}
.ls64_c00008{letter-spacing:4.492800px;}
.ls16_c00008{letter-spacing:4.535280px;}
.ls15_c00008{letter-spacing:4.601494px;}
.lsa6_c00008{letter-spacing:5.358000px;}
.ls6a_c00008{letter-spacing:5.856984px;}
.ls68_c00008{letter-spacing:5.888664px;}
.ls6d_c00008{letter-spacing:5.921760px;}
.ls6e_c00008{letter-spacing:5.942936px;}
.ls69_c00008{letter-spacing:5.959920px;}
.ls71_c00008{letter-spacing:6.022732px;}
.ls6b_c00008{letter-spacing:6.048960px;}
.ls81_c00008{letter-spacing:10.119120px;}
.ls26_c00008{letter-spacing:10.507680px;}
.ls28_c00008{letter-spacing:10.541040px;}
.ls2c_c00008{letter-spacing:10.554148px;}
.ls27_c00008{letter-spacing:10.562664px;}
.ls25_c00008{letter-spacing:10.573496px;}
.lsa2_c00008{letter-spacing:10.596000px;}
.ls80_c00008{letter-spacing:10.667280px;}
.ls83_c00008{letter-spacing:10.671384px;}
.ls7b_c00008{letter-spacing:10.690080px;}
.ls2a_c00008{letter-spacing:10.699612px;}
.ls82_c00008{letter-spacing:10.703336px;}
.ls7d_c00008{letter-spacing:10.758720px;}
.ls7f_c00008{letter-spacing:10.828128px;}
.ls7a_c00008{letter-spacing:10.893600px;}
.ls6_c00008{letter-spacing:12.096000px;}
.ls2_c00008{letter-spacing:12.524664px;}
.ls9_c00008{letter-spacing:12.548548px;}
.ls3_c00008{letter-spacing:12.579840px;}
.ls7_c00008{letter-spacing:12.653452px;}
.ls4_c00008{letter-spacing:12.680960px;}
.lsa_c00008{letter-spacing:12.682560px;}
.ls5_c00008{letter-spacing:12.702480px;}
.ls78_c00008{letter-spacing:13.739428px;}
.ls77_c00008{letter-spacing:13.758024px;}
.ls4e_c00008{letter-spacing:13.874880px;}
.ls4b_c00008{letter-spacing:13.994904px;}
.ls76_c00008{letter-spacing:14.278800px;}
.ls75_c00008{letter-spacing:14.305828px;}
.ls72_c00008{letter-spacing:14.333760px;}
.ls79_c00008{letter-spacing:14.337144px;}
.ls73_c00008{letter-spacing:14.399760px;}
.ls32_c00008{letter-spacing:14.408880px;}
.ls5f_c00008{letter-spacing:14.427600px;}
.ls4f_c00008{letter-spacing:14.435544px;}
.ls4a_c00008{letter-spacing:14.448768px;}
.ls5d_c00008{letter-spacing:14.453280px;}
.ls52_c00008{letter-spacing:14.483280px;}
.ls4d_c00008{letter-spacing:14.492788px;}
.ls51_c00008{letter-spacing:14.496000px;}
.ls54_c00008{letter-spacing:14.498880px;}
.ls48_c00008{letter-spacing:14.514480px;}
.ls53_c00008{letter-spacing:14.515920px;}
.ls31_c00008{letter-spacing:14.794560px;}
.ls30_c00008{letter-spacing:14.810400px;}
.ls34_c00008{letter-spacing:14.834904px;}
.ls37_c00008{letter-spacing:14.910024px;}
.ls33_c00008{letter-spacing:14.910720px;}
.ls35_c00008{letter-spacing:14.937120px;}
.ls2e_c00008{letter-spacing:14.942332px;}
.ls2f_c00008{letter-spacing:14.981784px;}
.ls59_c00008{letter-spacing:14.987760px;}
.ls57_c00008{letter-spacing:15.024960px;}
.ls5e_c00008{letter-spacing:15.062880px;}
.ls5a_c00008{letter-spacing:15.065760px;}
.ls58_c00008{letter-spacing:15.071760px;}
.ls55_c00008{letter-spacing:15.073828px;}
.ls5c_c00008{letter-spacing:15.111120px;}
.ls56_c00008{letter-spacing:15.135840px;}
.ls93_c00008{letter-spacing:15.500160px;}
.ls1f_c00008{letter-spacing:16.260240px;}
.ls18_c00008{letter-spacing:16.285968px;}
.ls1a_c00008{letter-spacing:16.804800px;}
.ls20_c00008{letter-spacing:16.837440px;}
.ls23_c00008{letter-spacing:16.853760px;}
.ls24_c00008{letter-spacing:16.854960px;}
.ls1d_c00008{letter-spacing:16.861920px;}
.ls21_c00008{letter-spacing:16.888080px;}
.ls1e_c00008{letter-spacing:16.896504px;}
.ls1b_c00008{letter-spacing:16.960320px;}
.ls97_c00008{letter-spacing:20.998080px;}
.lsc_c00008{letter-spacing:22.152504px;}
.lsf_c00008{letter-spacing:22.316160px;}
.lse_c00008{letter-spacing:22.868688px;}
.lsd_c00008{letter-spacing:22.881600px;}
.ls14_c00008{letter-spacing:22.893840px;}
.ls13_c00008{letter-spacing:22.894344px;}
.ls10_c00008{letter-spacing:23.029200px;}
.ls87_c00008{letter-spacing:23.250720px;}
.ls85_c00008{letter-spacing:23.258880px;}
.ls92_c00008{letter-spacing:23.658000px;}
.ls88_c00008{letter-spacing:23.805600px;}
.ls89_c00008{letter-spacing:23.807760px;}
.ls84_c00008{letter-spacing:23.812824px;}
.ls86_c00008{letter-spacing:23.813760px;}
.ls8a_c00008{letter-spacing:23.834216px;}
.ls8c_c00008{letter-spacing:23.854560px;}
.ls40_c00008{letter-spacing:23.866228px;}
.ls8b_c00008{letter-spacing:23.906160px;}
.ls91_c00008{letter-spacing:24.240000px;}
.ls8f_c00008{letter-spacing:24.246000px;}
.ls8e_c00008{letter-spacing:24.288412px;}
.ls3a_c00008{letter-spacing:24.401760px;}
.ls90_c00008{letter-spacing:24.437280px;}
.ls41_c00008{letter-spacing:24.450776px;}
.ls43_c00008{letter-spacing:24.471508px;}
.ls3e_c00008{letter-spacing:24.476308px;}
.ls3d_c00008{letter-spacing:24.582628px;}
.ls3b_c00008{letter-spacing:24.602160px;}
.ls60_c00008{letter-spacing:33.445920px;}
.ls62_c00008{letter-spacing:33.470216px;}
.ls61_c00008{letter-spacing:33.475520px;}
.ls66_c00008{letter-spacing:33.477840px;}
.ls63_c00008{letter-spacing:33.543360px;}
.ls65_c00008{letter-spacing:33.582240px;}
.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:-17.573760px;}
.ws8_c00008{word-spacing:-17.495760px;}
.ws7_c00008{word-spacing:-17.339760px;}
.ws1_c00008{word-spacing:-17.261760px;}
.wsb_c00008{word-spacing:-15.301440px;}
.ws6_c00008{word-spacing:-15.102240px;}
.ws4_c00008{word-spacing:-14.970240px;}
.ws3_c00008{word-spacing:-14.904240px;}
.ws2_c00008{word-spacing:-14.772240px;}
.ws5_c00008{word-spacing:-14.706240px;}
.ws9_c00008{word-spacing:-14.705280px;}
.wsa_c00008{word-spacing:-14.572800px;}
.ws39_c00008{word-spacing:-1.278000px;}
.ws56_c00008{word-spacing:-0.930000px;}
.ws38_c00008{word-spacing:-0.702000px;}
.ws55_c00008{word-spacing:-0.624000px;}
.ws12_c00008{word-spacing:-0.552000px;}
.ws48_c00008{word-spacing:-0.528000px;}
.ws5c_c00008{word-spacing:-0.462000px;}
.wse_c00008{word-spacing:-0.372000px;}
.ws3d_c00008{word-spacing:-0.312000px;}
.ws57_c00008{word-spacing:-0.294000px;}
.ws5a_c00008{word-spacing:-0.174000px;}
.ws5b_c00008{word-spacing:-0.144000px;}
.ws6e_c00008{word-spacing:-0.132480px;}
.ws59_c00008{word-spacing:-0.078000px;}
.ws1c_c00008{word-spacing:-0.012000px;}
.wsc_c00008{word-spacing:0.000000px;}
.ws6d_c00008{word-spacing:0.066240px;}
.ws70_c00008{word-spacing:0.077760px;}
.ws17_c00008{word-spacing:0.078000px;}
.ws1d_c00008{word-spacing:0.138000px;}
.ws11_c00008{word-spacing:0.174000px;}
.ws10_c00008{word-spacing:0.192000px;}
.ws71_c00008{word-spacing:0.198720px;}
.ws44_c00008{word-spacing:0.240000px;}
.ws6c_c00008{word-spacing:0.264960px;}
.ws6f_c00008{word-spacing:0.311040px;}
.ws1b_c00008{word-spacing:0.342000px;}
.ws1a_c00008{word-spacing:0.348000px;}
.wsd_c00008{word-spacing:0.360000px;}
.ws58_c00008{word-spacing:0.366000px;}
.ws47_c00008{word-spacing:0.384000px;}
.ws73_c00008{word-spacing:0.397440px;}
.ws16_c00008{word-spacing:0.444000px;}
.ws14_c00008{word-spacing:0.450000px;}
.ws43_c00008{word-spacing:0.456000px;}
.ws37_c00008{word-spacing:0.486000px;}
.ws3e_c00008{word-spacing:0.492000px;}
.ws42_c00008{word-spacing:0.498000px;}
.ws41_c00008{word-spacing:0.522000px;}
.ws3a_c00008{word-spacing:0.528000px;}
.ws60_c00008{word-spacing:0.534000px;}
.ws19_c00008{word-spacing:0.540000px;}
.ws46_c00008{word-spacing:0.546000px;}
.wsf_c00008{word-spacing:0.552000px;}
.ws45_c00008{word-spacing:0.558000px;}
.ws3b_c00008{word-spacing:0.570000px;}
.ws5e_c00008{word-spacing:0.600000px;}
.ws5d_c00008{word-spacing:0.606000px;}
.ws5f_c00008{word-spacing:0.624000px;}
.ws13_c00008{word-spacing:0.636000px;}
.ws3c_c00008{word-spacing:0.720000px;}
.ws74_c00008{word-spacing:0.728640px;}
.ws72_c00008{word-spacing:0.794880px;}
.ws40_c00008{word-spacing:0.852000px;}
.ws3f_c00008{word-spacing:0.954000px;}
.ws32_c00008{word-spacing:1.044000px;}
.ws30_c00008{word-spacing:1.056000px;}
.ws31_c00008{word-spacing:1.062000px;}
.ws2f_c00008{word-spacing:1.080000px;}
.ws62_c00008{word-spacing:1.092000px;}
.ws63_c00008{word-spacing:1.122000px;}
.ws64_c00008{word-spacing:1.128000px;}
.ws65_c00008{word-spacing:1.146000px;}
.ws1f_c00008{word-spacing:1.206000px;}
.ws18_c00008{word-spacing:1.224000px;}
.ws21_c00008{word-spacing:1.254000px;}
.ws1e_c00008{word-spacing:1.260000px;}
.ws20_c00008{word-spacing:1.278000px;}
.ws61_c00008{word-spacing:1.320000px;}
.ws34_c00008{word-spacing:1.344000px;}
.ws35_c00008{word-spacing:1.386000px;}
.ws36_c00008{word-spacing:1.392000px;}
.ws33_c00008{word-spacing:1.410000px;}
.ws52_c00008{word-spacing:1.452000px;}
.ws4e_c00008{word-spacing:1.464000px;}
.ws50_c00008{word-spacing:1.470000px;}
.ws51_c00008{word-spacing:1.500000px;}
.ws4c_c00008{word-spacing:1.512000px;}
.ws4d_c00008{word-spacing:1.518000px;}
.ws15_c00008{word-spacing:1.530000px;}
.ws4f_c00008{word-spacing:1.536000px;}
.ws29_c00008{word-spacing:1.644000px;}
.ws2d_c00008{word-spacing:1.668000px;}
.ws2c_c00008{word-spacing:1.698000px;}
.ws2b_c00008{word-spacing:1.710000px;}
.ws2e_c00008{word-spacing:1.716000px;}
.ws2a_c00008{word-spacing:1.734000px;}
.ws67_c00008{word-spacing:2.256000px;}
.ws68_c00008{word-spacing:2.298000px;}
.ws66_c00008{word-spacing:2.322000px;}
.ws22_c00008{word-spacing:2.364000px;}
.ws25_c00008{word-spacing:2.370000px;}
.ws28_c00008{word-spacing:2.412000px;}
.ws27_c00008{word-spacing:2.418000px;}
.ws23_c00008{word-spacing:2.430000px;}
.ws24_c00008{word-spacing:2.436000px;}
.ws26_c00008{word-spacing:2.448000px;}
.ws4a_c00008{word-spacing:2.490000px;}
.ws4b_c00008{word-spacing:2.496000px;}
.ws49_c00008{word-spacing:2.514000px;}
.ws6b_c00008{word-spacing:2.646000px;}
.ws69_c00008{word-spacing:2.688000px;}
.ws6a_c00008{word-spacing:2.712000px;}
.ws54_c00008{word-spacing:3.210000px;}
.ws53_c00008{word-spacing:3.234000px;}
._5_c00008{margin-left:-4.513248px;}
._4_c00008{margin-left:-3.245760px;}
._0_c00008{margin-left:-1.792800px;}
._3_c00008{width:1.092960px;}
._2_c00008{width:3.487139px;}
._1_c00008{width:4.522801px;}
._6_c00008{width:21.037824px;}
._7_c00008{width:22.647456px;}
._8_c00008{width:24.091488px;}
.fc1_c00008{color:rgb(0,0,0);}
.fc0_c00008{color:rgb(79,129,189);}
.fs1_c00008{font-size:66.240000px;}
.fs0_c00008{font-size:77.760000px;}
.y0_c00008{bottom:0.000000px;}
.y27_c00008{bottom:130.707360px;}
.y26_c00008{bottom:153.742320px;}
.y25_c00008{bottom:176.959440px;}
.y24_c00008{bottom:200.176560px;}
.y23_c00008{bottom:223.211520px;}
.y22_c00008{bottom:246.428640px;}
.y21_c00008{bottom:269.645760px;}
.y20_c00008{bottom:307.800000px;}
.y1f_c00008{bottom:332.280000px;}
.y1e_c00008{bottom:373.355250px;}
.y1d_c00008{bottom:396.390210px;}
.y1c_c00008{bottom:419.607330px;}
.y1b_c00008{bottom:442.824450px;}
.y1a_c00008{bottom:469.173000px;}
.y19_c00008{bottom:492.345000px;}
.y18_c00008{bottom:515.517000px;}
.y17_c00008{bottom:538.689000px;}
.y16_c00008{bottom:561.861000px;}
.y15_c00008{bottom:600.015000px;}
.y14_c00008{bottom:624.495000px;}
.y13_c00008{bottom:665.557500px;}
.y12_c00008{bottom:688.738500px;}
.y11_c00008{bottom:711.919500px;}
.y10_c00008{bottom:735.100500px;}
.yf_c00008{bottom:758.281500px;}
.ye_c00008{bottom:781.462500px;}
.yd_c00008{bottom:819.616500px;}
.yc_c00008{bottom:844.104000px;}
.yb_c00008{bottom:871.456500px;}
.ya_c00008{bottom:912.523500px;}
.y9_c00008{bottom:935.680500px;}
.y8_c00008{bottom:958.837500px;}
.y7_c00008{bottom:981.994500px;}
.y6_c00008{bottom:1005.151500px;}
.y5_c00008{bottom:1028.308500px;}
.y4_c00008{bottom:1051.465500px;}
.y3_c00008{bottom:1089.619500px;}
.y2_c00008{bottom:1114.812000px;}
.y1_c00008{bottom:1138.140000px;}
.h3_c00008{height:54.628594px;}
.h4_c00008{height:57.313125px;}
.h2_c00008{height:64.129219px;}
.h1_c00008{height:1263.000000px;}
.h0_c00008{height:1263.060000px;}
.w0_c00008{width:892.980000px;}
.w1_c00008{width:893.250000px;}
.x0_c00008{left:0.000000px;}
.x1_c00008{left:106.380000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.lsa1_c00008{letter-spacing:-0.826667pt;}
.lsaf_c00008{letter-spacing:-0.706560pt;}
.lsa0_c00008{letter-spacing:-0.704000pt;}
.lsb0_c00008{letter-spacing:-0.647680pt;}
.lsa8_c00008{letter-spacing:-0.645333pt;}
.lsab_c00008{letter-spacing:-0.353280pt;}
.ls9c_c00008{letter-spacing:-0.277333pt;}
.lsac_c00008{letter-spacing:-0.276480pt;}
.lsa9_c00008{letter-spacing:-0.235520pt;}
.ls9f_c00008{letter-spacing:-0.234667pt;}
.lsa4_c00008{letter-spacing:-0.208000pt;}
.lsae_c00008{letter-spacing:-0.176640pt;}
.ls9d_c00008{letter-spacing:-0.176000pt;}
.ls9a_c00008{letter-spacing:-0.069333pt;}
.lsad_c00008{letter-spacing:-0.069120pt;}
.lsaa_c00008{letter-spacing:-0.058880pt;}
.ls9e_c00008{letter-spacing:-0.058667pt;}
.ls9b_c00008{letter-spacing:0.000000pt;}
.ls12_c00008{letter-spacing:0.117333pt;}
.ls96_c00008{letter-spacing:0.117760pt;}
.ls99_c00008{letter-spacing:0.223744pt;}
.ls39_c00008{letter-spacing:0.253653pt;}
.ls0_c00008{letter-spacing:0.261333pt;}
.ls98_c00008{letter-spacing:0.288512pt;}
.lsa7_c00008{letter-spacing:0.293333pt;}
.ls95_c00008{letter-spacing:0.294400pt;}
.ls94_c00008{letter-spacing:0.353280pt;}
.ls6f_c00008{letter-spacing:0.464427pt;}
.ls1_c00008{letter-spacing:0.490667pt;}
.ls70_c00008{letter-spacing:0.506453pt;}
.ls6c_c00008{letter-spacing:0.516267pt;}
.ls7c_c00008{letter-spacing:0.523520pt;}
.ls7e_c00008{letter-spacing:0.542933pt;}
.lsa5_c00008{letter-spacing:0.554667pt;}
.lsa3_c00008{letter-spacing:0.624000pt;}
.ls4c_c00008{letter-spacing:0.666027pt;}
.ls49_c00008{letter-spacing:0.681600pt;}
.ls50_c00008{letter-spacing:0.682453pt;}
.ls67_c00008{letter-spacing:0.802987pt;}
.ls11_c00008{letter-spacing:0.804267pt;}
.ls2b_c00008{letter-spacing:0.909440pt;}
.ls2d_c00008{letter-spacing:0.960213pt;}
.ls29_c00008{letter-spacing:0.964267pt;}
.ls38_c00008{letter-spacing:1.113600pt;}
.ls8_c00008{letter-spacing:1.150933pt;}
.lsb_c00008{letter-spacing:1.159040pt;}
.ls19_c00008{letter-spacing:1.242027pt;}
.ls1c_c00008{letter-spacing:1.262933pt;}
.ls22_c00008{letter-spacing:1.264000pt;}
.ls5b_c00008{letter-spacing:1.268267pt;}
.ls42_c00008{letter-spacing:1.716267pt;}
.ls3c_c00008{letter-spacing:1.718187pt;}
.ls3f_c00008{letter-spacing:1.723520pt;}
.ls36_c00008{letter-spacing:2.158933pt;}
.ls74_c00008{letter-spacing:2.222933pt;}
.ls8d_c00008{letter-spacing:2.785493pt;}
.ls46_c00008{letter-spacing:3.635758pt;}
.ls45_c00008{letter-spacing:3.723520pt;}
.ls47_c00008{letter-spacing:3.732267pt;}
.ls44_c00008{letter-spacing:3.863079pt;}
.ls17_c00008{letter-spacing:3.961173pt;}
.ls64_c00008{letter-spacing:3.993600pt;}
.ls16_c00008{letter-spacing:4.031360pt;}
.ls15_c00008{letter-spacing:4.090217pt;}
.lsa6_c00008{letter-spacing:4.762667pt;}
.ls6a_c00008{letter-spacing:5.206208pt;}
.ls68_c00008{letter-spacing:5.234368pt;}
.ls6d_c00008{letter-spacing:5.263787pt;}
.ls6e_c00008{letter-spacing:5.282609pt;}
.ls69_c00008{letter-spacing:5.297707pt;}
.ls71_c00008{letter-spacing:5.353539pt;}
.ls6b_c00008{letter-spacing:5.376853pt;}
.ls81_c00008{letter-spacing:8.994773pt;}
.ls26_c00008{letter-spacing:9.340160pt;}
.ls28_c00008{letter-spacing:9.369813pt;}
.ls2c_c00008{letter-spacing:9.381465pt;}
.ls27_c00008{letter-spacing:9.389035pt;}
.ls25_c00008{letter-spacing:9.398663pt;}
.lsa2_c00008{letter-spacing:9.418667pt;}
.ls80_c00008{letter-spacing:9.482027pt;}
.ls83_c00008{letter-spacing:9.485675pt;}
.ls7b_c00008{letter-spacing:9.502293pt;}
.ls2a_c00008{letter-spacing:9.510766pt;}
.ls82_c00008{letter-spacing:9.514076pt;}
.ls7d_c00008{letter-spacing:9.563307pt;}
.ls7f_c00008{letter-spacing:9.625003pt;}
.ls7a_c00008{letter-spacing:9.683200pt;}
.ls6_c00008{letter-spacing:10.752000pt;}
.ls2_c00008{letter-spacing:11.133035pt;}
.ls9_c00008{letter-spacing:11.154265pt;}
.ls3_c00008{letter-spacing:11.182080pt;}
.ls7_c00008{letter-spacing:11.247513pt;}
.ls4_c00008{letter-spacing:11.271964pt;}
.lsa_c00008{letter-spacing:11.273387pt;}
.ls5_c00008{letter-spacing:11.291093pt;}
.ls78_c00008{letter-spacing:12.212825pt;}
.ls77_c00008{letter-spacing:12.229355pt;}
.ls4e_c00008{letter-spacing:12.333227pt;}
.ls4b_c00008{letter-spacing:12.439915pt;}
.ls76_c00008{letter-spacing:12.692267pt;}
.ls75_c00008{letter-spacing:12.716291pt;}
.ls72_c00008{letter-spacing:12.741120pt;}
.ls79_c00008{letter-spacing:12.744128pt;}
.ls73_c00008{letter-spacing:12.799787pt;}
.ls32_c00008{letter-spacing:12.807893pt;}
.ls5f_c00008{letter-spacing:12.824533pt;}
.ls4f_c00008{letter-spacing:12.831595pt;}
.ls4a_c00008{letter-spacing:12.843349pt;}
.ls5d_c00008{letter-spacing:12.847360pt;}
.ls52_c00008{letter-spacing:12.874027pt;}
.ls4d_c00008{letter-spacing:12.882478pt;}
.ls51_c00008{letter-spacing:12.885333pt;}
.ls54_c00008{letter-spacing:12.887893pt;}
.ls48_c00008{letter-spacing:12.901760pt;}
.ls53_c00008{letter-spacing:12.903040pt;}
.ls31_c00008{letter-spacing:13.150720pt;}
.ls30_c00008{letter-spacing:13.164800pt;}
.ls34_c00008{letter-spacing:13.186581pt;}
.ls37_c00008{letter-spacing:13.253355pt;}
.ls33_c00008{letter-spacing:13.253973pt;}
.ls35_c00008{letter-spacing:13.277440pt;}
.ls2e_c00008{letter-spacing:13.282073pt;}
.ls2f_c00008{letter-spacing:13.317141pt;}
.ls59_c00008{letter-spacing:13.322453pt;}
.ls57_c00008{letter-spacing:13.355520pt;}
.ls5e_c00008{letter-spacing:13.389227pt;}
.ls5a_c00008{letter-spacing:13.391787pt;}
.ls58_c00008{letter-spacing:13.397120pt;}
.ls55_c00008{letter-spacing:13.398958pt;}
.ls5c_c00008{letter-spacing:13.432107pt;}
.ls56_c00008{letter-spacing:13.454080pt;}
.ls93_c00008{letter-spacing:13.777920pt;}
.ls1f_c00008{letter-spacing:14.453547pt;}
.ls18_c00008{letter-spacing:14.476416pt;}
.ls1a_c00008{letter-spacing:14.937600pt;}
.ls20_c00008{letter-spacing:14.966613pt;}
.ls23_c00008{letter-spacing:14.981120pt;}
.ls24_c00008{letter-spacing:14.982187pt;}
.ls1d_c00008{letter-spacing:14.988373pt;}
.ls21_c00008{letter-spacing:15.011627pt;}
.ls1e_c00008{letter-spacing:15.019115pt;}
.ls1b_c00008{letter-spacing:15.075840pt;}
.ls97_c00008{letter-spacing:18.664960pt;}
.lsc_c00008{letter-spacing:19.691115pt;}
.lsf_c00008{letter-spacing:19.836587pt;}
.lse_c00008{letter-spacing:20.327723pt;}
.lsd_c00008{letter-spacing:20.339200pt;}
.ls14_c00008{letter-spacing:20.350080pt;}
.ls13_c00008{letter-spacing:20.350528pt;}
.ls10_c00008{letter-spacing:20.470400pt;}
.ls87_c00008{letter-spacing:20.667307pt;}
.ls85_c00008{letter-spacing:20.674560pt;}
.ls92_c00008{letter-spacing:21.029333pt;}
.ls88_c00008{letter-spacing:21.160533pt;}
.ls89_c00008{letter-spacing:21.162453pt;}
.ls84_c00008{letter-spacing:21.166955pt;}
.ls86_c00008{letter-spacing:21.167787pt;}
.ls8a_c00008{letter-spacing:21.185969pt;}
.ls8c_c00008{letter-spacing:21.204053pt;}
.ls40_c00008{letter-spacing:21.214425pt;}
.ls8b_c00008{letter-spacing:21.249920pt;}
.ls91_c00008{letter-spacing:21.546667pt;}
.ls8f_c00008{letter-spacing:21.552000pt;}
.ls8e_c00008{letter-spacing:21.589699pt;}
.ls3a_c00008{letter-spacing:21.690453pt;}
.ls90_c00008{letter-spacing:21.722027pt;}
.ls41_c00008{letter-spacing:21.734023pt;}
.ls43_c00008{letter-spacing:21.752451pt;}
.ls3e_c00008{letter-spacing:21.756718pt;}
.ls3d_c00008{letter-spacing:21.851225pt;}
.ls3b_c00008{letter-spacing:21.868587pt;}
.ls60_c00008{letter-spacing:29.729707pt;}
.ls62_c00008{letter-spacing:29.751303pt;}
.ls61_c00008{letter-spacing:29.756017pt;}
.ls66_c00008{letter-spacing:29.758080pt;}
.ls63_c00008{letter-spacing:29.816320pt;}
.ls65_c00008{letter-spacing:29.850880pt;}
.ws0_c00008{word-spacing:-15.621120pt;}
.ws8_c00008{word-spacing:-15.551787pt;}
.ws7_c00008{word-spacing:-15.413120pt;}
.ws1_c00008{word-spacing:-15.343787pt;}
.wsb_c00008{word-spacing:-13.601280pt;}
.ws6_c00008{word-spacing:-13.424213pt;}
.ws4_c00008{word-spacing:-13.306880pt;}
.ws3_c00008{word-spacing:-13.248213pt;}
.ws2_c00008{word-spacing:-13.130880pt;}
.ws5_c00008{word-spacing:-13.072213pt;}
.ws9_c00008{word-spacing:-13.071360pt;}
.wsa_c00008{word-spacing:-12.953600pt;}
.ws39_c00008{word-spacing:-1.136000pt;}
.ws56_c00008{word-spacing:-0.826667pt;}
.ws38_c00008{word-spacing:-0.624000pt;}
.ws55_c00008{word-spacing:-0.554667pt;}
.ws12_c00008{word-spacing:-0.490667pt;}
.ws48_c00008{word-spacing:-0.469333pt;}
.ws5c_c00008{word-spacing:-0.410667pt;}
.wse_c00008{word-spacing:-0.330667pt;}
.ws3d_c00008{word-spacing:-0.277333pt;}
.ws57_c00008{word-spacing:-0.261333pt;}
.ws5a_c00008{word-spacing:-0.154667pt;}
.ws5b_c00008{word-spacing:-0.128000pt;}
.ws6e_c00008{word-spacing:-0.117760pt;}
.ws59_c00008{word-spacing:-0.069333pt;}
.ws1c_c00008{word-spacing:-0.010667pt;}
.wsc_c00008{word-spacing:0.000000pt;}
.ws6d_c00008{word-spacing:0.058880pt;}
.ws70_c00008{word-spacing:0.069120pt;}
.ws17_c00008{word-spacing:0.069333pt;}
.ws1d_c00008{word-spacing:0.122667pt;}
.ws11_c00008{word-spacing:0.154667pt;}
.ws10_c00008{word-spacing:0.170667pt;}
.ws71_c00008{word-spacing:0.176640pt;}
.ws44_c00008{word-spacing:0.213333pt;}
.ws6c_c00008{word-spacing:0.235520pt;}
.ws6f_c00008{word-spacing:0.276480pt;}
.ws1b_c00008{word-spacing:0.304000pt;}
.ws1a_c00008{word-spacing:0.309333pt;}
.wsd_c00008{word-spacing:0.320000pt;}
.ws58_c00008{word-spacing:0.325333pt;}
.ws47_c00008{word-spacing:0.341333pt;}
.ws73_c00008{word-spacing:0.353280pt;}
.ws16_c00008{word-spacing:0.394667pt;}
.ws14_c00008{word-spacing:0.400000pt;}
.ws43_c00008{word-spacing:0.405333pt;}
.ws37_c00008{word-spacing:0.432000pt;}
.ws3e_c00008{word-spacing:0.437333pt;}
.ws42_c00008{word-spacing:0.442667pt;}
.ws41_c00008{word-spacing:0.464000pt;}
.ws3a_c00008{word-spacing:0.469333pt;}
.ws60_c00008{word-spacing:0.474667pt;}
.ws19_c00008{word-spacing:0.480000pt;}
.ws46_c00008{word-spacing:0.485333pt;}
.wsf_c00008{word-spacing:0.490667pt;}
.ws45_c00008{word-spacing:0.496000pt;}
.ws3b_c00008{word-spacing:0.506667pt;}
.ws5e_c00008{word-spacing:0.533333pt;}
.ws5d_c00008{word-spacing:0.538667pt;}
.ws5f_c00008{word-spacing:0.554667pt;}
.ws13_c00008{word-spacing:0.565333pt;}
.ws3c_c00008{word-spacing:0.640000pt;}
.ws74_c00008{word-spacing:0.647680pt;}
.ws72_c00008{word-spacing:0.706560pt;}
.ws40_c00008{word-spacing:0.757333pt;}
.ws3f_c00008{word-spacing:0.848000pt;}
.ws32_c00008{word-spacing:0.928000pt;}
.ws30_c00008{word-spacing:0.938667pt;}
.ws31_c00008{word-spacing:0.944000pt;}
.ws2f_c00008{word-spacing:0.960000pt;}
.ws62_c00008{word-spacing:0.970667pt;}
.ws63_c00008{word-spacing:0.997333pt;}
.ws64_c00008{word-spacing:1.002667pt;}
.ws65_c00008{word-spacing:1.018667pt;}
.ws1f_c00008{word-spacing:1.072000pt;}
.ws18_c00008{word-spacing:1.088000pt;}
.ws21_c00008{word-spacing:1.114667pt;}
.ws1e_c00008{word-spacing:1.120000pt;}
.ws20_c00008{word-spacing:1.136000pt;}
.ws61_c00008{word-spacing:1.173333pt;}
.ws34_c00008{word-spacing:1.194667pt;}
.ws35_c00008{word-spacing:1.232000pt;}
.ws36_c00008{word-spacing:1.237333pt;}
.ws33_c00008{word-spacing:1.253333pt;}
.ws52_c00008{word-spacing:1.290667pt;}
.ws4e_c00008{word-spacing:1.301333pt;}
.ws50_c00008{word-spacing:1.306667pt;}
.ws51_c00008{word-spacing:1.333333pt;}
.ws4c_c00008{word-spacing:1.344000pt;}
.ws4d_c00008{word-spacing:1.349333pt;}
.ws15_c00008{word-spacing:1.360000pt;}
.ws4f_c00008{word-spacing:1.365333pt;}
.ws29_c00008{word-spacing:1.461333pt;}
.ws2d_c00008{word-spacing:1.482667pt;}
.ws2c_c00008{word-spacing:1.509333pt;}
.ws2b_c00008{word-spacing:1.520000pt;}
.ws2e_c00008{word-spacing:1.525333pt;}
.ws2a_c00008{word-spacing:1.541333pt;}
.ws67_c00008{word-spacing:2.005333pt;}
.ws68_c00008{word-spacing:2.042667pt;}
.ws66_c00008{word-spacing:2.064000pt;}
.ws22_c00008{word-spacing:2.101333pt;}
.ws25_c00008{word-spacing:2.106667pt;}
.ws28_c00008{word-spacing:2.144000pt;}
.ws27_c00008{word-spacing:2.149333pt;}
.ws23_c00008{word-spacing:2.160000pt;}
.ws24_c00008{word-spacing:2.165333pt;}
.ws26_c00008{word-spacing:2.176000pt;}
.ws4a_c00008{word-spacing:2.213333pt;}
.ws4b_c00008{word-spacing:2.218667pt;}
.ws49_c00008{word-spacing:2.234667pt;}
.ws6b_c00008{word-spacing:2.352000pt;}
.ws69_c00008{word-spacing:2.389333pt;}
.ws6a_c00008{word-spacing:2.410667pt;}
.ws54_c00008{word-spacing:2.853333pt;}
.ws53_c00008{word-spacing:2.874667pt;}
._5_c00008{margin-left:-4.011776pt;}
._4_c00008{margin-left:-2.885120pt;}
._0_c00008{margin-left:-1.593600pt;}
._3_c00008{width:0.971520pt;}
._2_c00008{width:3.099679pt;}
._1_c00008{width:4.020268pt;}
._6_c00008{width:18.700288pt;}
._7_c00008{width:20.131072pt;}
._8_c00008{width:21.414656pt;}
.fs1_c00008{font-size:58.880000pt;}
.fs0_c00008{font-size:69.120000pt;}
.y0_c00008{bottom:0.000000pt;}
.y27_c00008{bottom:116.184320pt;}
.y26_c00008{bottom:136.659840pt;}
.y25_c00008{bottom:157.297280pt;}
.y24_c00008{bottom:177.934720pt;}
.y23_c00008{bottom:198.410240pt;}
.y22_c00008{bottom:219.047680pt;}
.y21_c00008{bottom:239.685120pt;}
.y20_c00008{bottom:273.600000pt;}
.y1f_c00008{bottom:295.360000pt;}
.y1e_c00008{bottom:331.871333pt;}
.y1d_c00008{bottom:352.346853pt;}
.y1c_c00008{bottom:372.984293pt;}
.y1b_c00008{bottom:393.621733pt;}
.y1a_c00008{bottom:417.042667pt;}
.y19_c00008{bottom:437.640000pt;}
.y18_c00008{bottom:458.237333pt;}
.y17_c00008{bottom:478.834667pt;}
.y16_c00008{bottom:499.432000pt;}
.y15_c00008{bottom:533.346667pt;}
.y14_c00008{bottom:555.106667pt;}
.y13_c00008{bottom:591.606667pt;}
.y12_c00008{bottom:612.212000pt;}
.y11_c00008{bottom:632.817333pt;}
.y10_c00008{bottom:653.422667pt;}
.yf_c00008{bottom:674.028000pt;}
.ye_c00008{bottom:694.633333pt;}
.yd_c00008{bottom:728.548000pt;}
.yc_c00008{bottom:750.314667pt;}
.yb_c00008{bottom:774.628000pt;}
.ya_c00008{bottom:811.132000pt;}
.y9_c00008{bottom:831.716000pt;}
.y8_c00008{bottom:852.300000pt;}
.y7_c00008{bottom:872.884000pt;}
.y6_c00008{bottom:893.468000pt;}
.y5_c00008{bottom:914.052000pt;}
.y4_c00008{bottom:934.636000pt;}
.y3_c00008{bottom:968.550667pt;}
.y2_c00008{bottom:990.944000pt;}
.y1_c00008{bottom:1011.680000pt;}
.h3_c00008{height:48.558750pt;}
.h4_c00008{height:50.945000pt;}
.h2_c00008{height:57.003750pt;}
.h1_c00008{height:1122.666667pt;}
.h0_c00008{height:1122.720000pt;}
.w0_c00008{width:793.760000pt;}
.w1_c00008{width:794.000000pt;}
.x0_c00008{left:0.000000pt;}
.x1_c00008{left:94.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_85f18cbf7efdbdbf1bf84a6e.woff')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_1e51fb56f73df7418482430a.woff')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_ac8290ef2fc4f5b9d2c6f962.woff')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00009;src:url('chunks/assets/font_6fb5287efb721b1650173163.woff')format("woff");}.ff4_c00009{font-family:ff4_c00009;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00009;src:url('chunks/assets/font_2ead0e96527bd21ca3ec860b.woff')format("woff");}.ff5_c00009{font-family:ff5_c00009;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00009;src:url('chunks/assets/font_497de6b66fa5d11306dffc2d.woff')format("woff");}.ff6_c00009{font-family:ff6_c00009;line-height:1.043457;font-style: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);}
.m1_c00009{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls2f_c00009{letter-spacing:-0.927360px;}
.ls2b_c00009{letter-spacing:-0.794880px;}
.ls2d_c00009{letter-spacing:-0.728640px;}
.ls30_c00009{letter-spacing:-0.596160px;}
.ls2e_c00009{letter-spacing:-0.397440px;}
.ls2a_c00009{letter-spacing:-0.264960px;}
.ls29_c00009{letter-spacing:-0.198720px;}
.ls2c_c00009{letter-spacing:-0.066240px;}
.ls27_c00009{letter-spacing:0.000000px;}
.ls26_c00009{letter-spacing:0.084240px;}
.ls0_c00009{letter-spacing:0.086112px;}
.ls1_c00009{letter-spacing:0.132480px;}
.ls28_c00009{letter-spacing:0.168480px;}
.ls4_c00009{letter-spacing:0.198720px;}
.ls31_c00009{letter-spacing:0.311040px;}
.ls10_c00009{letter-spacing:0.331200px;}
.ls1a_c00009{letter-spacing:0.397440px;}
.ls7_c00009{letter-spacing:0.861120px;}
.ls22_c00009{letter-spacing:3.775680px;}
.ls3_c00009{letter-spacing:4.438080px;}
.ls1e_c00009{letter-spacing:5.895360px;}
.ls1f_c00009{letter-spacing:6.624000px;}
.ls24_c00009{letter-spacing:8.081280px;}
.ls18_c00009{letter-spacing:8.776800px;}
.ls16_c00009{letter-spacing:8.856288px;}
.ls17_c00009{letter-spacing:9.538560px;}
.lsb_c00009{letter-spacing:10.929600px;}
.ls1b_c00009{letter-spacing:11.658240px;}
.ls11_c00009{letter-spacing:12.386880px;}
.lse_c00009{letter-spacing:17.421120px;}
.lsd_c00009{letter-spacing:18.149760px;}
.ls2_c00009{letter-spacing:19.607040px;}
.ls8_c00009{letter-spacing:20.335680px;}
.lsf_c00009{letter-spacing:21.084192px;}
.ls19_c00009{letter-spacing:22.455360px;}
.ls6_c00009{letter-spacing:24.641280px;}
.ls5_c00009{letter-spacing:25.369920px;}
.ls23_c00009{letter-spacing:26.178048px;}
.ls25_c00009{letter-spacing:28.218240px;}
.lsc_c00009{letter-spacing:32.523840px;}
.ls9_c00009{letter-spacing:33.252480px;}
.ls21_c00009{letter-spacing:34.709760px;}
.ls20_c00009{letter-spacing:35.438400px;}
.ls1d_c00009{letter-spacing:36.167040px;}
.ls1c_c00009{letter-spacing:36.895680px;}
.lsa_c00009{letter-spacing:37.558080px;}
.ls12_c00009{letter-spacing:41.929920px;}
.ls14_c00009{letter-spacing:48.421440px;}
.ls15_c00009{letter-spacing:49.083840px;}
.ls13_c00009{letter-spacing:49.123584px;}
.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;}
}
.ws9_c00009{word-spacing:-17.573760px;}
.wsb_c00009{word-spacing:-15.301440px;}
.wsa_c00009{word-spacing:-15.102720px;}
.ws2_c00009{word-spacing:-14.970240px;}
.ws4_c00009{word-spacing:-14.904000px;}
.ws0_c00009{word-spacing:-14.771520px;}
.ws3_c00009{word-spacing:-14.705280px;}
.ws6_c00009{word-spacing:-14.572800px;}
.ws8_c00009{word-spacing:-14.374080px;}
.ws5_c00009{word-spacing:-14.241600px;}
.ws1_c00009{word-spacing:-14.175360px;}
.ws7_c00009{word-spacing:-14.042880px;}
.ws13_c00009{word-spacing:-0.331200px;}
.ws15_c00009{word-spacing:-0.311040px;}
.wse_c00009{word-spacing:-0.168480px;}
.ws10_c00009{word-spacing:-0.132480px;}
.wsc_c00009{word-spacing:-0.084240px;}
.wsd_c00009{word-spacing:0.000000px;}
.ws12_c00009{word-spacing:0.066240px;}
.wsf_c00009{word-spacing:0.198720px;}
.ws11_c00009{word-spacing:0.264960px;}
.ws14_c00009{word-spacing:0.794880px;}
._8_c00009{margin-left:-2.210040px;}
._0_c00009{margin-left:-1.137240px;}
._1_c00009{width:1.174176px;}
._5_c00009{width:2.972088px;}
._19_c00009{width:4.229280px;}
._4_c00009{width:5.350464px;}
._17_c00009{width:6.964992px;}
._14_c00009{width:8.921880px;}
._b_c00009{width:10.462464px;}
._c_c00009{width:11.799072px;}
._f_c00009{width:12.835584px;}
._1c_c00009{width:17.372376px;}
._2_c00009{width:18.865152px;}
._3_c00009{width:19.869264px;}
._7_c00009{width:21.161952px;}
._e_c00009{width:22.786560px;}
._15_c00009{width:23.876856px;}
._6_c00009{width:25.399584px;}
._1a_c00009{width:26.694720px;}
._1b_c00009{width:28.224864px;}
._d_c00009{width:32.772096px;}
._9_c00009{width:33.872760px;}
._18_c00009{width:35.274960px;}
._16_c00009{width:36.285336px;}
._a_c00009{width:37.465344px;}
._11_c00009{width:41.479488px;}
._10_c00009{width:42.651936px;}
._13_c00009{width:48.699360px;}
._12_c00009{width:49.883616px;}
.fc2_c00009{color:rgb(0,0,0);}
.fc1_c00009{color:rgb(79,129,189);}
.fc0_c00009{color:rgb(54,95,145);}
.fs2_c00009{font-size:66.240000px;}
.fs1_c00009{font-size:77.760000px;}
.fs0_c00009{font-size:84.240000px;}
.y0_c00009{bottom:0.000000px;}
.y27_c00009{bottom:186.168960px;}
.y26_c00009{bottom:209.386080px;}
.y25_c00009{bottom:232.421040px;}
.y24_c00009{bottom:255.638160px;}
.y23_c00009{bottom:278.855280px;}
.y22_c00009{bottom:301.890240px;}
.y21_c00009{bottom:325.107360px;}
.y20_c00009{bottom:348.324480px;}
.y1f_c00009{bottom:371.359440px;}
.y1e_c00009{bottom:394.576560px;}
.y1d_c00009{bottom:417.793680px;}
.y1c_c00009{bottom:441.010800px;}
.y1b_c00009{bottom:464.045760px;}
.y1a_c00009{bottom:502.200000px;}
.y19_c00009{bottom:526.680000px;}
.y18_c00009{bottom:567.796320px;}
.y17_c00009{bottom:591.013440px;}
.y16_c00009{bottom:614.230560px;}
.y15_c00009{bottom:637.265520px;}
.y14_c00009{bottom:660.482640px;}
.y13_c00009{bottom:683.699760px;}
.y12_c00009{bottom:706.734720px;}
.y11_c00009{bottom:729.951840px;}
.y10_c00009{bottom:753.168960px;}
.yf_c00009{bottom:776.203920px;}
.ye_c00009{bottom:799.421040px;}
.yd_c00009{bottom:822.638160px;}
.yc_c00009{bottom:845.855280px;}
.yb_c00009{bottom:868.890240px;}
.ya_c00009{bottom:892.107360px;}
.y9_c00009{bottom:915.324480px;}
.y8_c00009{bottom:938.359440px;}
.y7_c00009{bottom:961.576560px;}
.y6_c00009{bottom:984.793680px;}
.y5_c00009{bottom:1007.828640px;}
.y4_c00009{bottom:1031.045760px;}
.y3_c00009{bottom:1069.200000px;}
.y2_c00009{bottom:1093.680000px;}
.y1_c00009{bottom:1136.700000px;}
.h4_c00009{height:54.628594px;}
.h5_c00009{height:57.313125px;}
.h3_c00009{height:64.129219px;}
.h2_c00009{height:69.473320px;}
.h1_c00009{height:1263.000000px;}
.h0_c00009{height:1263.060000px;}
.w0_c00009{width:892.980000px;}
.w1_c00009{width:893.250000px;}
.x0_c00009{left:0.000000px;}
.x1_c00009{left:106.380000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls2f_c00009{letter-spacing:-0.824320pt;}
.ls2b_c00009{letter-spacing:-0.706560pt;}
.ls2d_c00009{letter-spacing:-0.647680pt;}
.ls30_c00009{letter-spacing:-0.529920pt;}
.ls2e_c00009{letter-spacing:-0.353280pt;}
.ls2a_c00009{letter-spacing:-0.235520pt;}
.ls29_c00009{letter-spacing:-0.176640pt;}
.ls2c_c00009{letter-spacing:-0.058880pt;}
.ls27_c00009{letter-spacing:0.000000pt;}
.ls26_c00009{letter-spacing:0.074880pt;}
.ls0_c00009{letter-spacing:0.076544pt;}
.ls1_c00009{letter-spacing:0.117760pt;}
.ls28_c00009{letter-spacing:0.149760pt;}
.ls4_c00009{letter-spacing:0.176640pt;}
.ls31_c00009{letter-spacing:0.276480pt;}
.ls10_c00009{letter-spacing:0.294400pt;}
.ls1a_c00009{letter-spacing:0.353280pt;}
.ls7_c00009{letter-spacing:0.765440pt;}
.ls22_c00009{letter-spacing:3.356160pt;}
.ls3_c00009{letter-spacing:3.944960pt;}
.ls1e_c00009{letter-spacing:5.240320pt;}
.ls1f_c00009{letter-spacing:5.888000pt;}
.ls24_c00009{letter-spacing:7.183360pt;}
.ls18_c00009{letter-spacing:7.801600pt;}
.ls16_c00009{letter-spacing:7.872256pt;}
.ls17_c00009{letter-spacing:8.478720pt;}
.lsb_c00009{letter-spacing:9.715200pt;}
.ls1b_c00009{letter-spacing:10.362880pt;}
.ls11_c00009{letter-spacing:11.010560pt;}
.lse_c00009{letter-spacing:15.485440pt;}
.lsd_c00009{letter-spacing:16.133120pt;}
.ls2_c00009{letter-spacing:17.428480pt;}
.ls8_c00009{letter-spacing:18.076160pt;}
.lsf_c00009{letter-spacing:18.741504pt;}
.ls19_c00009{letter-spacing:19.960320pt;}
.ls6_c00009{letter-spacing:21.903360pt;}
.ls5_c00009{letter-spacing:22.551040pt;}
.ls23_c00009{letter-spacing:23.269376pt;}
.ls25_c00009{letter-spacing:25.082880pt;}
.lsc_c00009{letter-spacing:28.910080pt;}
.ls9_c00009{letter-spacing:29.557760pt;}
.ls21_c00009{letter-spacing:30.853120pt;}
.ls20_c00009{letter-spacing:31.500800pt;}
.ls1d_c00009{letter-spacing:32.148480pt;}
.ls1c_c00009{letter-spacing:32.796160pt;}
.lsa_c00009{letter-spacing:33.384960pt;}
.ls12_c00009{letter-spacing:37.271040pt;}
.ls14_c00009{letter-spacing:43.041280pt;}
.ls15_c00009{letter-spacing:43.630080pt;}
.ls13_c00009{letter-spacing:43.665408pt;}
.ws9_c00009{word-spacing:-15.621120pt;}
.wsb_c00009{word-spacing:-13.601280pt;}
.wsa_c00009{word-spacing:-13.424640pt;}
.ws2_c00009{word-spacing:-13.306880pt;}
.ws4_c00009{word-spacing:-13.248000pt;}
.ws0_c00009{word-spacing:-13.130240pt;}
.ws3_c00009{word-spacing:-13.071360pt;}
.ws6_c00009{word-spacing:-12.953600pt;}
.ws8_c00009{word-spacing:-12.776960pt;}
.ws5_c00009{word-spacing:-12.659200pt;}
.ws1_c00009{word-spacing:-12.600320pt;}
.ws7_c00009{word-spacing:-12.482560pt;}
.ws13_c00009{word-spacing:-0.294400pt;}
.ws15_c00009{word-spacing:-0.276480pt;}
.wse_c00009{word-spacing:-0.149760pt;}
.ws10_c00009{word-spacing:-0.117760pt;}
.wsc_c00009{word-spacing:-0.074880pt;}
.wsd_c00009{word-spacing:0.000000pt;}
.ws12_c00009{word-spacing:0.058880pt;}
.wsf_c00009{word-spacing:0.176640pt;}
.ws11_c00009{word-spacing:0.235520pt;}
.ws14_c00009{word-spacing:0.706560pt;}
._8_c00009{margin-left:-1.964480pt;}
._0_c00009{margin-left:-1.010880pt;}
._1_c00009{width:1.043712pt;}
._5_c00009{width:2.641856pt;}
._19_c00009{width:3.759360pt;}
._4_c00009{width:4.755968pt;}
._17_c00009{width:6.191104pt;}
._14_c00009{width:7.930560pt;}
._b_c00009{width:9.299968pt;}
._c_c00009{width:10.488064pt;}
._f_c00009{width:11.409408pt;}
._1c_c00009{width:15.442112pt;}
._2_c00009{width:16.769024pt;}
._3_c00009{width:17.661568pt;}
._7_c00009{width:18.810624pt;}
._e_c00009{width:20.254720pt;}
._15_c00009{width:21.223872pt;}
._6_c00009{width:22.577408pt;}
._1a_c00009{width:23.728640pt;}
._1b_c00009{width:25.088768pt;}
._d_c00009{width:29.130752pt;}
._9_c00009{width:30.109120pt;}
._18_c00009{width:31.355520pt;}
._16_c00009{width:32.253632pt;}
._a_c00009{width:33.302528pt;}
._11_c00009{width:36.870656pt;}
._10_c00009{width:37.912832pt;}
._13_c00009{width:43.288320pt;}
._12_c00009{width:44.340992pt;}
.fs2_c00009{font-size:58.880000pt;}
.fs1_c00009{font-size:69.120000pt;}
.fs0_c00009{font-size:74.880000pt;}
.y0_c00009{bottom:0.000000pt;}
.y27_c00009{bottom:165.483520pt;}
.y26_c00009{bottom:186.120960pt;}
.y25_c00009{bottom:206.596480pt;}
.y24_c00009{bottom:227.233920pt;}
.y23_c00009{bottom:247.871360pt;}
.y22_c00009{bottom:268.346880pt;}
.y21_c00009{bottom:288.984320pt;}
.y20_c00009{bottom:309.621760pt;}
.y1f_c00009{bottom:330.097280pt;}
.y1e_c00009{bottom:350.734720pt;}
.y1d_c00009{bottom:371.372160pt;}
.y1c_c00009{bottom:392.009600pt;}
.y1b_c00009{bottom:412.485120pt;}
.y1a_c00009{bottom:446.400000pt;}
.y19_c00009{bottom:468.160000pt;}
.y18_c00009{bottom:504.707840pt;}
.y17_c00009{bottom:525.345280pt;}
.y16_c00009{bottom:545.982720pt;}
.y15_c00009{bottom:566.458240pt;}
.y14_c00009{bottom:587.095680pt;}
.y13_c00009{bottom:607.733120pt;}
.y12_c00009{bottom:628.208640pt;}
.y11_c00009{bottom:648.846080pt;}
.y10_c00009{bottom:669.483520pt;}
.yf_c00009{bottom:689.959040pt;}
.ye_c00009{bottom:710.596480pt;}
.yd_c00009{bottom:731.233920pt;}
.yc_c00009{bottom:751.871360pt;}
.yb_c00009{bottom:772.346880pt;}
.ya_c00009{bottom:792.984320pt;}
.y9_c00009{bottom:813.621760pt;}
.y8_c00009{bottom:834.097280pt;}
.y7_c00009{bottom:854.734720pt;}
.y6_c00009{bottom:875.372160pt;}
.y5_c00009{bottom:895.847680pt;}
.y4_c00009{bottom:916.485120pt;}
.y3_c00009{bottom:950.400000pt;}
.y2_c00009{bottom:972.160000pt;}
.y1_c00009{bottom:1010.400000pt;}
.h4_c00009{height:48.558750pt;}
.h5_c00009{height:50.945000pt;}
.h3_c00009{height:57.003750pt;}
.h2_c00009{height:61.754062pt;}
.h1_c00009{height:1122.666667pt;}
.h0_c00009{height:1122.720000pt;}
.w0_c00009{width:793.760000pt;}
.w1_c00009{width:794.000000pt;}
.x0_c00009{left:0.000000pt;}
.x1_c00009{left:94.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_236ccd348f0f8ce467dd64ba.woff')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_2d81941f81a6fc28e1ecfa78.woff')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_21b8539040f2c9e1e517fee7.woff')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00010;src:url('chunks/assets/font_3267172a2460bd4ff8024c12.woff')format("woff");}.ff4_c00010{font-family:ff4_c00010;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00010;src:url('chunks/assets/font_cdcc36ef68669fab72904871.woff')format("woff");}.ff5_c00010{font-family:ff5_c00010;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00010;src:url('chunks/assets/font_a0aff1a65ba3da6947b92858.woff')format("woff");}.ff6_c00010{font-family:ff6_c00010;line-height:1.043457;font-style: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);}
.m1_c00010{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls1f_c00010{letter-spacing:-0.927360px;}
.ls22_c00010{letter-spacing:-0.794880px;}
.ls20_c00010{letter-spacing:-0.728640px;}
.ls1a_c00010{letter-spacing:-0.596160px;}
.ls18_c00010{letter-spacing:-0.311040px;}
.ls1c_c00010{letter-spacing:-0.264960px;}
.ls1e_c00010{letter-spacing:-0.233280px;}
.ls19_c00010{letter-spacing:-0.198720px;}
.ls16_c00010{letter-spacing:-0.077760px;}
.ls1b_c00010{letter-spacing:-0.066240px;}
.ls17_c00010{letter-spacing:0.000000px;}
.ls2_c00010{letter-spacing:0.132480px;}
.ls3_c00010{letter-spacing:0.198720px;}
.ls5_c00010{letter-spacing:0.231840px;}
.ls21_c00010{letter-spacing:0.264960px;}
.ls1d_c00010{letter-spacing:0.311040px;}
.ls1_c00010{letter-spacing:0.331200px;}
.ls6_c00010{letter-spacing:0.388800px;}
.lsf_c00010{letter-spacing:0.397440px;}
.ls7_c00010{letter-spacing:0.466560px;}
.ls11_c00010{letter-spacing:5.166720px;}
.ls4_c00010{letter-spacing:5.895360px;}
.ls15_c00010{letter-spacing:7.352640px;}
.ls9_c00010{letter-spacing:8.081280px;}
.ls14_c00010{letter-spacing:13.844160px;}
.lsc_c00010{letter-spacing:14.572800px;}
.lsa_c00010{letter-spacing:15.301440px;}
.lsb_c00010{letter-spacing:15.963840px;}
.lsd_c00010{letter-spacing:17.421120px;}
.ls0_c00010{letter-spacing:21.726720px;}
.lse_c00010{letter-spacing:25.369920px;}
.ls12_c00010{letter-spacing:26.098560px;}
.ls13_c00010{letter-spacing:27.006048px;}
.ls8_c00010{letter-spacing:29.675520px;}
.ls10_c00010{letter-spacing:54.846720px;}
.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.496000px;}
.ws1_c00010{word-spacing:-17.262720px;}
.ws8_c00010{word-spacing:-15.301440px;}
.ws6_c00010{word-spacing:-15.102720px;}
.ws4_c00010{word-spacing:-14.970240px;}
.ws5_c00010{word-spacing:-14.904000px;}
.ws7_c00010{word-spacing:-14.771520px;}
.ws3_c00010{word-spacing:-14.705280px;}
.ws2_c00010{word-spacing:-14.374080px;}
.wsa_c00010{word-spacing:-14.241600px;}
.wsb_c00010{word-spacing:-14.175360px;}
.ws9_c00010{word-spacing:-14.042880px;}
.ws15_c00010{word-spacing:-0.331200px;}
.ws14_c00010{word-spacing:-0.311040px;}
.ws17_c00010{word-spacing:-0.264960px;}
.ws13_c00010{word-spacing:-0.233280px;}
.ws11_c00010{word-spacing:-0.132480px;}
.ws16_c00010{word-spacing:-0.077760px;}
.wsd_c00010{word-spacing:0.000000px;}
.ws10_c00010{word-spacing:0.066240px;}
.wsc_c00010{word-spacing:0.077760px;}
.wsf_c00010{word-spacing:0.198720px;}
.ws12_c00010{word-spacing:0.264960px;}
.wse_c00010{word-spacing:0.311040px;}
._3_c00010{margin-left:-2.682720px;}
._2_c00010{margin-left:-1.463904px;}
._0_c00010{width:1.073088px;}
._5_c00010{width:2.987424px;}
._f_c00010{width:4.961376px;}
._4_c00010{width:6.107328px;}
._6_c00010{width:7.167168px;}
._9_c00010{width:8.889408px;}
._7_c00010{width:13.844160px;}
._a_c00010{width:15.977088px;}
._b_c00010{width:17.546976px;}
._1_c00010{width:21.461760px;}
._c_c00010{width:24.336576px;}
._d_c00010{width:25.800480px;}
._10_c00010{width:26.919936px;}
._8_c00010{width:29.721888px;}
._e_c00010{width:54.674496px;}
.fc1_c00010{color:rgb(0,0,0);}
.fc0_c00010{color:rgb(79,129,189);}
.fs1_c00010{font-size:66.240000px;}
.fs0_c00010{font-size:77.760000px;}
.y0_c00010{bottom:0.000000px;}
.y27_c00010{bottom:164.953440px;}
.y26_c00010{bottom:187.988400px;}
.y25_c00010{bottom:211.205520px;}
.y24_c00010{bottom:234.422640px;}
.y23_c00010{bottom:257.457600px;}
.y22_c00010{bottom:280.674720px;}
.y21_c00010{bottom:303.891840px;}
.y20_c00010{bottom:326.926800px;}
.y1f_c00010{bottom:350.143920px;}
.y1e_c00010{bottom:373.361040px;}
.y1d_c00010{bottom:396.396000px;}
.y1c_c00010{bottom:419.613120px;}
.y1b_c00010{bottom:442.830240px;}
.y1a_c00010{bottom:465.865200px;}
.y19_c00010{bottom:489.082320px;}
.y18_c00010{bottom:512.299440px;}
.y17_c00010{bottom:535.516560px;}
.y16_c00010{bottom:558.551520px;}
.y15_c00010{bottom:581.768640px;}
.y14_c00010{bottom:604.985760px;}
.y13_c00010{bottom:643.140000px;}
.y12_c00010{bottom:667.627920px;}
.y11_c00010{bottom:694.980000px;}
.y10_c00010{bottom:736.047360px;}
.yf_c00010{bottom:759.082320px;}
.ye_c00010{bottom:782.299440px;}
.yd_c00010{bottom:805.516560px;}
.yc_c00010{bottom:828.551520px;}
.yb_c00010{bottom:851.768640px;}
.ya_c00010{bottom:874.985760px;}
.y9_c00010{bottom:913.140000px;}
.y8_c00010{bottom:937.620000px;}
.y7_c00010{bottom:978.676560px;}
.y6_c00010{bottom:1001.893680px;}
.y5_c00010{bottom:1024.928640px;}
.y4_c00010{bottom:1048.145760px;}
.y3_c00010{bottom:1086.300000px;}
.y2_c00010{bottom:1110.787920px;}
.y1_c00010{bottom:1138.140000px;}
.h3_c00010{height:54.628594px;}
.h4_c00010{height:57.313125px;}
.h2_c00010{height:64.129219px;}
.h1_c00010{height:1263.000000px;}
.h0_c00010{height:1263.060000px;}
.w0_c00010{width:892.980000px;}
.w1_c00010{width:893.250000px;}
.x0_c00010{left:0.000000px;}
.x1_c00010{left:106.380000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls1f_c00010{letter-spacing:-0.824320pt;}
.ls22_c00010{letter-spacing:-0.706560pt;}
.ls20_c00010{letter-spacing:-0.647680pt;}
.ls1a_c00010{letter-spacing:-0.529920pt;}
.ls18_c00010{letter-spacing:-0.276480pt;}
.ls1c_c00010{letter-spacing:-0.235520pt;}
.ls1e_c00010{letter-spacing:-0.207360pt;}
.ls19_c00010{letter-spacing:-0.176640pt;}
.ls16_c00010{letter-spacing:-0.069120pt;}
.ls1b_c00010{letter-spacing:-0.058880pt;}
.ls17_c00010{letter-spacing:0.000000pt;}
.ls2_c00010{letter-spacing:0.117760pt;}
.ls3_c00010{letter-spacing:0.176640pt;}
.ls5_c00010{letter-spacing:0.206080pt;}
.ls21_c00010{letter-spacing:0.235520pt;}
.ls1d_c00010{letter-spacing:0.276480pt;}
.ls1_c00010{letter-spacing:0.294400pt;}
.ls6_c00010{letter-spacing:0.345600pt;}
.lsf_c00010{letter-spacing:0.353280pt;}
.ls7_c00010{letter-spacing:0.414720pt;}
.ls11_c00010{letter-spacing:4.592640pt;}
.ls4_c00010{letter-spacing:5.240320pt;}
.ls15_c00010{letter-spacing:6.535680pt;}
.ls9_c00010{letter-spacing:7.183360pt;}
.ls14_c00010{letter-spacing:12.305920pt;}
.lsc_c00010{letter-spacing:12.953600pt;}
.lsa_c00010{letter-spacing:13.601280pt;}
.lsb_c00010{letter-spacing:14.190080pt;}
.lsd_c00010{letter-spacing:15.485440pt;}
.ls0_c00010{letter-spacing:19.312640pt;}
.lse_c00010{letter-spacing:22.551040pt;}
.ls12_c00010{letter-spacing:23.198720pt;}
.ls13_c00010{letter-spacing:24.005376pt;}
.ls8_c00010{letter-spacing:26.378240pt;}
.ls10_c00010{letter-spacing:48.752640pt;}
.ws0_c00010{word-spacing:-15.552000pt;}
.ws1_c00010{word-spacing:-15.344640pt;}
.ws8_c00010{word-spacing:-13.601280pt;}
.ws6_c00010{word-spacing:-13.424640pt;}
.ws4_c00010{word-spacing:-13.306880pt;}
.ws5_c00010{word-spacing:-13.248000pt;}
.ws7_c00010{word-spacing:-13.130240pt;}
.ws3_c00010{word-spacing:-13.071360pt;}
.ws2_c00010{word-spacing:-12.776960pt;}
.wsa_c00010{word-spacing:-12.659200pt;}
.wsb_c00010{word-spacing:-12.600320pt;}
.ws9_c00010{word-spacing:-12.482560pt;}
.ws15_c00010{word-spacing:-0.294400pt;}
.ws14_c00010{word-spacing:-0.276480pt;}
.ws17_c00010{word-spacing:-0.235520pt;}
.ws13_c00010{word-spacing:-0.207360pt;}
.ws11_c00010{word-spacing:-0.117760pt;}
.ws16_c00010{word-spacing:-0.069120pt;}
.wsd_c00010{word-spacing:0.000000pt;}
.ws10_c00010{word-spacing:0.058880pt;}
.wsc_c00010{word-spacing:0.069120pt;}
.wsf_c00010{word-spacing:0.176640pt;}
.ws12_c00010{word-spacing:0.235520pt;}
.wse_c00010{word-spacing:0.276480pt;}
._3_c00010{margin-left:-2.384640pt;}
._2_c00010{margin-left:-1.301248pt;}
._0_c00010{width:0.953856pt;}
._5_c00010{width:2.655488pt;}
._f_c00010{width:4.410112pt;}
._4_c00010{width:5.428736pt;}
._6_c00010{width:6.370816pt;}
._9_c00010{width:7.901696pt;}
._7_c00010{width:12.305920pt;}
._a_c00010{width:14.201856pt;}
._b_c00010{width:15.597312pt;}
._1_c00010{width:19.077120pt;}
._c_c00010{width:21.632512pt;}
._d_c00010{width:22.933760pt;}
._10_c00010{width:23.928832pt;}
._8_c00010{width:26.419456pt;}
._e_c00010{width:48.599552pt;}
.fs1_c00010{font-size:58.880000pt;}
.fs0_c00010{font-size:69.120000pt;}
.y0_c00010{bottom:0.000000pt;}
.y27_c00010{bottom:146.625280pt;}
.y26_c00010{bottom:167.100800pt;}
.y25_c00010{bottom:187.738240pt;}
.y24_c00010{bottom:208.375680pt;}
.y23_c00010{bottom:228.851200pt;}
.y22_c00010{bottom:249.488640pt;}
.y21_c00010{bottom:270.126080pt;}
.y20_c00010{bottom:290.601600pt;}
.y1f_c00010{bottom:311.239040pt;}
.y1e_c00010{bottom:331.876480pt;}
.y1d_c00010{bottom:352.352000pt;}
.y1c_c00010{bottom:372.989440pt;}
.y1b_c00010{bottom:393.626880pt;}
.y1a_c00010{bottom:414.102400pt;}
.y19_c00010{bottom:434.739840pt;}
.y18_c00010{bottom:455.377280pt;}
.y17_c00010{bottom:476.014720pt;}
.y16_c00010{bottom:496.490240pt;}
.y15_c00010{bottom:517.127680pt;}
.y14_c00010{bottom:537.765120pt;}
.y13_c00010{bottom:571.680000pt;}
.y12_c00010{bottom:593.447040pt;}
.y11_c00010{bottom:617.760000pt;}
.y10_c00010{bottom:654.264320pt;}
.yf_c00010{bottom:674.739840pt;}
.ye_c00010{bottom:695.377280pt;}
.yd_c00010{bottom:716.014720pt;}
.yc_c00010{bottom:736.490240pt;}
.yb_c00010{bottom:757.127680pt;}
.ya_c00010{bottom:777.765120pt;}
.y9_c00010{bottom:811.680000pt;}
.y8_c00010{bottom:833.440000pt;}
.y7_c00010{bottom:869.934720pt;}
.y6_c00010{bottom:890.572160pt;}
.y5_c00010{bottom:911.047680pt;}
.y4_c00010{bottom:931.685120pt;}
.y3_c00010{bottom:965.600000pt;}
.y2_c00010{bottom:987.367040pt;}
.y1_c00010{bottom:1011.680000pt;}
.h3_c00010{height:48.558750pt;}
.h4_c00010{height:50.945000pt;}
.h2_c00010{height:57.003750pt;}
.h1_c00010{height:1122.666667pt;}
.h0_c00010{height:1122.720000pt;}
.w0_c00010{width:793.760000pt;}
.w1_c00010{width:794.000000pt;}
.x0_c00010{left:0.000000pt;}
.x1_c00010{left:94.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ba967b0f07ba0fb2e3bb3ac1.woff')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00011;src:url('chunks/assets/font_6d28dd6207dad960e904879f.woff')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_63037931602d36fc85e98f73.woff')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00011;src:url('chunks/assets/font_e8b44cd239f61ec7f4c245ec.woff')format("woff");}.ff4_c00011{font-family:ff4_c00011;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00011;src:url('chunks/assets/font_f72cafbcf698d0238ada2dc6.woff')format("woff");}.ff5_c00011{font-family:ff5_c00011;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00011;src:url('chunks/assets/font_e8d8287320fe42f2517932a2.woff')format("woff");}.ff6_c00011{font-family:ff6_c00011;line-height:1.043457;font-style: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);}
.m1_c00011{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls20_c00011{letter-spacing:-0.927360px;}
.ls1e_c00011{letter-spacing:-0.794880px;}
.ls21_c00011{letter-spacing:-0.596160px;}
.ls22_c00011{letter-spacing:-0.397440px;}
.ls23_c00011{letter-spacing:-0.311040px;}
.ls1b_c00011{letter-spacing:-0.264960px;}
.ls19_c00011{letter-spacing:-0.233280px;}
.ls1a_c00011{letter-spacing:-0.198720px;}
.ls1d_c00011{letter-spacing:-0.132480px;}
.ls17_c00011{letter-spacing:-0.077760px;}
.ls1c_c00011{letter-spacing:-0.066240px;}
.ls18_c00011{letter-spacing:0.000000px;}
.ls1f_c00011{letter-spacing:0.066240px;}
.ls2_c00011{letter-spacing:0.132480px;}
.lsc_c00011{letter-spacing:0.139104px;}
.lse_c00011{letter-spacing:0.198720px;}
.ls1_c00011{letter-spacing:0.331200px;}
.ls6_c00011{letter-spacing:0.397440px;}
.ls15_c00011{letter-spacing:0.861120px;}
.ls5_c00011{letter-spacing:1.589760px;}
.ls4_c00011{letter-spacing:2.318400px;}
.ls9_c00011{letter-spacing:2.371392px;}
.ls3_c00011{letter-spacing:3.047040px;}
.lsb_c00011{letter-spacing:3.775680px;}
.lsa_c00011{letter-spacing:4.438080px;}
.ls13_c00011{letter-spacing:7.352640px;}
.ls16_c00011{letter-spacing:7.379136px;}
.ls14_c00011{letter-spacing:7.399008px;}
.lsd_c00011{letter-spacing:8.081280px;}
.ls10_c00011{letter-spacing:9.538560px;}
.lsf_c00011{letter-spacing:10.200960px;}
.ls8_c00011{letter-spacing:17.421120px;}
.ls0_c00011{letter-spacing:18.878400px;}
.ls11_c00011{letter-spacing:20.998080px;}
.ls12_c00011{letter-spacing:23.912640px;}
.ls7_c00011{letter-spacing:26.760960px;}
.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;}
}
.ws9_c00011{word-spacing:-17.573760px;}
.ws0_c00011{word-spacing:-17.340480px;}
.ws3_c00011{word-spacing:-15.301440px;}
.ws2_c00011{word-spacing:-15.102720px;}
.ws7_c00011{word-spacing:-15.036480px;}
.ws5_c00011{word-spacing:-14.970240px;}
.ws4_c00011{word-spacing:-14.904000px;}
.wsa_c00011{word-spacing:-14.771520px;}
.ws1_c00011{word-spacing:-14.705280px;}
.wsb_c00011{word-spacing:-14.572800px;}
.ws6_c00011{word-spacing:-14.175360px;}
.ws8_c00011{word-spacing:-14.042880px;}
.ws13_c00011{word-spacing:-0.331200px;}
.ws12_c00011{word-spacing:-0.132480px;}
.wsd_c00011{word-spacing:0.000000px;}
.wsf_c00011{word-spacing:0.066240px;}
.wsc_c00011{word-spacing:0.077760px;}
.ws11_c00011{word-spacing:0.132480px;}
.wse_c00011{word-spacing:0.198720px;}
.ws10_c00011{word-spacing:0.264960px;}
.ws15_c00011{word-spacing:0.311040px;}
.ws14_c00011{word-spacing:0.596160px;}
._e_c00011{margin-left:-4.083552px;}
._9_c00011{margin-left:-2.669472px;}
._2_c00011{margin-left:-1.271808px;}
._0_c00011{width:1.329696px;}
._3_c00011{width:2.392992px;}
._4_c00011{width:3.947904px;}
._8_c00011{width:4.986432px;}
._a_c00011{width:7.195392px;}
._b_c00011{width:8.745408px;}
._c_c00011{width:10.247328px;}
._d_c00011{width:15.996960px;}
._7_c00011{width:17.182656px;}
._1_c00011{width:18.818784px;}
._f_c00011{width:21.847680px;}
._10_c00011{width:24.204096px;}
._11_c00011{width:25.331904px;}
._6_c00011{width:26.892000px;}
._5_c00011{width:28.204992px;}
._12_c00011{width:38.876256px;}
.fc1_c00011{color:rgb(0,0,0);}
.fc0_c00011{color:rgb(79,129,189);}
.fs1_c00011{font-size:66.240000px;}
.fs0_c00011{font-size:77.760000px;}
.y0_c00011{bottom:0.000000px;}
.y28_c00011{bottom:115.936560px;}
.y27_c00011{bottom:138.971520px;}
.y26_c00011{bottom:162.188640px;}
.y25_c00011{bottom:185.405760px;}
.y24_c00011{bottom:223.560000px;}
.y23_c00011{bottom:248.040000px;}
.y22_c00011{bottom:289.099440px;}
.y21_c00011{bottom:312.134400px;}
.y20_c00011{bottom:335.351520px;}
.y1f_c00011{bottom:358.568640px;}
.y1e_c00011{bottom:381.785760px;}
.y1d_c00011{bottom:419.940000px;}
.y1c_c00011{bottom:444.420000px;}
.y1b_c00011{bottom:485.495280px;}
.y1a_c00011{bottom:508.530240px;}
.y19_c00011{bottom:531.747360px;}
.y18_c00011{bottom:554.964480px;}
.y17_c00011{bottom:577.999440px;}
.y16_c00011{bottom:601.216560px;}
.y15_c00011{bottom:624.433680px;}
.y14_c00011{bottom:647.468640px;}
.y13_c00011{bottom:670.685760px;}
.y12_c00011{bottom:708.840000px;}
.y11_c00011{bottom:733.320000px;}
.y10_c00011{bottom:774.411840px;}
.yf_c00011{bottom:797.628960px;}
.ye_c00011{bottom:820.846080px;}
.yd_c00011{bottom:843.881040px;}
.yc_c00011{bottom:867.098160px;}
.yb_c00011{bottom:890.315280px;}
.ya_c00011{bottom:913.350240px;}
.y9_c00011{bottom:936.567360px;}
.y8_c00011{bottom:959.784480px;}
.y7_c00011{bottom:982.819440px;}
.y6_c00011{bottom:1006.036560px;}
.y5_c00011{bottom:1029.253680px;}
.y4_c00011{bottom:1052.288640px;}
.y3_c00011{bottom:1075.505760px;}
.y2_c00011{bottom:1113.660000px;}
.y1_c00011{bottom:1138.140000px;}
.h3_c00011{height:54.628594px;}
.h4_c00011{height:57.313125px;}
.h2_c00011{height:64.129219px;}
.h1_c00011{height:1263.000000px;}
.h0_c00011{height:1263.060000px;}
.w0_c00011{width:892.980000px;}
.w1_c00011{width:893.250000px;}
.x0_c00011{left:0.000000px;}
.x1_c00011{left:106.380000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls20_c00011{letter-spacing:-0.824320pt;}
.ls1e_c00011{letter-spacing:-0.706560pt;}
.ls21_c00011{letter-spacing:-0.529920pt;}
.ls22_c00011{letter-spacing:-0.353280pt;}
.ls23_c00011{letter-spacing:-0.276480pt;}
.ls1b_c00011{letter-spacing:-0.235520pt;}
.ls19_c00011{letter-spacing:-0.207360pt;}
.ls1a_c00011{letter-spacing:-0.176640pt;}
.ls1d_c00011{letter-spacing:-0.117760pt;}
.ls17_c00011{letter-spacing:-0.069120pt;}
.ls1c_c00011{letter-spacing:-0.058880pt;}
.ls18_c00011{letter-spacing:0.000000pt;}
.ls1f_c00011{letter-spacing:0.058880pt;}
.ls2_c00011{letter-spacing:0.117760pt;}
.lsc_c00011{letter-spacing:0.123648pt;}
.lse_c00011{letter-spacing:0.176640pt;}
.ls1_c00011{letter-spacing:0.294400pt;}
.ls6_c00011{letter-spacing:0.353280pt;}
.ls15_c00011{letter-spacing:0.765440pt;}
.ls5_c00011{letter-spacing:1.413120pt;}
.ls4_c00011{letter-spacing:2.060800pt;}
.ls9_c00011{letter-spacing:2.107904pt;}
.ls3_c00011{letter-spacing:2.708480pt;}
.lsb_c00011{letter-spacing:3.356160pt;}
.lsa_c00011{letter-spacing:3.944960pt;}
.ls13_c00011{letter-spacing:6.535680pt;}
.ls16_c00011{letter-spacing:6.559232pt;}
.ls14_c00011{letter-spacing:6.576896pt;}
.lsd_c00011{letter-spacing:7.183360pt;}
.ls10_c00011{letter-spacing:8.478720pt;}
.lsf_c00011{letter-spacing:9.067520pt;}
.ls8_c00011{letter-spacing:15.485440pt;}
.ls0_c00011{letter-spacing:16.780800pt;}
.ls11_c00011{letter-spacing:18.664960pt;}
.ls12_c00011{letter-spacing:21.255680pt;}
.ls7_c00011{letter-spacing:23.787520pt;}
.ws9_c00011{word-spacing:-15.621120pt;}
.ws0_c00011{word-spacing:-15.413760pt;}
.ws3_c00011{word-spacing:-13.601280pt;}
.ws2_c00011{word-spacing:-13.424640pt;}
.ws7_c00011{word-spacing:-13.365760pt;}
.ws5_c00011{word-spacing:-13.306880pt;}
.ws4_c00011{word-spacing:-13.248000pt;}
.wsa_c00011{word-spacing:-13.130240pt;}
.ws1_c00011{word-spacing:-13.071360pt;}
.wsb_c00011{word-spacing:-12.953600pt;}
.ws6_c00011{word-spacing:-12.600320pt;}
.ws8_c00011{word-spacing:-12.482560pt;}
.ws13_c00011{word-spacing:-0.294400pt;}
.ws12_c00011{word-spacing:-0.117760pt;}
.wsd_c00011{word-spacing:0.000000pt;}
.wsf_c00011{word-spacing:0.058880pt;}
.wsc_c00011{word-spacing:0.069120pt;}
.ws11_c00011{word-spacing:0.117760pt;}
.wse_c00011{word-spacing:0.176640pt;}
.ws10_c00011{word-spacing:0.235520pt;}
.ws15_c00011{word-spacing:0.276480pt;}
.ws14_c00011{word-spacing:0.529920pt;}
._e_c00011{margin-left:-3.629824pt;}
._9_c00011{margin-left:-2.372864pt;}
._2_c00011{margin-left:-1.130496pt;}
._0_c00011{width:1.181952pt;}
._3_c00011{width:2.127104pt;}
._4_c00011{width:3.509248pt;}
._8_c00011{width:4.432384pt;}
._a_c00011{width:6.395904pt;}
._b_c00011{width:7.773696pt;}
._c_c00011{width:9.108736pt;}
._d_c00011{width:14.219520pt;}
._7_c00011{width:15.273472pt;}
._1_c00011{width:16.727808pt;}
._f_c00011{width:19.420160pt;}
._10_c00011{width:21.514752pt;}
._11_c00011{width:22.517248pt;}
._6_c00011{width:23.904000pt;}
._5_c00011{width:25.071104pt;}
._12_c00011{width:34.556672pt;}
.fs1_c00011{font-size:58.880000pt;}
.fs0_c00011{font-size:69.120000pt;}
.y0_c00011{bottom:0.000000pt;}
.y28_c00011{bottom:103.054720pt;}
.y27_c00011{bottom:123.530240pt;}
.y26_c00011{bottom:144.167680pt;}
.y25_c00011{bottom:164.805120pt;}
.y24_c00011{bottom:198.720000pt;}
.y23_c00011{bottom:220.480000pt;}
.y22_c00011{bottom:256.977280pt;}
.y21_c00011{bottom:277.452800pt;}
.y20_c00011{bottom:298.090240pt;}
.y1f_c00011{bottom:318.727680pt;}
.y1e_c00011{bottom:339.365120pt;}
.y1d_c00011{bottom:373.280000pt;}
.y1c_c00011{bottom:395.040000pt;}
.y1b_c00011{bottom:431.551360pt;}
.y1a_c00011{bottom:452.026880pt;}
.y19_c00011{bottom:472.664320pt;}
.y18_c00011{bottom:493.301760pt;}
.y17_c00011{bottom:513.777280pt;}
.y16_c00011{bottom:534.414720pt;}
.y15_c00011{bottom:555.052160pt;}
.y14_c00011{bottom:575.527680pt;}
.y13_c00011{bottom:596.165120pt;}
.y12_c00011{bottom:630.080000pt;}
.y11_c00011{bottom:651.840000pt;}
.y10_c00011{bottom:688.366080pt;}
.yf_c00011{bottom:709.003520pt;}
.ye_c00011{bottom:729.640960pt;}
.yd_c00011{bottom:750.116480pt;}
.yc_c00011{bottom:770.753920pt;}
.yb_c00011{bottom:791.391360pt;}
.ya_c00011{bottom:811.866880pt;}
.y9_c00011{bottom:832.504320pt;}
.y8_c00011{bottom:853.141760pt;}
.y7_c00011{bottom:873.617280pt;}
.y6_c00011{bottom:894.254720pt;}
.y5_c00011{bottom:914.892160pt;}
.y4_c00011{bottom:935.367680pt;}
.y3_c00011{bottom:956.005120pt;}
.y2_c00011{bottom:989.920000pt;}
.y1_c00011{bottom:1011.680000pt;}
.h3_c00011{height:48.558750pt;}
.h4_c00011{height:50.945000pt;}
.h2_c00011{height:57.003750pt;}
.h1_c00011{height:1122.666667pt;}
.h0_c00011{height:1122.720000pt;}
.w0_c00011{width:793.760000pt;}
.w1_c00011{width:794.000000pt;}
.x0_c00011{left:0.000000pt;}
.x1_c00011{left:94.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_548b26ef52aaac31ca2f1527.woff')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.043457;font-style:normal;font-weight:normal;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_2ead0e96527bd21ca3ec860b.woff')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00012;src:url('chunks/assets/font_4b5f85f0a7d4dbda2ba35284.woff')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00012;src:url('chunks/assets/font_c9a13053eee22f9fee8aee69.woff')format("woff");}.ff4_c00012{font-family:ff4_c00012;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00012;src:url('chunks/assets/font_528b211979100642c2125282.woff')format("woff");}.ff5_c00012{font-family:ff5_c00012;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00012{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls28_c00012{letter-spacing:-0.927360px;}
.ls26_c00012{letter-spacing:-0.794880px;}
.ls22_c00012{letter-spacing:-0.331200px;}
.ls27_c00012{letter-spacing:-0.311040px;}
.ls1f_c00012{letter-spacing:-0.264960px;}
.ls23_c00012{letter-spacing:-0.233280px;}
.ls25_c00012{letter-spacing:-0.198720px;}
.ls24_c00012{letter-spacing:-0.077760px;}
.ls21_c00012{letter-spacing:-0.066240px;}
.ls20_c00012{letter-spacing:0.000000px;}
.ls1_c00012{letter-spacing:0.132480px;}
.ls2_c00012{letter-spacing:0.198720px;}
.ls1d_c00012{letter-spacing:0.298080px;}
.ls4_c00012{letter-spacing:0.331200px;}
.ls1e_c00012{letter-spacing:0.388800px;}
.lsc_c00012{letter-spacing:0.397440px;}
.ls1a_c00012{letter-spacing:0.861120px;}
.ls1b_c00012{letter-spacing:1.589760px;}
.ls6_c00012{letter-spacing:3.047040px;}
.ls12_c00012{letter-spacing:3.775680px;}
.ls1c_c00012{letter-spacing:4.438080px;}
.ls15_c00012{letter-spacing:6.624000px;}
.lsb_c00012{letter-spacing:10.200960px;}
.lsa_c00012{letter-spacing:10.929600px;}
.ls5_c00012{letter-spacing:13.844160px;}
.ls9_c00012{letter-spacing:15.301440px;}
.ls10_c00012{letter-spacing:15.963840px;}
.lsf_c00012{letter-spacing:16.732224px;}
.ls3_c00012{letter-spacing:17.421120px;}
.ls0_c00012{letter-spacing:18.878400px;}
.ls14_c00012{letter-spacing:19.607040px;}
.ls13_c00012{letter-spacing:20.335680px;}
.lsd_c00012{letter-spacing:23.184000px;}
.lse_c00012{letter-spacing:23.276736px;}
.ls11_c00012{letter-spacing:25.422912px;}
.ls18_c00012{letter-spacing:30.377664px;}
.ls16_c00012{letter-spacing:31.126176px;}
.ls17_c00012{letter-spacing:31.132800px;}
.ls19_c00012{letter-spacing:31.146048px;}
.ls7_c00012{letter-spacing:44.778240px;}
.ls8_c00012{letter-spacing:44.910720px;}
.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;}
}
.ws3_c00012{word-spacing:-17.496000px;}
.ws6_c00012{word-spacing:-17.262720px;}
.ws1_c00012{word-spacing:-15.301440px;}
.ws5_c00012{word-spacing:-15.102720px;}
.ws2_c00012{word-spacing:-14.970240px;}
.ws4_c00012{word-spacing:-14.904000px;}
.ws0_c00012{word-spacing:-14.705280px;}
.wse_c00012{word-spacing:-0.331200px;}
.ws7_c00012{word-spacing:-0.132480px;}
.ws8_c00012{word-spacing:0.000000px;}
.ws9_c00012{word-spacing:0.066240px;}
.ws12_c00012{word-spacing:0.077760px;}
.wsd_c00012{word-spacing:0.198720px;}
.wsc_c00012{word-spacing:0.233280px;}
.wsa_c00012{word-spacing:0.264960px;}
.ws10_c00012{word-spacing:0.311040px;}
.wsb_c00012{word-spacing:0.331200px;}
.wsf_c00012{word-spacing:0.794880px;}
.ws11_c00012{word-spacing:0.927360px;}
._15_c00012{margin-left:-2.305152px;}
._1_c00012{margin-left:-1.119456px;}
._3_c00012{width:1.404288px;}
._5_c00012{width:2.848320px;}
._6_c00012{width:3.914784px;}
._10_c00012{width:5.557536px;}
._11_c00012{width:6.769728px;}
._16_c00012{width:7.769952px;}
._d_c00012{width:9.094752px;}
._a_c00012{width:10.856736px;}
._4_c00012{width:13.738176px;}
._9_c00012{width:16.030080px;}
._2_c00012{width:17.242272px;}
._0_c00012{width:18.514080px;}
._f_c00012{width:19.640160px;}
._e_c00012{width:20.700000px;}
._b_c00012{width:22.991904px;}
._c_c00012{width:26.158176px;}
._14_c00012{width:27.284256px;}
._13_c00012{width:30.397536px;}
._12_c00012{width:31.993920px;}
._7_c00012{width:43.917120px;}
._8_c00012{width:44.970336px;}
.fc1_c00012{color:rgb(79,129,189);}
.fc0_c00012{color:rgb(0,0,0);}
.fs0_c00012{font-size:66.240000px;}
.fs1_c00012{font-size:77.760000px;}
.y0_c00012{bottom:0.000000px;}
.y28_c00012{bottom:130.873680px;}
.y27_c00012{bottom:154.090800px;}
.y26_c00012{bottom:192.245040px;}
.y25_c00012{bottom:215.280000px;}
.y24_c00012{bottom:239.760000px;}
.y23_c00012{bottom:280.819440px;}
.y22_c00012{bottom:304.036560px;}
.y21_c00012{bottom:327.253680px;}
.y20_c00012{bottom:350.288640px;}
.y1f_c00012{bottom:373.505760px;}
.y1e_c00012{bottom:411.660000px;}
.y1d_c00012{bottom:436.140000px;}
.y1c_c00012{bottom:477.248400px;}
.y1b_c00012{bottom:500.465520px;}
.y1a_c00012{bottom:523.682640px;}
.y19_c00012{bottom:546.717600px;}
.y18_c00012{bottom:569.934720px;}
.y17_c00012{bottom:593.151840px;}
.y16_c00012{bottom:616.186800px;}
.y15_c00012{bottom:639.403920px;}
.y14_c00012{bottom:662.621040px;}
.y13_c00012{bottom:685.656000px;}
.y12_c00012{bottom:708.873120px;}
.y11_c00012{bottom:732.090240px;}
.y10_c00012{bottom:755.125200px;}
.yf_c00012{bottom:778.342320px;}
.ye_c00012{bottom:801.559440px;}
.yd_c00012{bottom:824.776560px;}
.yc_c00012{bottom:847.811520px;}
.yb_c00012{bottom:871.028640px;}
.ya_c00012{bottom:894.245760px;}
.y9_c00012{bottom:932.400000px;}
.y8_c00012{bottom:956.887920px;}
.y7_c00012{bottom:984.240000px;}
.y6_c00012{bottom:1025.298720px;}
.y5_c00012{bottom:1048.333680px;}
.y4_c00012{bottom:1071.550800px;}
.y3_c00012{bottom:1094.767920px;}
.y2_c00012{bottom:1117.802880px;}
.y1_c00012{bottom:1141.020000px;}
.h4_c00012{height:54.628594px;}
.h2_c00012{height:57.313125px;}
.h3_c00012{height:64.129219px;}
.h1_c00012{height:1263.000000px;}
.h0_c00012{height:1263.060000px;}
.w0_c00012{width:892.980000px;}
.w1_c00012{width:893.250000px;}
.x0_c00012{left:0.000000px;}
.x1_c00012{left:106.380000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls28_c00012{letter-spacing:-0.824320pt;}
.ls26_c00012{letter-spacing:-0.706560pt;}
.ls22_c00012{letter-spacing:-0.294400pt;}
.ls27_c00012{letter-spacing:-0.276480pt;}
.ls1f_c00012{letter-spacing:-0.235520pt;}
.ls23_c00012{letter-spacing:-0.207360pt;}
.ls25_c00012{letter-spacing:-0.176640pt;}
.ls24_c00012{letter-spacing:-0.069120pt;}
.ls21_c00012{letter-spacing:-0.058880pt;}
.ls20_c00012{letter-spacing:0.000000pt;}
.ls1_c00012{letter-spacing:0.117760pt;}
.ls2_c00012{letter-spacing:0.176640pt;}
.ls1d_c00012{letter-spacing:0.264960pt;}
.ls4_c00012{letter-spacing:0.294400pt;}
.ls1e_c00012{letter-spacing:0.345600pt;}
.lsc_c00012{letter-spacing:0.353280pt;}
.ls1a_c00012{letter-spacing:0.765440pt;}
.ls1b_c00012{letter-spacing:1.413120pt;}
.ls6_c00012{letter-spacing:2.708480pt;}
.ls12_c00012{letter-spacing:3.356160pt;}
.ls1c_c00012{letter-spacing:3.944960pt;}
.ls15_c00012{letter-spacing:5.888000pt;}
.lsb_c00012{letter-spacing:9.067520pt;}
.lsa_c00012{letter-spacing:9.715200pt;}
.ls5_c00012{letter-spacing:12.305920pt;}
.ls9_c00012{letter-spacing:13.601280pt;}
.ls10_c00012{letter-spacing:14.190080pt;}
.lsf_c00012{letter-spacing:14.873088pt;}
.ls3_c00012{letter-spacing:15.485440pt;}
.ls0_c00012{letter-spacing:16.780800pt;}
.ls14_c00012{letter-spacing:17.428480pt;}
.ls13_c00012{letter-spacing:18.076160pt;}
.lsd_c00012{letter-spacing:20.608000pt;}
.lse_c00012{letter-spacing:20.690432pt;}
.ls11_c00012{letter-spacing:22.598144pt;}
.ls18_c00012{letter-spacing:27.002368pt;}
.ls16_c00012{letter-spacing:27.667712pt;}
.ls17_c00012{letter-spacing:27.673600pt;}
.ls19_c00012{letter-spacing:27.685376pt;}
.ls7_c00012{letter-spacing:39.802880pt;}
.ls8_c00012{letter-spacing:39.920640pt;}
.ws3_c00012{word-spacing:-15.552000pt;}
.ws6_c00012{word-spacing:-15.344640pt;}
.ws1_c00012{word-spacing:-13.601280pt;}
.ws5_c00012{word-spacing:-13.424640pt;}
.ws2_c00012{word-spacing:-13.306880pt;}
.ws4_c00012{word-spacing:-13.248000pt;}
.ws0_c00012{word-spacing:-13.071360pt;}
.wse_c00012{word-spacing:-0.294400pt;}
.ws7_c00012{word-spacing:-0.117760pt;}
.ws8_c00012{word-spacing:0.000000pt;}
.ws9_c00012{word-spacing:0.058880pt;}
.ws12_c00012{word-spacing:0.069120pt;}
.wsd_c00012{word-spacing:0.176640pt;}
.wsc_c00012{word-spacing:0.207360pt;}
.wsa_c00012{word-spacing:0.235520pt;}
.ws10_c00012{word-spacing:0.276480pt;}
.wsb_c00012{word-spacing:0.294400pt;}
.wsf_c00012{word-spacing:0.706560pt;}
.ws11_c00012{word-spacing:0.824320pt;}
._15_c00012{margin-left:-2.049024pt;}
._1_c00012{margin-left:-0.995072pt;}
._3_c00012{width:1.248256pt;}
._5_c00012{width:2.531840pt;}
._6_c00012{width:3.479808pt;}
._10_c00012{width:4.940032pt;}
._11_c00012{width:6.017536pt;}
._16_c00012{width:6.906624pt;}
._d_c00012{width:8.084224pt;}
._a_c00012{width:9.650432pt;}
._4_c00012{width:12.211712pt;}
._9_c00012{width:14.248960pt;}
._2_c00012{width:15.326464pt;}
._0_c00012{width:16.456960pt;}
._f_c00012{width:17.457920pt;}
._e_c00012{width:18.400000pt;}
._b_c00012{width:20.437248pt;}
._c_c00012{width:23.251712pt;}
._14_c00012{width:24.252672pt;}
._13_c00012{width:27.020032pt;}
._12_c00012{width:28.439040pt;}
._7_c00012{width:39.037440pt;}
._8_c00012{width:39.973632pt;}
.fs0_c00012{font-size:58.880000pt;}
.fs1_c00012{font-size:69.120000pt;}
.y0_c00012{bottom:0.000000pt;}
.y28_c00012{bottom:116.332160pt;}
.y27_c00012{bottom:136.969600pt;}
.y26_c00012{bottom:170.884480pt;}
.y25_c00012{bottom:191.360000pt;}
.y24_c00012{bottom:213.120000pt;}
.y23_c00012{bottom:249.617280pt;}
.y22_c00012{bottom:270.254720pt;}
.y21_c00012{bottom:290.892160pt;}
.y20_c00012{bottom:311.367680pt;}
.y1f_c00012{bottom:332.005120pt;}
.y1e_c00012{bottom:365.920000pt;}
.y1d_c00012{bottom:387.680000pt;}
.y1c_c00012{bottom:424.220800pt;}
.y1b_c00012{bottom:444.858240pt;}
.y1a_c00012{bottom:465.495680pt;}
.y19_c00012{bottom:485.971200pt;}
.y18_c00012{bottom:506.608640pt;}
.y17_c00012{bottom:527.246080pt;}
.y16_c00012{bottom:547.721600pt;}
.y15_c00012{bottom:568.359040pt;}
.y14_c00012{bottom:588.996480pt;}
.y13_c00012{bottom:609.472000pt;}
.y12_c00012{bottom:630.109440pt;}
.y11_c00012{bottom:650.746880pt;}
.y10_c00012{bottom:671.222400pt;}
.yf_c00012{bottom:691.859840pt;}
.ye_c00012{bottom:712.497280pt;}
.yd_c00012{bottom:733.134720pt;}
.yc_c00012{bottom:753.610240pt;}
.yb_c00012{bottom:774.247680pt;}
.ya_c00012{bottom:794.885120pt;}
.y9_c00012{bottom:828.800000pt;}
.y8_c00012{bottom:850.567040pt;}
.y7_c00012{bottom:874.880000pt;}
.y6_c00012{bottom:911.376640pt;}
.y5_c00012{bottom:931.852160pt;}
.y4_c00012{bottom:952.489600pt;}
.y3_c00012{bottom:973.127040pt;}
.y2_c00012{bottom:993.602560pt;}
.y1_c00012{bottom:1014.240000pt;}
.h4_c00012{height:48.558750pt;}
.h2_c00012{height:50.945000pt;}
.h3_c00012{height:57.003750pt;}
.h1_c00012{height:1122.666667pt;}
.h0_c00012{height:1122.720000pt;}
.w0_c00012{width:793.760000pt;}
.w1_c00012{width:794.000000pt;}
.x0_c00012{left:0.000000pt;}
.x1_c00012{left:94.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3dcfc42f59123bbcbb156b39.woff')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00013;src:url('chunks/assets/font_fd7a2c71fcc0632eb870fec6.woff')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00013;src:url('chunks/assets/font_b855f67b9a927112f06148e4.woff')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_9871ad6eb6156e174c148160.woff')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00013;src:url('chunks/assets/font_9190945e3d78b71048c2bb0b.woff')format("woff");}.ff5_c00013{font-family:ff5_c00013;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00013;src:url('chunks/assets/font_e9abe40eb4a4daa40516959b.woff')format("woff");}.ff6_c00013{font-family:ff6_c00013;line-height:1.043457;font-style: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);}
.m1_c00013{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls27_c00013{letter-spacing:-0.927360px;}
.ls2e_c00013{letter-spacing:-0.861120px;}
.ls25_c00013{letter-spacing:-0.794880px;}
.ls2a_c00013{letter-spacing:-0.728640px;}
.ls26_c00013{letter-spacing:-0.596160px;}
.ls29_c00013{letter-spacing:-0.397440px;}
.ls20_c00013{letter-spacing:-0.311040px;}
.ls23_c00013{letter-spacing:-0.264960px;}
.ls21_c00013{letter-spacing:-0.233280px;}
.ls22_c00013{letter-spacing:-0.198720px;}
.ls1e_c00013{letter-spacing:-0.077760px;}
.ls24_c00013{letter-spacing:-0.066240px;}
.ls1f_c00013{letter-spacing:0.000000px;}
.lsf_c00013{letter-spacing:0.006624px;}
.ls1d_c00013{letter-spacing:0.066240px;}
.ls2d_c00013{letter-spacing:0.077760px;}
.ls1_c00013{letter-spacing:0.132480px;}
.ls2b_c00013{letter-spacing:0.168480px;}
.ls19_c00013{letter-spacing:0.198720px;}
.lsd_c00013{letter-spacing:0.251712px;}
.ls28_c00013{letter-spacing:0.264960px;}
.ls2c_c00013{letter-spacing:0.311040px;}
.ls4_c00013{letter-spacing:0.331200px;}
.lse_c00013{letter-spacing:0.344448px;}
.ls14_c00013{letter-spacing:0.397440px;}
.ls0_c00013{letter-spacing:0.430560px;}
.ls15_c00013{letter-spacing:2.318400px;}
.ls18_c00013{letter-spacing:4.438080px;}
.ls8_c00013{letter-spacing:5.160096px;}
.ls7_c00013{letter-spacing:5.166720px;}
.ls9_c00013{letter-spacing:5.895360px;}
.ls1c_c00013{letter-spacing:6.624000px;}
.ls3_c00013{letter-spacing:7.352640px;}
.ls5_c00013{letter-spacing:8.081280px;}
.ls12_c00013{letter-spacing:13.115520px;}
.ls13_c00013{letter-spacing:13.161888px;}
.ls11_c00013{letter-spacing:13.195008px;}
.lsc_c00013{letter-spacing:13.844160px;}
.lsa_c00013{letter-spacing:13.910400px;}
.lsb_c00013{letter-spacing:13.917024px;}
.ls17_c00013{letter-spacing:15.963840px;}
.ls2_c00013{letter-spacing:18.149760px;}
.ls1a_c00013{letter-spacing:20.998080px;}
.ls1b_c00013{letter-spacing:21.726720px;}
.ls16_c00013{letter-spacing:22.455360px;}
.ls6_c00013{letter-spacing:30.404160px;}
.ls10_c00013{letter-spacing:35.438400px;}
.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;}
}
.wsc_c00013{word-spacing:-17.884800px;}
.wse_c00013{word-spacing:-17.651520px;}
.ws0_c00013{word-spacing:-17.340480px;}
.wsd_c00013{word-spacing:-17.262720px;}
.ws4_c00013{word-spacing:-15.301440px;}
.ws9_c00013{word-spacing:-15.102720px;}
.ws2_c00013{word-spacing:-14.970240px;}
.ws5_c00013{word-spacing:-14.904000px;}
.ws1_c00013{word-spacing:-14.771520px;}
.ws3_c00013{word-spacing:-14.705280px;}
.ws8_c00013{word-spacing:-14.572800px;}
.ws6_c00013{word-spacing:-14.374080px;}
.wsa_c00013{word-spacing:-14.241600px;}
.wsb_c00013{word-spacing:-14.175360px;}
.ws7_c00013{word-spacing:-14.042880px;}
.ws18_c00013{word-spacing:-0.331200px;}
.ws1a_c00013{word-spacing:-0.311040px;}
.ws19_c00013{word-spacing:-0.264960px;}
.ws1c_c00013{word-spacing:-0.168480px;}
.ws12_c00013{word-spacing:-0.132480px;}
.ws1d_c00013{word-spacing:-0.066240px;}
.ws10_c00013{word-spacing:0.000000px;}
.ws14_c00013{word-spacing:0.066240px;}
.wsf_c00013{word-spacing:0.077760px;}
.ws1b_c00013{word-spacing:0.198720px;}
.ws13_c00013{word-spacing:0.264960px;}
.ws11_c00013{word-spacing:0.311040px;}
.ws16_c00013{word-spacing:0.596160px;}
.ws15_c00013{word-spacing:0.794880px;}
.ws1e_c00013{word-spacing:0.861120px;}
.ws17_c00013{word-spacing:0.927360px;}
._d_c00013{margin-left:-2.695104px;}
._1_c00013{margin-left:-1.059840px;}
._0_c00013{width:1.111968px;}
._c_c00013{width:2.240640px;}
._9_c00013{width:4.587552px;}
._8_c00013{width:5.798592px;}
._4_c00013{width:7.723584px;}
._6_c00013{width:10.739232px;}
._7_c00013{width:11.744352px;}
._a_c00013{width:13.340736px;}
._f_c00013{width:16.070688px;}
._3_c00013{width:17.196768px;}
._2_c00013{width:18.295488px;}
._10_c00013{width:20.262816px;}
._11_c00013{width:21.325824px;}
._e_c00013{width:22.470336px;}
._5_c00013{width:30.623616px;}
._b_c00013{width:35.796096px;}
.fc2_c00013{color:rgb(54,95,145);}
.fc1_c00013{color:rgb(0,0,0);}
.fc0_c00013{color:rgb(79,129,189);}
.fs1_c00013{font-size:66.240000px;}
.fs0_c00013{font-size:77.760000px;}
.fs2_c00013{font-size:84.240000px;}
.y0_c00013{bottom:0.000000px;}
.y22_c00013{bottom:208.298880px;}
.y21_c00013{bottom:246.453120px;}
.y20_c00013{bottom:284.607360px;}
.y1f_c00013{bottom:307.824480px;}
.y1e_c00013{bottom:331.041600px;}
.y1d_c00013{bottom:354.076560px;}
.y1c_c00013{bottom:377.293680px;}
.y1b_c00013{bottom:400.510800px;}
.y1a_c00013{bottom:438.665040px;}
.y19_c00013{bottom:461.700000px;}
.y18_c00013{bottom:486.173520px;}
.y17_c00013{bottom:513.720000px;}
.y16_c00013{bottom:556.560000px;}
.y15_c00013{bottom:620.127360px;}
.y14_c00013{bottom:643.344480px;}
.y13_c00013{bottom:666.561600px;}
.y12_c00013{bottom:689.596560px;}
.y11_c00013{bottom:712.813680px;}
.y10_c00013{bottom:736.030800px;}
.yf_c00013{bottom:759.065760px;}
.ye_c00013{bottom:797.220000px;}
.yd_c00013{bottom:821.880000px;}
.yc_c00013{bottom:862.955280px;}
.yb_c00013{bottom:885.990240px;}
.ya_c00013{bottom:909.207360px;}
.y9_c00013{bottom:932.424480px;}
.y8_c00013{bottom:955.459440px;}
.y7_c00013{bottom:978.676560px;}
.y6_c00013{bottom:1001.893680px;}
.y5_c00013{bottom:1024.928640px;}
.y4_c00013{bottom:1048.145760px;}
.y3_c00013{bottom:1086.300000px;}
.y2_c00013{bottom:1110.787920px;}
.y1_c00013{bottom:1138.140000px;}
.h3_c00013{height:54.628594px;}
.h4_c00013{height:57.313125px;}
.h2_c00013{height:64.129219px;}
.h5_c00013{height:69.473320px;}
.h1_c00013{height:1263.000000px;}
.h0_c00013{height:1263.060000px;}
.w0_c00013{width:892.980000px;}
.w1_c00013{width:893.250000px;}
.x0_c00013{left:0.000000px;}
.x1_c00013{left:106.380000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls27_c00013{letter-spacing:-0.824320pt;}
.ls2e_c00013{letter-spacing:-0.765440pt;}
.ls25_c00013{letter-spacing:-0.706560pt;}
.ls2a_c00013{letter-spacing:-0.647680pt;}
.ls26_c00013{letter-spacing:-0.529920pt;}
.ls29_c00013{letter-spacing:-0.353280pt;}
.ls20_c00013{letter-spacing:-0.276480pt;}
.ls23_c00013{letter-spacing:-0.235520pt;}
.ls21_c00013{letter-spacing:-0.207360pt;}
.ls22_c00013{letter-spacing:-0.176640pt;}
.ls1e_c00013{letter-spacing:-0.069120pt;}
.ls24_c00013{letter-spacing:-0.058880pt;}
.ls1f_c00013{letter-spacing:0.000000pt;}
.lsf_c00013{letter-spacing:0.005888pt;}
.ls1d_c00013{letter-spacing:0.058880pt;}
.ls2d_c00013{letter-spacing:0.069120pt;}
.ls1_c00013{letter-spacing:0.117760pt;}
.ls2b_c00013{letter-spacing:0.149760pt;}
.ls19_c00013{letter-spacing:0.176640pt;}
.lsd_c00013{letter-spacing:0.223744pt;}
.ls28_c00013{letter-spacing:0.235520pt;}
.ls2c_c00013{letter-spacing:0.276480pt;}
.ls4_c00013{letter-spacing:0.294400pt;}
.lse_c00013{letter-spacing:0.306176pt;}
.ls14_c00013{letter-spacing:0.353280pt;}
.ls0_c00013{letter-spacing:0.382720pt;}
.ls15_c00013{letter-spacing:2.060800pt;}
.ls18_c00013{letter-spacing:3.944960pt;}
.ls8_c00013{letter-spacing:4.586752pt;}
.ls7_c00013{letter-spacing:4.592640pt;}
.ls9_c00013{letter-spacing:5.240320pt;}
.ls1c_c00013{letter-spacing:5.888000pt;}
.ls3_c00013{letter-spacing:6.535680pt;}
.ls5_c00013{letter-spacing:7.183360pt;}
.ls12_c00013{letter-spacing:11.658240pt;}
.ls13_c00013{letter-spacing:11.699456pt;}
.ls11_c00013{letter-spacing:11.728896pt;}
.lsc_c00013{letter-spacing:12.305920pt;}
.lsa_c00013{letter-spacing:12.364800pt;}
.lsb_c00013{letter-spacing:12.370688pt;}
.ls17_c00013{letter-spacing:14.190080pt;}
.ls2_c00013{letter-spacing:16.133120pt;}
.ls1a_c00013{letter-spacing:18.664960pt;}
.ls1b_c00013{letter-spacing:19.312640pt;}
.ls16_c00013{letter-spacing:19.960320pt;}
.ls6_c00013{letter-spacing:27.025920pt;}
.ls10_c00013{letter-spacing:31.500800pt;}
.wsc_c00013{word-spacing:-15.897600pt;}
.wse_c00013{word-spacing:-15.690240pt;}
.ws0_c00013{word-spacing:-15.413760pt;}
.wsd_c00013{word-spacing:-15.344640pt;}
.ws4_c00013{word-spacing:-13.601280pt;}
.ws9_c00013{word-spacing:-13.424640pt;}
.ws2_c00013{word-spacing:-13.306880pt;}
.ws5_c00013{word-spacing:-13.248000pt;}
.ws1_c00013{word-spacing:-13.130240pt;}
.ws3_c00013{word-spacing:-13.071360pt;}
.ws8_c00013{word-spacing:-12.953600pt;}
.ws6_c00013{word-spacing:-12.776960pt;}
.wsa_c00013{word-spacing:-12.659200pt;}
.wsb_c00013{word-spacing:-12.600320pt;}
.ws7_c00013{word-spacing:-12.482560pt;}
.ws18_c00013{word-spacing:-0.294400pt;}
.ws1a_c00013{word-spacing:-0.276480pt;}
.ws19_c00013{word-spacing:-0.235520pt;}
.ws1c_c00013{word-spacing:-0.149760pt;}
.ws12_c00013{word-spacing:-0.117760pt;}
.ws1d_c00013{word-spacing:-0.058880pt;}
.ws10_c00013{word-spacing:0.000000pt;}
.ws14_c00013{word-spacing:0.058880pt;}
.wsf_c00013{word-spacing:0.069120pt;}
.ws1b_c00013{word-spacing:0.176640pt;}
.ws13_c00013{word-spacing:0.235520pt;}
.ws11_c00013{word-spacing:0.276480pt;}
.ws16_c00013{word-spacing:0.529920pt;}
.ws15_c00013{word-spacing:0.706560pt;}
.ws1e_c00013{word-spacing:0.765440pt;}
.ws17_c00013{word-spacing:0.824320pt;}
._d_c00013{margin-left:-2.395648pt;}
._1_c00013{margin-left:-0.942080pt;}
._0_c00013{width:0.988416pt;}
._c_c00013{width:1.991680pt;}
._9_c00013{width:4.077824pt;}
._8_c00013{width:5.154304pt;}
._4_c00013{width:6.865408pt;}
._6_c00013{width:9.545984pt;}
._7_c00013{width:10.439424pt;}
._a_c00013{width:11.858432pt;}
._f_c00013{width:14.285056pt;}
._3_c00013{width:15.286016pt;}
._2_c00013{width:16.262656pt;}
._10_c00013{width:18.011392pt;}
._11_c00013{width:18.956288pt;}
._e_c00013{width:19.973632pt;}
._5_c00013{width:27.220992pt;}
._b_c00013{width:31.818752pt;}
.fs1_c00013{font-size:58.880000pt;}
.fs0_c00013{font-size:69.120000pt;}
.fs2_c00013{font-size:74.880000pt;}
.y0_c00013{bottom:0.000000pt;}
.y22_c00013{bottom:185.154560pt;}
.y21_c00013{bottom:219.069440pt;}
.y20_c00013{bottom:252.984320pt;}
.y1f_c00013{bottom:273.621760pt;}
.y1e_c00013{bottom:294.259200pt;}
.y1d_c00013{bottom:314.734720pt;}
.y1c_c00013{bottom:335.372160pt;}
.y1b_c00013{bottom:356.009600pt;}
.y1a_c00013{bottom:389.924480pt;}
.y19_c00013{bottom:410.400000pt;}
.y18_c00013{bottom:432.154240pt;}
.y17_c00013{bottom:456.640000pt;}
.y16_c00013{bottom:494.720000pt;}
.y15_c00013{bottom:551.224320pt;}
.y14_c00013{bottom:571.861760pt;}
.y13_c00013{bottom:592.499200pt;}
.y12_c00013{bottom:612.974720pt;}
.y11_c00013{bottom:633.612160pt;}
.y10_c00013{bottom:654.249600pt;}
.yf_c00013{bottom:674.725120pt;}
.ye_c00013{bottom:708.640000pt;}
.yd_c00013{bottom:730.560000pt;}
.yc_c00013{bottom:767.071360pt;}
.yb_c00013{bottom:787.546880pt;}
.ya_c00013{bottom:808.184320pt;}
.y9_c00013{bottom:828.821760pt;}
.y8_c00013{bottom:849.297280pt;}
.y7_c00013{bottom:869.934720pt;}
.y6_c00013{bottom:890.572160pt;}
.y5_c00013{bottom:911.047680pt;}
.y4_c00013{bottom:931.685120pt;}
.y3_c00013{bottom:965.600000pt;}
.y2_c00013{bottom:987.367040pt;}
.y1_c00013{bottom:1011.680000pt;}
.h3_c00013{height:48.558750pt;}
.h4_c00013{height:50.945000pt;}
.h2_c00013{height:57.003750pt;}
.h5_c00013{height:61.754062pt;}
.h1_c00013{height:1122.666667pt;}
.h0_c00013{height:1122.720000pt;}
.w0_c00013{width:793.760000pt;}
.w1_c00013{width:794.000000pt;}
.x0_c00013{left:0.000000pt;}
.x1_c00013{left:94.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a4b17e5bcc745a8a55f44fd8.woff')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00014;src:url('chunks/assets/font_0ac0249f43b55e15ca26319e.woff')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00014;src:url('chunks/assets/font_4e9a4238f76081f4fb753a55.woff')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00014;src:url('chunks/assets/font_6fb5287efb721b1650173163.woff')format("woff");}.ff4_c00014{font-family:ff4_c00014;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00014;src:url('chunks/assets/font_3fdd682d4eda94685734246b.woff')format("woff");}.ff5_c00014{font-family:ff5_c00014;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00014;src:url('chunks/assets/font_4cf8907c763c727050e25555.woff')format("woff");}.ff6_c00014{font-family:ff6_c00014;line-height:1.043457;font-style: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);}
.m1_c00014{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls15_c00014{letter-spacing:-0.927360px;}
.ls18_c00014{letter-spacing:-0.794880px;}
.ls1a_c00014{letter-spacing:-0.463680px;}
.ls13_c00014{letter-spacing:-0.311040px;}
.ls16_c00014{letter-spacing:-0.264960px;}
.ls14_c00014{letter-spacing:-0.198720px;}
.ls19_c00014{letter-spacing:-0.077760px;}
.ls17_c00014{letter-spacing:-0.066240px;}
.ls11_c00014{letter-spacing:0.000000px;}
.ls12_c00014{letter-spacing:0.084240px;}
.ls1_c00014{letter-spacing:0.132480px;}
.ls10_c00014{letter-spacing:0.168480px;}
.lsb_c00014{letter-spacing:0.198720px;}
.ls4_c00014{letter-spacing:0.331200px;}
.ls9_c00014{letter-spacing:0.397440px;}
.ls5_c00014{letter-spacing:0.861120px;}
.lsa_c00014{letter-spacing:3.047040px;}
.ls6_c00014{letter-spacing:6.007968px;}
.lsf_c00014{letter-spacing:6.624000px;}
.ls2_c00014{letter-spacing:9.538560px;}
.lsd_c00014{letter-spacing:11.658240px;}
.ls3_c00014{letter-spacing:13.115520px;}
.lsc_c00014{letter-spacing:13.844160px;}
.lse_c00014{letter-spacing:15.301440px;}
.ls8_c00014{letter-spacing:28.218240px;}
.ls7_c00014{letter-spacing:28.946880px;}
.ls0_c00014{letter-spacing:31.861440px;}
.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:-19.122480px;}
.ws6_c00014{word-spacing:-17.262720px;}
.ws8_c00014{word-spacing:-15.301440px;}
.ws5_c00014{word-spacing:-15.102720px;}
.ws3_c00014{word-spacing:-14.970240px;}
.ws7_c00014{word-spacing:-14.904000px;}
.ws2_c00014{word-spacing:-14.705280px;}
.ws4_c00014{word-spacing:-14.175360px;}
.ws1_c00014{word-spacing:-14.042880px;}
.ws9_c00014{word-spacing:-0.505440px;}
.wsf_c00014{word-spacing:-0.331200px;}
.ws10_c00014{word-spacing:-0.132480px;}
.wsa_c00014{word-spacing:0.000000px;}
.wse_c00014{word-spacing:0.066240px;}
.ws11_c00014{word-spacing:0.077760px;}
.wsc_c00014{word-spacing:0.198720px;}
.wsd_c00014{word-spacing:0.264960px;}
.wsb_c00014{word-spacing:0.311040px;}
.ws12_c00014{word-spacing:0.463680px;}
.ws13_c00014{word-spacing:0.794880px;}
._b_c00014{margin-left:-4.697928px;}
._4_c00014{margin-left:-2.872512px;}
._0_c00014{margin-left:-1.305720px;}
._1_c00014{width:1.391904px;}
._c_c00014{width:2.907936px;}
._9_c00014{width:4.824648px;}
._8_c00014{width:6.186816px;}
._e_c00014{width:7.279704px;}
._5_c00014{width:9.578304px;}
._d_c00014{width:11.340216px;}
._6_c00014{width:12.923424px;}
._7_c00014{width:20.163456px;}
._a_c00014{width:29.410560px;}
._2_c00014{width:31.383648px;}
._3_c00014{width:32.436864px;}
._f_c00014{width:848.998080px;}
.fc2_c00014{color:rgb(0,0,0);}
.fc1_c00014{color:rgb(79,129,189);}
.fc0_c00014{color:rgb(54,95,145);}
.fs2_c00014{font-size:66.240000px;}
.fs1_c00014{font-size:77.760000px;}
.fs0_c00014{font-size:84.240000px;}
.y0_c00014{bottom:0.000000px;}
.y1f_c00014{bottom:322.233120px;}
.y1e_c00014{bottom:360.387360px;}
.y1d_c00014{bottom:383.604480px;}
.y1c_c00014{bottom:406.639440px;}
.y1b_c00014{bottom:429.856560px;}
.y1a_c00014{bottom:453.073680px;}
.y19_c00014{bottom:476.290800px;}
.y18_c00014{bottom:499.325760px;}
.y17_c00014{bottom:537.480000px;}
.y16_c00014{bottom:561.960000px;}
.y15_c00014{bottom:603.011520px;}
.y14_c00014{bottom:626.228640px;}
.y13_c00014{bottom:649.445760px;}
.y12_c00014{bottom:687.600000px;}
.y11_c00014{bottom:712.080000px;}
.y10_c00014{bottom:753.168960px;}
.yf_c00014{bottom:776.203920px;}
.ye_c00014{bottom:799.421040px;}
.yd_c00014{bottom:822.638160px;}
.yc_c00014{bottom:845.855280px;}
.yb_c00014{bottom:868.890240px;}
.ya_c00014{bottom:892.107360px;}
.y9_c00014{bottom:915.324480px;}
.y8_c00014{bottom:938.359440px;}
.y7_c00014{bottom:961.576560px;}
.y6_c00014{bottom:984.793680px;}
.y5_c00014{bottom:1007.828640px;}
.y4_c00014{bottom:1031.045760px;}
.y3_c00014{bottom:1069.200000px;}
.y2_c00014{bottom:1093.680000px;}
.y1_c00014{bottom:1136.700000px;}
.h4_c00014{height:54.628594px;}
.h5_c00014{height:57.313125px;}
.h3_c00014{height:64.129219px;}
.h2_c00014{height:69.473320px;}
.h1_c00014{height:1263.000000px;}
.h0_c00014{height:1263.060000px;}
.w0_c00014{width:892.980000px;}
.w1_c00014{width:893.250000px;}
.x0_c00014{left:0.000000px;}
.x1_c00014{left:106.380000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls15_c00014{letter-spacing:-0.824320pt;}
.ls18_c00014{letter-spacing:-0.706560pt;}
.ls1a_c00014{letter-spacing:-0.412160pt;}
.ls13_c00014{letter-spacing:-0.276480pt;}
.ls16_c00014{letter-spacing:-0.235520pt;}
.ls14_c00014{letter-spacing:-0.176640pt;}
.ls19_c00014{letter-spacing:-0.069120pt;}
.ls17_c00014{letter-spacing:-0.058880pt;}
.ls11_c00014{letter-spacing:0.000000pt;}
.ls12_c00014{letter-spacing:0.074880pt;}
.ls1_c00014{letter-spacing:0.117760pt;}
.ls10_c00014{letter-spacing:0.149760pt;}
.lsb_c00014{letter-spacing:0.176640pt;}
.ls4_c00014{letter-spacing:0.294400pt;}
.ls9_c00014{letter-spacing:0.353280pt;}
.ls5_c00014{letter-spacing:0.765440pt;}
.lsa_c00014{letter-spacing:2.708480pt;}
.ls6_c00014{letter-spacing:5.340416pt;}
.lsf_c00014{letter-spacing:5.888000pt;}
.ls2_c00014{letter-spacing:8.478720pt;}
.lsd_c00014{letter-spacing:10.362880pt;}
.ls3_c00014{letter-spacing:11.658240pt;}
.lsc_c00014{letter-spacing:12.305920pt;}
.lse_c00014{letter-spacing:13.601280pt;}
.ls8_c00014{letter-spacing:25.082880pt;}
.ls7_c00014{letter-spacing:25.730560pt;}
.ls0_c00014{letter-spacing:28.321280pt;}
.ws0_c00014{word-spacing:-16.997760pt;}
.ws6_c00014{word-spacing:-15.344640pt;}
.ws8_c00014{word-spacing:-13.601280pt;}
.ws5_c00014{word-spacing:-13.424640pt;}
.ws3_c00014{word-spacing:-13.306880pt;}
.ws7_c00014{word-spacing:-13.248000pt;}
.ws2_c00014{word-spacing:-13.071360pt;}
.ws4_c00014{word-spacing:-12.600320pt;}
.ws1_c00014{word-spacing:-12.482560pt;}
.ws9_c00014{word-spacing:-0.449280pt;}
.wsf_c00014{word-spacing:-0.294400pt;}
.ws10_c00014{word-spacing:-0.117760pt;}
.wsa_c00014{word-spacing:0.000000pt;}
.wse_c00014{word-spacing:0.058880pt;}
.ws11_c00014{word-spacing:0.069120pt;}
.wsc_c00014{word-spacing:0.176640pt;}
.wsd_c00014{word-spacing:0.235520pt;}
.wsb_c00014{word-spacing:0.276480pt;}
.ws12_c00014{word-spacing:0.412160pt;}
.ws13_c00014{word-spacing:0.706560pt;}
._b_c00014{margin-left:-4.175936pt;}
._4_c00014{margin-left:-2.553344pt;}
._0_c00014{margin-left:-1.160640pt;}
._1_c00014{width:1.237248pt;}
._c_c00014{width:2.584832pt;}
._9_c00014{width:4.288576pt;}
._8_c00014{width:5.499392pt;}
._e_c00014{width:6.470848pt;}
._5_c00014{width:8.514048pt;}
._d_c00014{width:10.080192pt;}
._6_c00014{width:11.487488pt;}
._7_c00014{width:17.923072pt;}
._a_c00014{width:26.142720pt;}
._2_c00014{width:27.896576pt;}
._3_c00014{width:28.832768pt;}
._f_c00014{width:754.664960pt;}
.fs2_c00014{font-size:58.880000pt;}
.fs1_c00014{font-size:69.120000pt;}
.fs0_c00014{font-size:74.880000pt;}
.y0_c00014{bottom:0.000000pt;}
.y1f_c00014{bottom:286.429440pt;}
.y1e_c00014{bottom:320.344320pt;}
.y1d_c00014{bottom:340.981760pt;}
.y1c_c00014{bottom:361.457280pt;}
.y1b_c00014{bottom:382.094720pt;}
.y1a_c00014{bottom:402.732160pt;}
.y19_c00014{bottom:423.369600pt;}
.y18_c00014{bottom:443.845120pt;}
.y17_c00014{bottom:477.760000pt;}
.y16_c00014{bottom:499.520000pt;}
.y15_c00014{bottom:536.010240pt;}
.y14_c00014{bottom:556.647680pt;}
.y13_c00014{bottom:577.285120pt;}
.y12_c00014{bottom:611.200000pt;}
.y11_c00014{bottom:632.960000pt;}
.y10_c00014{bottom:669.483520pt;}
.yf_c00014{bottom:689.959040pt;}
.ye_c00014{bottom:710.596480pt;}
.yd_c00014{bottom:731.233920pt;}
.yc_c00014{bottom:751.871360pt;}
.yb_c00014{bottom:772.346880pt;}
.ya_c00014{bottom:792.984320pt;}
.y9_c00014{bottom:813.621760pt;}
.y8_c00014{bottom:834.097280pt;}
.y7_c00014{bottom:854.734720pt;}
.y6_c00014{bottom:875.372160pt;}
.y5_c00014{bottom:895.847680pt;}
.y4_c00014{bottom:916.485120pt;}
.y3_c00014{bottom:950.400000pt;}
.y2_c00014{bottom:972.160000pt;}
.y1_c00014{bottom:1010.400000pt;}
.h4_c00014{height:48.558750pt;}
.h5_c00014{height:50.945000pt;}
.h3_c00014{height:57.003750pt;}
.h2_c00014{height:61.754062pt;}
.h1_c00014{height:1122.666667pt;}
.h0_c00014{height:1122.720000pt;}
.w0_c00014{width:793.760000pt;}
.w1_c00014{width:794.000000pt;}
.x0_c00014{left:0.000000pt;}
.x1_c00014{left:94.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_abed03ddcf83cc1a11297795.woff')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_3e953058a071d30d0e2ffcf8.woff')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00015;src:url('chunks/assets/font_f468d72e3682570f0f0f473d.woff')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:1.087402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00015;src:url('chunks/assets/font_49ba4f41f7781b444f6643ed.woff')format("woff");}.ff4_c00015{font-family:ff4_c00015;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00015;src:url('chunks/assets/font_a247dd844b172985994e54f6.woff')format("woff");}.ff5_c00015{font-family:ff5_c00015;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls4_c00015{letter-spacing:-0.336960px;}
.lsa_c00015{letter-spacing:-0.264960px;}
.ls3_c00015{letter-spacing:-0.252720px;}
.ls8_c00015{letter-spacing:-0.155520px;}
.ls7_c00015{letter-spacing:-0.077760px;}
.ls5_c00015{letter-spacing:0.000000px;}
.ls9_c00015{letter-spacing:0.066240px;}
.lsc_c00015{letter-spacing:0.132480px;}
.ls6_c00015{letter-spacing:0.168480px;}
.ls0_c00015{letter-spacing:0.198720px;}
.lsb_c00015{letter-spacing:0.331200px;}
.ls1_c00015{letter-spacing:168.050880px;}
.ls2_c00015{letter-spacing:849.625920px;}
.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:-19.206720px;}
.ws1_c00015{word-spacing:-17.418240px;}
.ws3_c00015{word-spacing:-14.572800px;}
.ws2_c00015{word-spacing:-14.307840px;}
.wsa_c00015{word-spacing:-0.331200px;}
.ws7_c00015{word-spacing:-0.233280px;}
.wsb_c00015{word-spacing:-0.132480px;}
.ws4_c00015{word-spacing:-0.084240px;}
.ws8_c00015{word-spacing:-0.066240px;}
.ws6_c00015{word-spacing:0.000000px;}
.ws9_c00015{word-spacing:0.264960px;}
.ws5_c00015{word-spacing:0.336960px;}
._9_c00015{margin-left:-3.143088px;}
._1_c00015{margin-left:-1.752192px;}
._0_c00015{width:1.061424px;}
._d_c00015{width:4.563936px;}
._c_c00015{width:5.653728px;}
._8_c00015{width:7.687008px;}
._7_c00015{width:9.409536px;}
._f_c00015{width:10.754208px;}
._e_c00015{width:11.880288px;}
._6_c00015{width:13.443840px;}
._5_c00015{width:19.036080px;}
._4_c00015{width:20.286144px;}
._2_c00015{width:25.396704px;}
._3_c00015{width:26.473248px;}
._b_c00015{width:35.941824px;}
._a_c00015{width:37.008576px;}
.fc2_c00015{color:rgb(0,0,0);}
.fc1_c00015{color:rgb(79,129,189);}
.fc0_c00015{color:rgb(54,95,145);}
.fs2_c00015{font-size:66.240000px;}
.fs1_c00015{font-size:77.760000px;}
.fs0_c00015{font-size:84.240000px;}
.y0_c00015{bottom:0.000000px;}
.y1f_c00015{bottom:453.054240px;}
.y1e_c00015{bottom:493.013520px;}
.y1d_c00015{bottom:530.273520px;}
.y1c_c00015{bottom:567.533520px;}
.y1b_c00015{bottom:586.974960px;}
.y1a_c00015{bottom:606.416400px;}
.y19_c00015{bottom:625.675680px;}
.y18_c00015{bottom:645.117120px;}
.y17_c00015{bottom:664.376400px;}
.y16_c00015{bottom:683.817840px;}
.y15_c00015{bottom:703.077120px;}
.y14_c00015{bottom:722.518560px;}
.y13_c00015{bottom:741.777840px;}
.y12_c00015{bottom:761.219280px;}
.y11_c00015{bottom:780.478560px;}
.y10_c00015{bottom:799.737840px;}
.yf_c00015{bottom:819.179280px;}
.ye_c00015{bottom:838.438560px;}
.yd_c00015{bottom:857.880000px;}
.yc_c00015{bottom:877.139280px;}
.yb_c00015{bottom:896.580720px;}
.ya_c00015{bottom:915.840000px;}
.y9_c00015{bottom:935.281440px;}
.y8_c00015{bottom:954.540720px;}
.y7_c00015{bottom:973.982160px;}
.y6_c00015{bottom:993.241440px;}
.y5_c00015{bottom:1012.682880px;}
.y4_c00015{bottom:1031.942160px;}
.y3_c00015{bottom:1069.020000px;}
.y2_c00015{bottom:1093.680000px;}
.y1_c00015{bottom:1136.700000px;}
.h4_c00015{height:57.571875px;}
.h5_c00015{height:57.636562px;}
.h6_c00015{height:59.383125px;}
.h3_c00015{height:64.129219px;}
.h7_c00015{height:64.152259px;}
.h2_c00015{height:69.473320px;}
.h1_c00015{height:1263.000000px;}
.h0_c00015{height:1263.060000px;}
.w0_c00015{width:892.980000px;}
.w1_c00015{width:893.250000px;}
.x0_c00015{left:0.000000px;}
.x1_c00015{left:106.380000px;}
.x2_c00015{left:133.356240px;}
.x3_c00015{left:187.358400px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls4_c00015{letter-spacing:-0.299520pt;}
.lsa_c00015{letter-spacing:-0.235520pt;}
.ls3_c00015{letter-spacing:-0.224640pt;}
.ls8_c00015{letter-spacing:-0.138240pt;}
.ls7_c00015{letter-spacing:-0.069120pt;}
.ls5_c00015{letter-spacing:0.000000pt;}
.ls9_c00015{letter-spacing:0.058880pt;}
.lsc_c00015{letter-spacing:0.117760pt;}
.ls6_c00015{letter-spacing:0.149760pt;}
.ls0_c00015{letter-spacing:0.176640pt;}
.lsb_c00015{letter-spacing:0.294400pt;}
.ls1_c00015{letter-spacing:149.378560pt;}
.ls2_c00015{letter-spacing:755.223040pt;}
.ws0_c00015{word-spacing:-17.072640pt;}
.ws1_c00015{word-spacing:-15.482880pt;}
.ws3_c00015{word-spacing:-12.953600pt;}
.ws2_c00015{word-spacing:-12.718080pt;}
.wsa_c00015{word-spacing:-0.294400pt;}
.ws7_c00015{word-spacing:-0.207360pt;}
.wsb_c00015{word-spacing:-0.117760pt;}
.ws4_c00015{word-spacing:-0.074880pt;}
.ws8_c00015{word-spacing:-0.058880pt;}
.ws6_c00015{word-spacing:0.000000pt;}
.ws9_c00015{word-spacing:0.235520pt;}
.ws5_c00015{word-spacing:0.299520pt;}
._9_c00015{margin-left:-2.793856pt;}
._1_c00015{margin-left:-1.557504pt;}
._0_c00015{width:0.943488pt;}
._d_c00015{width:4.056832pt;}
._c_c00015{width:5.025536pt;}
._8_c00015{width:6.832896pt;}
._7_c00015{width:8.364032pt;}
._f_c00015{width:9.559296pt;}
._e_c00015{width:10.560256pt;}
._6_c00015{width:11.950080pt;}
._5_c00015{width:16.920960pt;}
._4_c00015{width:18.032128pt;}
._2_c00015{width:22.574848pt;}
._3_c00015{width:23.531776pt;}
._b_c00015{width:31.948288pt;}
._a_c00015{width:32.896512pt;}
.fs2_c00015{font-size:58.880000pt;}
.fs1_c00015{font-size:69.120000pt;}
.fs0_c00015{font-size:74.880000pt;}
.y0_c00015{bottom:0.000000pt;}
.y1f_c00015{bottom:402.714880pt;}
.y1e_c00015{bottom:438.234240pt;}
.y1d_c00015{bottom:471.354240pt;}
.y1c_c00015{bottom:504.474240pt;}
.y1b_c00015{bottom:521.755520pt;}
.y1a_c00015{bottom:539.036800pt;}
.y19_c00015{bottom:556.156160pt;}
.y18_c00015{bottom:573.437440pt;}
.y17_c00015{bottom:590.556800pt;}
.y16_c00015{bottom:607.838080pt;}
.y15_c00015{bottom:624.957440pt;}
.y14_c00015{bottom:642.238720pt;}
.y13_c00015{bottom:659.358080pt;}
.y12_c00015{bottom:676.639360pt;}
.y11_c00015{bottom:693.758720pt;}
.y10_c00015{bottom:710.878080pt;}
.yf_c00015{bottom:728.159360pt;}
.ye_c00015{bottom:745.278720pt;}
.yd_c00015{bottom:762.560000pt;}
.yc_c00015{bottom:779.679360pt;}
.yb_c00015{bottom:796.960640pt;}
.ya_c00015{bottom:814.080000pt;}
.y9_c00015{bottom:831.361280pt;}
.y8_c00015{bottom:848.480640pt;}
.y7_c00015{bottom:865.761920pt;}
.y6_c00015{bottom:882.881280pt;}
.y5_c00015{bottom:900.162560pt;}
.y4_c00015{bottom:917.281920pt;}
.y3_c00015{bottom:950.240000pt;}
.y2_c00015{bottom:972.160000pt;}
.y1_c00015{bottom:1010.400000pt;}
.h4_c00015{height:51.175000pt;}
.h5_c00015{height:51.232500pt;}
.h6_c00015{height:52.785000pt;}
.h3_c00015{height:57.003750pt;}
.h7_c00015{height:57.024230pt;}
.h2_c00015{height:61.754062pt;}
.h1_c00015{height:1122.666667pt;}
.h0_c00015{height:1122.720000pt;}
.w0_c00015{width:793.760000pt;}
.w1_c00015{width:794.000000pt;}
.x0_c00015{left:0.000000pt;}
.x1_c00015{left:94.560000pt;}
.x2_c00015{left:118.538880pt;}
.x3_c00015{left:166.540800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70a5697cf62762da8d3d2e94.woff')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.048340;font-style:normal;font-weight:normal;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_ec068ae232d9beed94d22b2c.woff')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.048340;font-style:normal;font-weight:normal;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00016;src:url('chunks/assets/font_941cbd784766224d2295089a.woff')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:1.048340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00016;src:url('chunks/assets/font_247de8b59772a92c99385d19.woff')format("woff");}.ff5_c00016{font-family:ff5_c00016;line-height:1.048340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00016;src:url('chunks/assets/font_c8f50acfbdb53e0c9925cde0.woff')format("woff");}.ff6_c00016{font-family:ff6_c00016;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00016;src:url('chunks/assets/font_96a44a90688526f982b54d3d.woff')format("woff");}.ff7_c00016{font-family:ff7_c00016;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00016{letter-spacing:-0.311040px;}
.ls8_c00016{letter-spacing:-0.207600px;}
.lsa_c00016{letter-spacing:-0.155400px;}
.ls7_c00016{letter-spacing:-0.057600px;}
.lsb_c00016{letter-spacing:-0.008400px;}
.ls5_c00016{letter-spacing:0.000000px;}
.ls6_c00016{letter-spacing:0.141000px;}
.ls1_c00016{letter-spacing:0.155520px;}
.lsc_c00016{letter-spacing:0.233400px;}
.ls4_c00016{letter-spacing:0.254880px;}
.ls3_c00016{letter-spacing:0.262080px;}
.ls9_c00016{letter-spacing:0.288000px;}
.ls2_c00016{letter-spacing:0.403200px;}
.ls0_c00016{letter-spacing:77.505600px;}
.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:-17.353440px;}
.ws1_c00016{word-spacing:-13.645440px;}
.ws3_c00016{word-spacing:-13.536000px;}
.ws2_c00016{word-spacing:-13.248000px;}
.ws7_c00016{word-spacing:0.000000px;}
.ws8_c00016{word-spacing:0.311040px;}
.ws5_c00016{word-spacing:147.097200px;}
.ws6_c00016{word-spacing:150.213720px;}
.ws4_c00016{word-spacing:151.711320px;}
._c_c00016{margin-left:-2.848320px;}
._0_c00016{margin-left:-1.095036px;}
._3_c00016{width:1.258825px;}
._7_c00016{width:2.355251px;}
._9_c00016{width:3.775812px;}
._1_c00016{width:5.365175px;}
._2_c00016{width:6.757209px;}
._b_c00016{width:8.080816px;}
._d_c00016{width:9.207625px;}
._8_c00016{width:10.664375px;}
._a_c00016{width:11.794739px;}
._6_c00016{width:14.969843px;}
._4_c00016{width:37.491641px;}
._5_c00016{width:38.729271px;}
.fc1_c00016{color:rgb(79,129,189);}
.fc0_c00016{color:rgb(0,0,0);}
.fs1_c00016{font-size:66.240000px;}
.fs2_c00016{font-size:77.760000px;}
.fs0_c00016{font-size:84.240000px;}
.y0_c00016{bottom:0.000000px;}
.y2c_c00016{bottom:119.340000px;}
.y2b_c00016{bottom:140.400000px;}
.y2a_c00016{bottom:160.560000px;}
.y29_c00016{bottom:200.910000px;}
.y28_c00016{bottom:221.970000px;}
.y27_c00016{bottom:243.030000px;}
.y26_c00016{bottom:263.910000px;}
.y25_c00016{bottom:284.970000px;}
.y24_c00016{bottom:306.030000px;}
.y23_c00016{bottom:327.090000px;}
.y22_c00016{bottom:347.970000px;}
.y21_c00016{bottom:368.130000px;}
.y20_c00016{bottom:388.290000px;}
.y1f_c00016{bottom:409.350000px;}
.y1e_c00016{bottom:429.555000px;}
.y1d_c00016{bottom:449.715000px;}
.y1c_c00016{bottom:490.035000px;}
.y1b_c00016{bottom:510.015000px;}
.y1a_c00016{bottom:530.175000px;}
.y19_c00016{bottom:550.335000px;}
.y18_c00016{bottom:570.495000px;}
.y17_c00016{bottom:590.655000px;}
.y16_c00016{bottom:610.815000px;}
.y15_c00016{bottom:630.975000px;}
.y14_c00016{bottom:671.325000px;}
.y13_c00016{bottom:691.485000px;}
.y12_c00016{bottom:711.465000px;}
.y11_c00016{bottom:731.625000px;}
.y10_c00016{bottom:751.785000px;}
.yf_c00016{bottom:771.945000px;}
.ye_c00016{bottom:792.105000px;}
.yd_c00016{bottom:812.265000px;}
.yc_c00016{bottom:832.425000px;}
.yb_c00016{bottom:852.585000px;}
.ya_c00016{bottom:872.745000px;}
.y9_c00016{bottom:912.930000px;}
.y8_c00016{bottom:933.090000px;}
.y7_c00016{bottom:953.250000px;}
.y6_c00016{bottom:993.570000px;}
.y5_c00016{bottom:1013.730000px;}
.y4_c00016{bottom:1033.890000px;}
.y3_c00016{bottom:1054.050000px;}
.y2_c00016{bottom:1095.090000px;}
.y1_c00016{bottom:1136.670000px;}
.y2d_c00016{bottom:1181.640000px;}
.h3_c00016{height:53.593594px;}
.h4_c00016{height:64.129219px;}
.h2_c00016{height:68.157070px;}
.h0_c00016{height:1262.880000px;}
.h1_c00016{height:1263.000000px;}
.w0_c00016{width:892.980000px;}
.w1_c00016{width:893.250000px;}
.x0_c00016{left:0.000000px;}
.x2_c00016{left:106.236000px;}
.x3_c00016{left:133.236000px;}
.x1_c00016{left:159.150000px;}
.x4_c00016{left:160.230000px;}
.x5_c00016{left:186.150000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.lsd_c00016{letter-spacing:-0.276480pt;}
.ls8_c00016{letter-spacing:-0.184533pt;}
.lsa_c00016{letter-spacing:-0.138133pt;}
.ls7_c00016{letter-spacing:-0.051200pt;}
.lsb_c00016{letter-spacing:-0.007467pt;}
.ls5_c00016{letter-spacing:0.000000pt;}
.ls6_c00016{letter-spacing:0.125333pt;}
.ls1_c00016{letter-spacing:0.138240pt;}
.lsc_c00016{letter-spacing:0.207467pt;}
.ls4_c00016{letter-spacing:0.226560pt;}
.ls3_c00016{letter-spacing:0.232960pt;}
.ls9_c00016{letter-spacing:0.256000pt;}
.ls2_c00016{letter-spacing:0.358400pt;}
.ls0_c00016{letter-spacing:68.893867pt;}
.ws0_c00016{word-spacing:-15.425280pt;}
.ws1_c00016{word-spacing:-12.129280pt;}
.ws3_c00016{word-spacing:-12.032000pt;}
.ws2_c00016{word-spacing:-11.776000pt;}
.ws7_c00016{word-spacing:0.000000pt;}
.ws8_c00016{word-spacing:0.276480pt;}
.ws5_c00016{word-spacing:130.753067pt;}
.ws6_c00016{word-spacing:133.523307pt;}
.ws4_c00016{word-spacing:134.854507pt;}
._c_c00016{margin-left:-2.531840pt;}
._0_c00016{margin-left:-0.973365pt;}
._3_c00016{width:1.118956pt;}
._7_c00016{width:2.093556pt;}
._9_c00016{width:3.356278pt;}
._1_c00016{width:4.769044pt;}
._2_c00016{width:6.006408pt;}
._b_c00016{width:7.182948pt;}
._d_c00016{width:8.184556pt;}
._8_c00016{width:9.479444pt;}
._a_c00016{width:10.484212pt;}
._6_c00016{width:13.306527pt;}
._4_c00016{width:33.325903pt;}
._5_c00016{width:34.426018pt;}
.fs1_c00016{font-size:58.880000pt;}
.fs2_c00016{font-size:69.120000pt;}
.fs0_c00016{font-size:74.880000pt;}
.y0_c00016{bottom:0.000000pt;}
.y2c_c00016{bottom:106.080000pt;}
.y2b_c00016{bottom:124.800000pt;}
.y2a_c00016{bottom:142.720000pt;}
.y29_c00016{bottom:178.586667pt;}
.y28_c00016{bottom:197.306667pt;}
.y27_c00016{bottom:216.026667pt;}
.y26_c00016{bottom:234.586667pt;}
.y25_c00016{bottom:253.306667pt;}
.y24_c00016{bottom:272.026667pt;}
.y23_c00016{bottom:290.746667pt;}
.y22_c00016{bottom:309.306667pt;}
.y21_c00016{bottom:327.226667pt;}
.y20_c00016{bottom:345.146667pt;}
.y1f_c00016{bottom:363.866667pt;}
.y1e_c00016{bottom:381.826667pt;}
.y1d_c00016{bottom:399.746667pt;}
.y1c_c00016{bottom:435.586667pt;}
.y1b_c00016{bottom:453.346667pt;}
.y1a_c00016{bottom:471.266667pt;}
.y19_c00016{bottom:489.186667pt;}
.y18_c00016{bottom:507.106667pt;}
.y17_c00016{bottom:525.026667pt;}
.y16_c00016{bottom:542.946667pt;}
.y15_c00016{bottom:560.866667pt;}
.y14_c00016{bottom:596.733333pt;}
.y13_c00016{bottom:614.653333pt;}
.y12_c00016{bottom:632.413333pt;}
.y11_c00016{bottom:650.333333pt;}
.y10_c00016{bottom:668.253333pt;}
.yf_c00016{bottom:686.173333pt;}
.ye_c00016{bottom:704.093333pt;}
.yd_c00016{bottom:722.013333pt;}
.yc_c00016{bottom:739.933333pt;}
.yb_c00016{bottom:757.853333pt;}
.ya_c00016{bottom:775.773333pt;}
.y9_c00016{bottom:811.493333pt;}
.y8_c00016{bottom:829.413333pt;}
.y7_c00016{bottom:847.333333pt;}
.y6_c00016{bottom:883.173333pt;}
.y5_c00016{bottom:901.093333pt;}
.y4_c00016{bottom:919.013333pt;}
.y3_c00016{bottom:936.933333pt;}
.y2_c00016{bottom:973.413333pt;}
.y1_c00016{bottom:1010.373333pt;}
.y2d_c00016{bottom:1050.346667pt;}
.h3_c00016{height:47.638750pt;}
.h4_c00016{height:57.003750pt;}
.h2_c00016{height:60.584062pt;}
.h0_c00016{height:1122.560000pt;}
.h1_c00016{height:1122.666667pt;}
.w0_c00016{width:793.760000pt;}
.w1_c00016{width:794.000000pt;}
.x0_c00016{left:0.000000pt;}
.x2_c00016{left:94.432000pt;}
.x3_c00016{left:118.432000pt;}
.x1_c00016{left:141.466667pt;}
.x4_c00016{left:142.426667pt;}
.x5_c00016{left:165.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:0.910156;font-style:normal;font-weight:normal;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_aaabeac57334423e530766c8.woff')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.048340;font-style:normal;font-weight:normal;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_0c9ad1f94078bb2ee30ac0d8.woff')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:1.048340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00017;src:url('chunks/assets/font_3e648ab601ac22eb3a5f3419.woff')format("woff");}.ff4_c00017{font-family:ff4_c00017;line-height:1.048340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00017;src:url('chunks/assets/font_fc2cbb34abcbfa078c959b8e.woff')format("woff");}.ff5_c00017{font-family:ff5_c00017;line-height:1.048340;font-style: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;}
.lse_c00017{letter-spacing:-0.207600px;}
.lsf_c00017{letter-spacing:-0.057600px;}
.lsb_c00017{letter-spacing:0.000000px;}
.ls2_c00017{letter-spacing:0.064800px;}
.lsc_c00017{letter-spacing:0.075000px;}
.ls11_c00017{letter-spacing:0.112200px;}
.ls12_c00017{letter-spacing:0.132600px;}
.ls5_c00017{letter-spacing:0.141120px;}
.ls10_c00017{letter-spacing:0.244800px;}
.lsd_c00017{letter-spacing:0.247800px;}
.ls7_c00017{letter-spacing:0.371520px;}
.ls9_c00017{letter-spacing:0.432000px;}
.ls4_c00017{letter-spacing:6.192000px;}
.ls8_c00017{letter-spacing:7.092000px;}
.lsa_c00017{letter-spacing:19.872000px;}
.ls1_c00017{letter-spacing:24.192000px;}
.ls3_c00017{letter-spacing:32.112000px;}
.ls0_c00017{letter-spacing:77.505600px;}
.ls6_c00017{letter-spacing:83.136000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00017{word-spacing:-17.353440px;}
.ws3_c00017{word-spacing:-13.645440px;}
.ws2_c00017{word-spacing:-13.360200px;}
.ws0_c00017{word-spacing:-13.248000px;}
.ws4_c00017{word-spacing:0.000000px;}
._a_c00017{margin-left:-4.895820px;}
._9_c00017{margin-left:-3.863768px;}
._8_c00017{margin-left:-2.538075px;}
._0_c00017{margin-left:-1.390841px;}
._6_c00017{width:1.226880px;}
._7_c00017{width:5.696375px;}
._e_c00017{width:6.951145px;}
._f_c00017{width:9.497065px;}
._b_c00017{width:10.664508px;}
._c_c00017{width:12.233197px;}
._10_c00017{width:19.419840px;}
._11_c00017{width:20.527001px;}
._1_c00017{width:23.581175px;}
._2_c00017{width:24.749835px;}
._d_c00017{width:29.952000px;}
._3_c00017{width:31.198841px;}
._4_c00017{width:32.204160px;}
._5_c00017{width:33.243476px;}
.fc0_c00017{color:rgb(0,0,0);}
.fs2_c00017{font-size:54.000000px;}
.fs0_c00017{font-size:66.240000px;}
.fs1_c00017{font-size:84.240000px;}
.y0_c00017{bottom:0.000000px;}
.y2c_c00017{bottom:126.360000px;}
.y2b_c00017{bottom:146.520000px;}
.y2a_c00017{bottom:167.610000px;}
.y29_c00017{bottom:207.930000px;}
.y28_c00017{bottom:228.810000px;}
.y27_c00017{bottom:248.970000px;}
.y26_c00017{bottom:270.030000px;}
.y25_c00017{bottom:290.190000px;}
.y24_c00017{bottom:311.250000px;}
.y23_c00017{bottom:351.570000px;}
.y22_c00017{bottom:371.550000px;}
.y21_c00017{bottom:391.710000px;}
.y20_c00017{bottom:411.870000px;}
.y1f_c00017{bottom:432.075000px;}
.y1e_c00017{bottom:452.235000px;}
.y1d_c00017{bottom:473.295000px;}
.y1c_c00017{bottom:494.355000px;}
.y1b_c00017{bottom:515.235000px;}
.y1a_c00017{bottom:535.395000px;}
.y19_c00017{bottom:556.455000px;}
.y18_c00017{bottom:576.615000px;}
.y17_c00017{bottom:597.675000px;}
.y16_c00017{bottom:617.835000px;}
.y15_c00017{bottom:637.995000px;}
.y14_c00017{bottom:658.005000px;}
.y13_c00017{bottom:679.065000px;}
.y12_c00017{bottom:720.465000px;}
.y11_c00017{bottom:785.265000px;}
.y10_c00017{bottom:806.325000px;}
.yf_c00017{bottom:827.385000px;}
.ye_c00017{bottom:848.445000px;}
.yd_c00017{bottom:869.325000px;}
.yc_c00017{bottom:890.385000px;}
.yb_c00017{bottom:911.490000px;}
.ya_c00017{bottom:932.550000px;}
.y9_c00017{bottom:953.430000px;}
.y8_c00017{bottom:973.590000px;}
.y7_c00017{bottom:1013.910000px;}
.y6_c00017{bottom:1034.970000px;}
.y5_c00017{bottom:1056.030000px;}
.y4_c00017{bottom:1076.910000px;}
.y3_c00017{bottom:1097.970000px;}
.y2_c00017{bottom:1119.030000px;}
.y1_c00017{bottom:1140.090000px;}
.h2_c00017{height:53.593594px;}
.h3_c00017{height:68.157070px;}
.h0_c00017{height:1262.880000px;}
.h1_c00017{height:1263.000000px;}
.w0_c00017{width:892.980000px;}
.w1_c00017{width:893.250000px;}
.x0_c00017{left:0.000000px;}
.x2_c00017{left:106.236000px;}
.x1_c00017{left:133.236000px;}
.x4_c00017{left:160.230000px;}
.x3_c00017{left:272.190000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.lse_c00017{letter-spacing:-0.184533pt;}
.lsf_c00017{letter-spacing:-0.051200pt;}
.lsb_c00017{letter-spacing:0.000000pt;}
.ls2_c00017{letter-spacing:0.057600pt;}
.lsc_c00017{letter-spacing:0.066667pt;}
.ls11_c00017{letter-spacing:0.099733pt;}
.ls12_c00017{letter-spacing:0.117867pt;}
.ls5_c00017{letter-spacing:0.125440pt;}
.ls10_c00017{letter-spacing:0.217600pt;}
.lsd_c00017{letter-spacing:0.220267pt;}
.ls7_c00017{letter-spacing:0.330240pt;}
.ls9_c00017{letter-spacing:0.384000pt;}
.ls4_c00017{letter-spacing:5.504000pt;}
.ls8_c00017{letter-spacing:6.304000pt;}
.lsa_c00017{letter-spacing:17.664000pt;}
.ls1_c00017{letter-spacing:21.504000pt;}
.ls3_c00017{letter-spacing:28.544000pt;}
.ls0_c00017{letter-spacing:68.893867pt;}
.ls6_c00017{letter-spacing:73.898667pt;}
.ws1_c00017{word-spacing:-15.425280pt;}
.ws3_c00017{word-spacing:-12.129280pt;}
.ws2_c00017{word-spacing:-11.875733pt;}
.ws0_c00017{word-spacing:-11.776000pt;}
.ws4_c00017{word-spacing:0.000000pt;}
._a_c00017{margin-left:-4.351840pt;}
._9_c00017{margin-left:-3.434460pt;}
._8_c00017{margin-left:-2.256067pt;}
._0_c00017{margin-left:-1.236303pt;}
._6_c00017{width:1.090560pt;}
._7_c00017{width:5.063444pt;}
._e_c00017{width:6.178796pt;}
._f_c00017{width:8.441836pt;}
._b_c00017{width:9.479562pt;}
._c_c00017{width:10.873953pt;}
._10_c00017{width:17.262080pt;}
._11_c00017{width:18.246223pt;}
._1_c00017{width:20.961044pt;}
._2_c00017{width:21.999853pt;}
._d_c00017{width:26.624000pt;}
._3_c00017{width:27.732303pt;}
._4_c00017{width:28.625920pt;}
._5_c00017{width:29.549757pt;}
.fs2_c00017{font-size:48.000000pt;}
.fs0_c00017{font-size:58.880000pt;}
.fs1_c00017{font-size:74.880000pt;}
.y0_c00017{bottom:0.000000pt;}
.y2c_c00017{bottom:112.320000pt;}
.y2b_c00017{bottom:130.240000pt;}
.y2a_c00017{bottom:148.986667pt;}
.y29_c00017{bottom:184.826667pt;}
.y28_c00017{bottom:203.386667pt;}
.y27_c00017{bottom:221.306667pt;}
.y26_c00017{bottom:240.026667pt;}
.y25_c00017{bottom:257.946667pt;}
.y24_c00017{bottom:276.666667pt;}
.y23_c00017{bottom:312.506667pt;}
.y22_c00017{bottom:330.266667pt;}
.y21_c00017{bottom:348.186667pt;}
.y20_c00017{bottom:366.106667pt;}
.y1f_c00017{bottom:384.066667pt;}
.y1e_c00017{bottom:401.986667pt;}
.y1d_c00017{bottom:420.706667pt;}
.y1c_c00017{bottom:439.426667pt;}
.y1b_c00017{bottom:457.986667pt;}
.y1a_c00017{bottom:475.906667pt;}
.y19_c00017{bottom:494.626667pt;}
.y18_c00017{bottom:512.546667pt;}
.y17_c00017{bottom:531.266667pt;}
.y16_c00017{bottom:549.186667pt;}
.y15_c00017{bottom:567.106667pt;}
.y14_c00017{bottom:584.893333pt;}
.y13_c00017{bottom:603.613333pt;}
.y12_c00017{bottom:640.413333pt;}
.y11_c00017{bottom:698.013333pt;}
.y10_c00017{bottom:716.733333pt;}
.yf_c00017{bottom:735.453333pt;}
.ye_c00017{bottom:754.173333pt;}
.yd_c00017{bottom:772.733333pt;}
.yc_c00017{bottom:791.453333pt;}
.yb_c00017{bottom:810.213333pt;}
.ya_c00017{bottom:828.933333pt;}
.y9_c00017{bottom:847.493333pt;}
.y8_c00017{bottom:865.413333pt;}
.y7_c00017{bottom:901.253333pt;}
.y6_c00017{bottom:919.973333pt;}
.y5_c00017{bottom:938.693333pt;}
.y4_c00017{bottom:957.253333pt;}
.y3_c00017{bottom:975.973333pt;}
.y2_c00017{bottom:994.693333pt;}
.y1_c00017{bottom:1013.413333pt;}
.h2_c00017{height:47.638750pt;}
.h3_c00017{height:60.584062pt;}
.h0_c00017{height:1122.560000pt;}
.h1_c00017{height:1122.666667pt;}
.w0_c00017{width:793.760000pt;}
.w1_c00017{width:794.000000pt;}
.x0_c00017{left:0.000000pt;}
.x2_c00017{left:94.432000pt;}
.x1_c00017{left:118.432000pt;}
.x4_c00017{left:142.426667pt;}
.x3_c00017{left:241.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:0.910156;font-style:normal;font-weight:normal;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_ed2d2947f069fdb01bb5d4a8.woff')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.048340;font-style:normal;font-weight:normal;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_7f7f196e6de6da9fa34e4dde.woff')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.048340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00018;src:url('chunks/assets/font_701686fbafda9893f8ab7e0a.woff')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:1.048340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00018;src:url('chunks/assets/font_f14c63d6c73f1fa9c34c5c85.woff')format("woff");}.ff5_c00018{font-family:ff5_c00018;line-height:1.048340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00018;src:url('chunks/assets/font_d3c62d961c5d804c7b22ec5e.woff')format("woff");}.ff6_c00018{font-family:ff6_c00018;line-height:0.739746;font-style: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;}
.ls8_c00018{letter-spacing:-0.244800px;}
.lsa_c00018{letter-spacing:-0.213000px;}
.lsb_c00018{letter-spacing:-0.207600px;}
.ls9_c00018{letter-spacing:-0.025800px;}
.ls6_c00018{letter-spacing:0.000000px;}
.ls2_c00018{letter-spacing:0.034560px;}
.ls7_c00018{letter-spacing:0.288000px;}
.ls3_c00018{letter-spacing:0.357120px;}
.ls4_c00018{letter-spacing:0.432000px;}
.ls5_c00018{letter-spacing:47.232000px;}
.ls1_c00018{letter-spacing:77.505600px;}
.ls0_c00018{letter-spacing:90.465600px;}
.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;}
}
.ws2_c00018{word-spacing:-66.240000px;}
.ws0_c00018{word-spacing:-13.248000px;}
.ws1_c00018{word-spacing:-13.222200px;}
.ws3_c00018{word-spacing:-13.035000px;}
.ws4_c00018{word-spacing:0.000000px;}
._6_c00018{margin-left:-2.439360px;}
._1_c00018{margin-left:-1.265495px;}
._5_c00018{width:1.082284px;}
._3_c00018{width:3.775746px;}
._4_c00018{width:4.968000px;}
._7_c00018{width:8.812800px;}
._2_c00018{width:22.263708px;}
._0_c00018{width:23.826240px;}
._8_c00018{width:46.633225px;}
.fc0_c00018{color:rgb(0,0,0);}
.fs0_c00018{font-size:66.240000px;}
.y0_c00018{bottom:0.000000px;}
.y11_c00018{bottom:771.225000px;}
.y10_c00018{bottom:792.285000px;}
.yf_c00018{bottom:812.445000px;}
.ye_c00018{bottom:833.505000px;}
.yd_c00018{bottom:854.565000px;}
.yc_c00018{bottom:874.725000px;}
.yb_c00018{bottom:894.885000px;}
.ya_c00018{bottom:914.910000px;}
.y9_c00018{bottom:935.970000px;}
.y8_c00018{bottom:956.130000px;}
.y7_c00018{bottom:976.290000px;}
.y6_c00018{bottom:997.350000px;}
.y5_c00018{bottom:1057.650000px;}
.y4_c00018{bottom:1077.810000px;}
.y3_c00018{bottom:1098.870000px;}
.y2_c00018{bottom:1119.930000px;}
.y1_c00018{bottom:1140.090000px;}
.h2_c00018{height:53.593594px;}
.h0_c00018{height:1262.880000px;}
.h1_c00018{height:1263.000000px;}
.w0_c00018{width:892.980000px;}
.w1_c00018{width:893.250000px;}
.x0_c00018{left:0.000000px;}
.x3_c00018{left:106.236000px;}
.x1_c00018{left:133.236000px;}
.x2_c00018{left:160.230000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls8_c00018{letter-spacing:-0.217600pt;}
.lsa_c00018{letter-spacing:-0.189333pt;}
.lsb_c00018{letter-spacing:-0.184533pt;}
.ls9_c00018{letter-spacing:-0.022933pt;}
.ls6_c00018{letter-spacing:0.000000pt;}
.ls2_c00018{letter-spacing:0.030720pt;}
.ls7_c00018{letter-spacing:0.256000pt;}
.ls3_c00018{letter-spacing:0.317440pt;}
.ls4_c00018{letter-spacing:0.384000pt;}
.ls5_c00018{letter-spacing:41.984000pt;}
.ls1_c00018{letter-spacing:68.893867pt;}
.ls0_c00018{letter-spacing:80.413867pt;}
.ws2_c00018{word-spacing:-58.880000pt;}
.ws0_c00018{word-spacing:-11.776000pt;}
.ws1_c00018{word-spacing:-11.753067pt;}
.ws3_c00018{word-spacing:-11.586667pt;}
.ws4_c00018{word-spacing:0.000000pt;}
._6_c00018{margin-left:-2.168320pt;}
._1_c00018{margin-left:-1.124884pt;}
._5_c00018{width:0.962030pt;}
._3_c00018{width:3.356219pt;}
._4_c00018{width:4.416000pt;}
._7_c00018{width:7.833600pt;}
._2_c00018{width:19.789962pt;}
._0_c00018{width:21.178880pt;}
._8_c00018{width:41.451756pt;}
.fs0_c00018{font-size:58.880000pt;}
.y0_c00018{bottom:0.000000pt;}
.y11_c00018{bottom:685.533333pt;}
.y10_c00018{bottom:704.253333pt;}
.yf_c00018{bottom:722.173333pt;}
.ye_c00018{bottom:740.893333pt;}
.yd_c00018{bottom:759.613333pt;}
.yc_c00018{bottom:777.533333pt;}
.yb_c00018{bottom:795.453333pt;}
.ya_c00018{bottom:813.253333pt;}
.y9_c00018{bottom:831.973333pt;}
.y8_c00018{bottom:849.893333pt;}
.y7_c00018{bottom:867.813333pt;}
.y6_c00018{bottom:886.533333pt;}
.y5_c00018{bottom:940.133333pt;}
.y4_c00018{bottom:958.053333pt;}
.y3_c00018{bottom:976.773333pt;}
.y2_c00018{bottom:995.493333pt;}
.y1_c00018{bottom:1013.413333pt;}
.h2_c00018{height:47.638750pt;}
.h0_c00018{height:1122.560000pt;}
.h1_c00018{height:1122.666667pt;}
.w0_c00018{width:793.760000pt;}
.w1_c00018{width:794.000000pt;}
.x0_c00018{left:0.000000pt;}
.x3_c00018{left:94.432000pt;}
.x1_c00018{left:118.432000pt;}
.x2_c00018{left:142.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0915d66b87c81a0917d4055f.woff')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00019;src:url('chunks/assets/font_404dd561eb7fff874cdf573d.woff')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00019;src:url('chunks/assets/font_2a8b66e5e09ef995fd274506.woff')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.087402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls4_c00019{letter-spacing:-0.311040px;}
.ls3_c00019{letter-spacing:-0.233280px;}
.ls1_c00019{letter-spacing:0.000000px;}
.ls2_c00019{letter-spacing:0.084240px;}
.ls0_c00019{letter-spacing:0.168480px;}
.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:-17.340480px;}
.ws1_c00019{word-spacing:-17.262720px;}
.ws2_c00019{word-spacing:-0.168480px;}
.ws4_c00019{word-spacing:-0.084240px;}
.ws3_c00019{word-spacing:0.000000px;}
._0_c00019{margin-left:-1.600560px;}
._1_c00019{width:1.041984px;}
._2_c00019{width:2.301696px;}
._3_c00019{width:844.927200px;}
.fc3_c00019{color:transparent;}
.fc2_c00019{color:rgb(0,0,0);}
.fc1_c00019{color:rgb(79,129,189);}
.fc0_c00019{color:rgb(54,95,145);}
.fs2_c00019{font-size:66.240000px;}
.fs1_c00019{font-size:77.760000px;}
.fs0_c00019{font-size:84.240000px;}
.y0_c00019{bottom:0.000000px;}
.y2a_c00019{bottom:193.500000px;}
.y29_c00019{bottom:217.433520px;}
.y28_c00019{bottom:236.692800px;}
.y27_c00019{bottom:256.134240px;}
.y26_c00019{bottom:275.393520px;}
.y25_c00019{bottom:294.834960px;}
.y24_c00019{bottom:314.094240px;}
.y23_c00019{bottom:333.535680px;}
.y22_c00019{bottom:352.794960px;}
.y21_c00019{bottom:372.236400px;}
.y20_c00019{bottom:391.495680px;}
.y1f_c00019{bottom:410.754960px;}
.y1e_c00019{bottom:430.196400px;}
.y1d_c00019{bottom:449.455680px;}
.y1c_c00019{bottom:468.897120px;}
.y1b_c00019{bottom:488.156400px;}
.y1a_c00019{bottom:507.597840px;}
.y19_c00019{bottom:526.857120px;}
.y18_c00019{bottom:546.298560px;}
.y17_c00019{bottom:565.557840px;}
.y16_c00019{bottom:584.999280px;}
.y15_c00019{bottom:604.258560px;}
.y14_c00019{bottom:623.700000px;}
.y13_c00019{bottom:642.959280px;}
.y12_c00019{bottom:662.400720px;}
.y11_c00019{bottom:681.660000px;}
.y10_c00019{bottom:706.140000px;}
.yf_c00019{bottom:743.397840px;}
.ye_c00019{bottom:762.657120px;}
.yd_c00019{bottom:782.098560px;}
.yc_c00019{bottom:801.357840px;}
.yb_c00019{bottom:820.799280px;}
.ya_c00019{bottom:840.058560px;}
.y9_c00019{bottom:859.500000px;}
.y8_c00019{bottom:878.759280px;}
.y7_c00019{bottom:898.200720px;}
.y6_c00019{bottom:917.460000px;}
.y5_c00019{bottom:942.120000px;}
.y4_c00019{bottom:979.194240px;}
.y3_c00019{bottom:994.860000px;}
.y2_c00019{bottom:1093.680000px;}
.y1_c00019{bottom:1136.700000px;}
.h4_c00019{height:57.571875px;}
.h3_c00019{height:64.129219px;}
.h2_c00019{height:69.473320px;}
.h1_c00019{height:1263.000000px;}
.h0_c00019{height:1263.060000px;}
.w0_c00019{width:892.980000px;}
.w1_c00019{width:893.250000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:106.380000px;}
.x2_c00019{left:322.380000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls4_c00019{letter-spacing:-0.276480pt;}
.ls3_c00019{letter-spacing:-0.207360pt;}
.ls1_c00019{letter-spacing:0.000000pt;}
.ls2_c00019{letter-spacing:0.074880pt;}
.ls0_c00019{letter-spacing:0.149760pt;}
.ws0_c00019{word-spacing:-15.413760pt;}
.ws1_c00019{word-spacing:-15.344640pt;}
.ws2_c00019{word-spacing:-0.149760pt;}
.ws4_c00019{word-spacing:-0.074880pt;}
.ws3_c00019{word-spacing:0.000000pt;}
._0_c00019{margin-left:-1.422720pt;}
._1_c00019{width:0.926208pt;}
._2_c00019{width:2.045952pt;}
._3_c00019{width:751.046400pt;}
.fs2_c00019{font-size:58.880000pt;}
.fs1_c00019{font-size:69.120000pt;}
.fs0_c00019{font-size:74.880000pt;}
.y0_c00019{bottom:0.000000pt;}
.y2a_c00019{bottom:172.000000pt;}
.y29_c00019{bottom:193.274240pt;}
.y28_c00019{bottom:210.393600pt;}
.y27_c00019{bottom:227.674880pt;}
.y26_c00019{bottom:244.794240pt;}
.y25_c00019{bottom:262.075520pt;}
.y24_c00019{bottom:279.194880pt;}
.y23_c00019{bottom:296.476160pt;}
.y22_c00019{bottom:313.595520pt;}
.y21_c00019{bottom:330.876800pt;}
.y20_c00019{bottom:347.996160pt;}
.y1f_c00019{bottom:365.115520pt;}
.y1e_c00019{bottom:382.396800pt;}
.y1d_c00019{bottom:399.516160pt;}
.y1c_c00019{bottom:416.797440pt;}
.y1b_c00019{bottom:433.916800pt;}
.y1a_c00019{bottom:451.198080pt;}
.y19_c00019{bottom:468.317440pt;}
.y18_c00019{bottom:485.598720pt;}
.y17_c00019{bottom:502.718080pt;}
.y16_c00019{bottom:519.999360pt;}
.y15_c00019{bottom:537.118720pt;}
.y14_c00019{bottom:554.400000pt;}
.y13_c00019{bottom:571.519360pt;}
.y12_c00019{bottom:588.800640pt;}
.y11_c00019{bottom:605.920000pt;}
.y10_c00019{bottom:627.680000pt;}
.yf_c00019{bottom:660.798080pt;}
.ye_c00019{bottom:677.917440pt;}
.yd_c00019{bottom:695.198720pt;}
.yc_c00019{bottom:712.318080pt;}
.yb_c00019{bottom:729.599360pt;}
.ya_c00019{bottom:746.718720pt;}
.y9_c00019{bottom:764.000000pt;}
.y8_c00019{bottom:781.119360pt;}
.y7_c00019{bottom:798.400640pt;}
.y6_c00019{bottom:815.520000pt;}
.y5_c00019{bottom:837.440000pt;}
.y4_c00019{bottom:870.394880pt;}
.y3_c00019{bottom:884.320000pt;}
.y2_c00019{bottom:972.160000pt;}
.y1_c00019{bottom:1010.400000pt;}
.h4_c00019{height:51.175000pt;}
.h3_c00019{height:57.003750pt;}
.h2_c00019{height:61.754062pt;}
.h1_c00019{height:1122.666667pt;}
.h0_c00019{height:1122.720000pt;}
.w0_c00019{width:793.760000pt;}
.w1_c00019{width:794.000000pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:94.560000pt;}
.x2_c00019{left:286.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_12bcfe21af96779545a17c4a.woff')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00020;src:url('chunks/assets/font_96a44a90688526f982b54d3d.woff')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_2a8b66e5e09ef995fd274506.woff')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.087402;font-style: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;}
.ls2_c00020{letter-spacing:-0.233280px;}
.ls1_c00020{letter-spacing:0.000000px;}
.ls0_c00020{letter-spacing:0.168480px;}
.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:-19.206720px;}
.ws1_c00020{word-spacing:0.000000px;}
.ws2_c00020{word-spacing:0.233280px;}
._0_c00020{margin-left:-1.027728px;}
._1_c00020{width:1.912896px;}
.fc2_c00020{color:rgb(0,0,0);}
.fc1_c00020{color:rgb(79,129,189);}
.fc0_c00020{color:rgb(54,95,145);}
.fs2_c00020{font-size:66.240000px;}
.fs1_c00020{font-size:77.760000px;}
.fs0_c00020{font-size:84.240000px;}
.y0_c00020{bottom:0.000000px;}
.y3_c00020{bottom:1069.020000px;}
.y2_c00020{bottom:1093.680000px;}
.y1_c00020{bottom:1136.520000px;}
.h4_c00020{height:57.571875px;}
.h3_c00020{height:64.129219px;}
.h2_c00020{height:69.473320px;}
.h1_c00020{height:1263.000000px;}
.h0_c00020{height:1263.060000px;}
.w0_c00020{width:892.980000px;}
.w1_c00020{width:893.250000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:106.380000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls2_c00020{letter-spacing:-0.207360pt;}
.ls1_c00020{letter-spacing:0.000000pt;}
.ls0_c00020{letter-spacing:0.149760pt;}
.ws0_c00020{word-spacing:-17.072640pt;}
.ws1_c00020{word-spacing:0.000000pt;}
.ws2_c00020{word-spacing:0.207360pt;}
._0_c00020{margin-left:-0.913536pt;}
._1_c00020{width:1.700352pt;}
.fs2_c00020{font-size:58.880000pt;}
.fs1_c00020{font-size:69.120000pt;}
.fs0_c00020{font-size:74.880000pt;}
.y0_c00020{bottom:0.000000pt;}
.y3_c00020{bottom:950.240000pt;}
.y2_c00020{bottom:972.160000pt;}
.y1_c00020{bottom:1010.240000pt;}
.h4_c00020{height:51.175000pt;}
.h3_c00020{height:57.003750pt;}
.h2_c00020{height:61.754062pt;}
.h1_c00020{height:1122.666667pt;}
.h0_c00020{height:1122.720000pt;}
.w0_c00020{width:793.760000pt;}
.w1_c00020{width:794.000000pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:94.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_29521836bf7bd5e1766502e4.woff')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.063477;font-style:normal;font-weight:normal;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_c02d17272030cb960c277cf7.woff')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.063477;font-style: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.239760px;}
.ls5_c00021{letter-spacing:0.000000px;}
.ls0_c00021{letter-spacing:0.126000px;}
.ls4_c00021{letter-spacing:0.252000px;}
.ls3_c00021{letter-spacing:0.479520px;}
.ls2_c00021{letter-spacing:0.959040px;}
.sc__c00021{text-shadow:none;}
.sc1_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00021{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc1_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00021{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws1_c00021{word-spacing:-31.752000px;}
.ws2_c00021{word-spacing:-0.959040px;}
.ws0_c00021{word-spacing:-0.806880px;}
.ws5_c00021{word-spacing:-0.630000px;}
.ws3_c00021{word-spacing:-0.479520px;}
.ws6_c00021{word-spacing:-0.126000px;}
.ws4_c00021{word-spacing:0.126000px;}
._1_c00021{margin-left:-1.462536px;}
._0_c00021{width:1.342656px;}
.fc0_c00021{color:rgb(25,27,14);}
.fs1_c00021{font-size:126.000000px;}
.fs0_c00021{font-size:239.760000px;}
.y0_c00021{bottom:0.000000px;}
.y5_c00021{bottom:231.294000px;}
.y4_c00021{bottom:269.818500px;}
.y3_c00021{bottom:308.343000px;}
.y2_c00021{bottom:370.203300px;}
.y1_c00021{bottom:434.283300px;}
.h2_c00021{height:110.557617px;}
.h1_c00021{height:210.375352px;}
.h0_c00021{height:810.000000px;}
.w0_c00021{width:1440.000000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:446.947050px;}
.x2_c00021{left:499.147050px;}
.x5_c00021{left:533.812800px;}
.x4_c00021{left:537.781800px;}
.x3_c00021{left:580.968300px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls1_c00021{letter-spacing:-0.213120pt;}
.ls5_c00021{letter-spacing:0.000000pt;}
.ls0_c00021{letter-spacing:0.112000pt;}
.ls4_c00021{letter-spacing:0.224000pt;}
.ls3_c00021{letter-spacing:0.426240pt;}
.ls2_c00021{letter-spacing:0.852480pt;}
.ws1_c00021{word-spacing:-28.224000pt;}
.ws2_c00021{word-spacing:-0.852480pt;}
.ws0_c00021{word-spacing:-0.717227pt;}
.ws5_c00021{word-spacing:-0.560000pt;}
.ws3_c00021{word-spacing:-0.426240pt;}
.ws6_c00021{word-spacing:-0.112000pt;}
.ws4_c00021{word-spacing:0.112000pt;}
._1_c00021{margin-left:-1.300032pt;}
._0_c00021{width:1.193472pt;}
.fs1_c00021{font-size:112.000000pt;}
.fs0_c00021{font-size:213.120000pt;}
.y0_c00021{bottom:0.000000pt;}
.y5_c00021{bottom:205.594667pt;}
.y4_c00021{bottom:239.838667pt;}
.y3_c00021{bottom:274.082667pt;}
.y2_c00021{bottom:329.069600pt;}
.y1_c00021{bottom:386.029600pt;}
.h2_c00021{height:98.273438pt;}
.h1_c00021{height:187.000312pt;}
.h0_c00021{height:720.000000pt;}
.w0_c00021{width:1280.000000pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:397.286267pt;}
.x2_c00021{left:443.686267pt;}
.x5_c00021{left:474.500267pt;}
.x4_c00021{left:478.028267pt;}
.x3_c00021{left:516.416267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65ccaba24b51e44aad81c219.woff')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.063477;font-style:normal;font-weight:normal;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_44aa9336573bd038cdfb5997.woff')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.063477;font-style:normal;font-weight:normal;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_731ef2e5d4dd0f455da26621.woff')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:1.114258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00022;src:url('chunks/assets/font_bca72104a925266ea621b3a3.woff')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00022;src:url('chunks/assets/font_fb75974e20836d4d4e69bf45.woff')format("woff");}.ff5_c00022{font-family:ff5_c00022;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls8_c00022{letter-spacing:-0.270000px;}
.ls5_c00022{letter-spacing:0.000000px;}
.ls6_c00022{letter-spacing:0.162000px;}
.ls4_c00022{letter-spacing:0.180000px;}
.ls7_c00022{letter-spacing:0.270000px;}
.ls3_c00022{letter-spacing:0.360000px;}
.ls9_c00022{letter-spacing:0.383040px;}
.ls2_c00022{letter-spacing:0.486000px;}
.ls1_c00022{letter-spacing:0.810000px;}
.ls0_c00022{letter-spacing:0.828000px;}
.sc__c00022{text-shadow:none;}
.sc1_c00022{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
.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;}
.sc1_c00022{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00022{word-spacing:-162.000000px;}
.ws0_c00022{word-spacing:-66.060000px;}
.ws4_c00022{word-spacing:-41.310000px;}
.ws1_c00022{word-spacing:-40.500000px;}
.ws7_c00022{word-spacing:-25.380000px;}
.wsa_c00022{word-spacing:-25.290000px;}
.ws5_c00022{word-spacing:-25.020000px;}
.ws8_c00022{word-spacing:-3.060000px;}
.ws3_c00022{word-spacing:-2.633400px;}
.wsb_c00022{word-spacing:-2.520000px;}
.ws6_c00022{word-spacing:-2.340000px;}
.ws9_c00022{word-spacing:-1.620000px;}
.wse_c00022{word-spacing:-1.458000px;}
.ws11_c00022{word-spacing:-1.440000px;}
.ws13_c00022{word-spacing:-0.990000px;}
.ws12_c00022{word-spacing:-0.900000px;}
.wsd_c00022{word-spacing:-0.486000px;}
.ws14_c00022{word-spacing:-0.383040px;}
.wsf_c00022{word-spacing:-0.360000px;}
.ws10_c00022{word-spacing:-0.180000px;}
.wsc_c00022{word-spacing:0.000000px;}
.ws15_c00022{word-spacing:0.766080px;}
._1_c00022{margin-left:-1.794600px;}
._0_c00022{width:1.026000px;}
._3_c00022{width:2.154600px;}
._2_c00022{width:23.850000px;}
._4_c00022{width:28.333800px;}
.fc1_c00022{color:rgb(5,5,5);}
.fc0_c00022{color:rgb(25,27,14);}
.fs2_c00022{font-size:90.000000px;}
.fs3_c00022{font-size:95.760000px;}
.fs1_c00022{font-size:162.000000px;}
.fs0_c00022{font-size:264.240000px;}
.y0_c00022{bottom:0.000000px;}
.ye_c00022{bottom:165.601980px;}
.yd_c00022{bottom:186.836760px;}
.yc_c00022{bottom:208.263060px;}
.yb_c00022{bottom:229.497840px;}
.ya_c00022{bottom:250.924140px;}
.y9_c00022{bottom:272.158920px;}
.y8_c00022{bottom:293.393700px;}
.y7_c00022{bottom:314.820000px;}
.y6_c00022{bottom:357.840000px;}
.y5_c00022{bottom:443.700000px;}
.y4_c00022{bottom:463.680000px;}
.y3_c00022{bottom:483.660000px;}
.y2_c00022{bottom:507.600000px;}
.y1_c00022{bottom:668.340000px;}
.h3_c00022{height:80.683594px;}
.h5_c00022{height:85.847344px;}
.h4_c00022{height:142.145508px;}
.h2_c00022{height:146.416992px;}
.h1_c00022{height:231.855117px;}
.h0_c00022{height:810.000000px;}
.w0_c00022{width:1440.000000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:172.800000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls8_c00022{letter-spacing:-0.240000pt;}
.ls5_c00022{letter-spacing:0.000000pt;}
.ls6_c00022{letter-spacing:0.144000pt;}
.ls4_c00022{letter-spacing:0.160000pt;}
.ls7_c00022{letter-spacing:0.240000pt;}
.ls3_c00022{letter-spacing:0.320000pt;}
.ls9_c00022{letter-spacing:0.340480pt;}
.ls2_c00022{letter-spacing:0.432000pt;}
.ls1_c00022{letter-spacing:0.720000pt;}
.ls0_c00022{letter-spacing:0.736000pt;}
.ws2_c00022{word-spacing:-144.000000pt;}
.ws0_c00022{word-spacing:-58.720000pt;}
.ws4_c00022{word-spacing:-36.720000pt;}
.ws1_c00022{word-spacing:-36.000000pt;}
.ws7_c00022{word-spacing:-22.560000pt;}
.wsa_c00022{word-spacing:-22.480000pt;}
.ws5_c00022{word-spacing:-22.240000pt;}
.ws8_c00022{word-spacing:-2.720000pt;}
.ws3_c00022{word-spacing:-2.340800pt;}
.wsb_c00022{word-spacing:-2.240000pt;}
.ws6_c00022{word-spacing:-2.080000pt;}
.ws9_c00022{word-spacing:-1.440000pt;}
.wse_c00022{word-spacing:-1.296000pt;}
.ws11_c00022{word-spacing:-1.280000pt;}
.ws13_c00022{word-spacing:-0.880000pt;}
.ws12_c00022{word-spacing:-0.800000pt;}
.wsd_c00022{word-spacing:-0.432000pt;}
.ws14_c00022{word-spacing:-0.340480pt;}
.wsf_c00022{word-spacing:-0.320000pt;}
.ws10_c00022{word-spacing:-0.160000pt;}
.wsc_c00022{word-spacing:0.000000pt;}
.ws15_c00022{word-spacing:0.680960pt;}
._1_c00022{margin-left:-1.595200pt;}
._0_c00022{width:0.912000pt;}
._3_c00022{width:1.915200pt;}
._2_c00022{width:21.200000pt;}
._4_c00022{width:25.185600pt;}
.fs2_c00022{font-size:80.000000pt;}
.fs3_c00022{font-size:85.120000pt;}
.fs1_c00022{font-size:144.000000pt;}
.fs0_c00022{font-size:234.880000pt;}
.y0_c00022{bottom:0.000000pt;}
.ye_c00022{bottom:147.201760pt;}
.yd_c00022{bottom:166.077120pt;}
.yc_c00022{bottom:185.122720pt;}
.yb_c00022{bottom:203.998080pt;}
.ya_c00022{bottom:223.043680pt;}
.y9_c00022{bottom:241.919040pt;}
.y8_c00022{bottom:260.794400pt;}
.y7_c00022{bottom:279.840000pt;}
.y6_c00022{bottom:318.080000pt;}
.y5_c00022{bottom:394.400000pt;}
.y4_c00022{bottom:412.160000pt;}
.y3_c00022{bottom:429.920000pt;}
.y2_c00022{bottom:451.200000pt;}
.y1_c00022{bottom:594.080000pt;}
.h3_c00022{height:71.718750pt;}
.h5_c00022{height:76.308750pt;}
.h4_c00022{height:126.351562pt;}
.h2_c00022{height:130.148438pt;}
.h1_c00022{height:206.093437pt;}
.h0_c00022{height:720.000000pt;}
.w0_c00022{width:1280.000000pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{left:153.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fc60d1bcd07ff5181685cd39.woff')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.063477;font-style:normal;font-weight:normal;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_60745dcdc6fc7797ae989897.woff')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_97df777a6fc9a675f484ce93.woff')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00023;src:url('chunks/assets/font_eabe14f84360f96e5f127fc7.woff')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:1.043457;font-style: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;}
.lsa_c00023{letter-spacing:-1.620000px;}
.ls7_c00023{letter-spacing:-0.540000px;}
.ls9_c00023{letter-spacing:-0.324000px;}
.ls8_c00023{letter-spacing:-0.216000px;}
.ls6_c00023{letter-spacing:-0.108000px;}
.ls5_c00023{letter-spacing:0.000000px;}
.ls2_c00023{letter-spacing:0.108000px;}
.ls1_c00023{letter-spacing:0.216000px;}
.ls4_c00023{letter-spacing:25.272000px;}
.ls3_c00023{letter-spacing:25.920000px;}
.ls0_c00023{letter-spacing:116.208000px;}
.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;}
}
.ws17_c00023{word-spacing:-24.624000px;}
.ws3_c00023{word-spacing:-24.516000px;}
.ws0_c00023{word-spacing:-24.408000px;}
.wse_c00023{word-spacing:-24.300000px;}
.ws4_c00023{word-spacing:-24.192000px;}
.ws6_c00023{word-spacing:-24.084000px;}
.ws2_c00023{word-spacing:-23.868000px;}
.ws8_c00023{word-spacing:-22.788000px;}
.ws1f_c00023{word-spacing:-0.756000px;}
.ws12_c00023{word-spacing:-0.291600px;}
.ws22_c00023{word-spacing:-0.216000px;}
.ws10_c00023{word-spacing:-0.183600px;}
.ws1e_c00023{word-spacing:-0.108000px;}
.ws1d_c00023{word-spacing:0.000000px;}
.ws15_c00023{word-spacing:0.032400px;}
.ws23_c00023{word-spacing:0.108000px;}
.ws9_c00023{word-spacing:0.216000px;}
.ws1c_c00023{word-spacing:0.264240px;}
.ws21_c00023{word-spacing:0.324000px;}
.ws16_c00023{word-spacing:0.540000px;}
.ws20_c00023{word-spacing:0.648000px;}
.wsc_c00023{word-spacing:0.680400px;}
.wsd_c00023{word-spacing:0.788400px;}
.wsa_c00023{word-spacing:0.864000px;}
.ws7_c00023{word-spacing:0.896400px;}
.ws18_c00023{word-spacing:0.972000px;}
.ws1_c00023{word-spacing:1.144800px;}
.ws14_c00023{word-spacing:1.220400px;}
.wsf_c00023{word-spacing:1.404000px;}
.ws19_c00023{word-spacing:1.620000px;}
.ws11_c00023{word-spacing:1.684800px;}
.ws13_c00023{word-spacing:1.976400px;}
.wsb_c00023{word-spacing:2.084400px;}
.ws5_c00023{word-spacing:2.332800px;}
.ws1a_c00023{word-spacing:2.376000px;}
.ws1b_c00023{word-spacing:3.132000px;}
._0_c00023{margin-left:-2.113920px;}
._1_c00023{margin-left:-1.030536px;}
._2_c00023{width:1.447200px;}
._3_c00023{width:25.876800px;}
.fc1_c00023{color:rgb(0,0,0);}
.fc0_c00023{color:rgb(25,27,14);}
.fs1_c00023{font-size:108.000000px;}
.fs0_c00023{font-size:264.240000px;}
.y0_c00023{bottom:0.000000px;}
.yf_c00023{bottom:133.551000px;}
.ye_c00023{bottom:160.740000px;}
.yd_c00023{bottom:187.929000px;}
.yc_c00023{bottom:215.280000px;}
.yb_c00023{bottom:260.433000px;}
.ya_c00023{bottom:287.622000px;}
.y9_c00023{bottom:314.811000px;}
.y8_c00023{bottom:342.162000px;}
.y7_c00023{bottom:369.351000px;}
.y6_c00023{bottom:396.540000px;}
.y5_c00023{bottom:441.720000px;}
.y4_c00023{bottom:486.909000px;}
.y3_c00023{bottom:514.260000px;}
.y2_c00023{bottom:597.787920px;}
.y1_c00023{bottom:668.340000px;}
.h3_c00023{height:93.445312px;}
.h2_c00023{height:94.763672px;}
.h1_c00023{height:231.855117px;}
.h0_c00023{height:810.000000px;}
.w0_c00023{width:1440.000000px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:172.800000px;}
.x2_c00023{left:218.214000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.lsa_c00023{letter-spacing:-1.440000pt;}
.ls7_c00023{letter-spacing:-0.480000pt;}
.ls9_c00023{letter-spacing:-0.288000pt;}
.ls8_c00023{letter-spacing:-0.192000pt;}
.ls6_c00023{letter-spacing:-0.096000pt;}
.ls5_c00023{letter-spacing:0.000000pt;}
.ls2_c00023{letter-spacing:0.096000pt;}
.ls1_c00023{letter-spacing:0.192000pt;}
.ls4_c00023{letter-spacing:22.464000pt;}
.ls3_c00023{letter-spacing:23.040000pt;}
.ls0_c00023{letter-spacing:103.296000pt;}
.ws17_c00023{word-spacing:-21.888000pt;}
.ws3_c00023{word-spacing:-21.792000pt;}
.ws0_c00023{word-spacing:-21.696000pt;}
.wse_c00023{word-spacing:-21.600000pt;}
.ws4_c00023{word-spacing:-21.504000pt;}
.ws6_c00023{word-spacing:-21.408000pt;}
.ws2_c00023{word-spacing:-21.216000pt;}
.ws8_c00023{word-spacing:-20.256000pt;}
.ws1f_c00023{word-spacing:-0.672000pt;}
.ws12_c00023{word-spacing:-0.259200pt;}
.ws22_c00023{word-spacing:-0.192000pt;}
.ws10_c00023{word-spacing:-0.163200pt;}
.ws1e_c00023{word-spacing:-0.096000pt;}
.ws1d_c00023{word-spacing:0.000000pt;}
.ws15_c00023{word-spacing:0.028800pt;}
.ws23_c00023{word-spacing:0.096000pt;}
.ws9_c00023{word-spacing:0.192000pt;}
.ws1c_c00023{word-spacing:0.234880pt;}
.ws21_c00023{word-spacing:0.288000pt;}
.ws16_c00023{word-spacing:0.480000pt;}
.ws20_c00023{word-spacing:0.576000pt;}
.wsc_c00023{word-spacing:0.604800pt;}
.wsd_c00023{word-spacing:0.700800pt;}
.wsa_c00023{word-spacing:0.768000pt;}
.ws7_c00023{word-spacing:0.796800pt;}
.ws18_c00023{word-spacing:0.864000pt;}
.ws1_c00023{word-spacing:1.017600pt;}
.ws14_c00023{word-spacing:1.084800pt;}
.wsf_c00023{word-spacing:1.248000pt;}
.ws19_c00023{word-spacing:1.440000pt;}
.ws11_c00023{word-spacing:1.497600pt;}
.ws13_c00023{word-spacing:1.756800pt;}
.wsb_c00023{word-spacing:1.852800pt;}
.ws5_c00023{word-spacing:2.073600pt;}
.ws1a_c00023{word-spacing:2.112000pt;}
.ws1b_c00023{word-spacing:2.784000pt;}
._0_c00023{margin-left:-1.879040pt;}
._1_c00023{margin-left:-0.916032pt;}
._2_c00023{width:1.286400pt;}
._3_c00023{width:23.001600pt;}
.fs1_c00023{font-size:96.000000pt;}
.fs0_c00023{font-size:234.880000pt;}
.y0_c00023{bottom:0.000000pt;}
.yf_c00023{bottom:118.712000pt;}
.ye_c00023{bottom:142.880000pt;}
.yd_c00023{bottom:167.048000pt;}
.yc_c00023{bottom:191.360000pt;}
.yb_c00023{bottom:231.496000pt;}
.ya_c00023{bottom:255.664000pt;}
.y9_c00023{bottom:279.832000pt;}
.y8_c00023{bottom:304.144000pt;}
.y7_c00023{bottom:328.312000pt;}
.y6_c00023{bottom:352.480000pt;}
.y5_c00023{bottom:392.640000pt;}
.y4_c00023{bottom:432.808000pt;}
.y3_c00023{bottom:457.120000pt;}
.y2_c00023{bottom:531.367040pt;}
.y1_c00023{bottom:594.080000pt;}
.h3_c00023{height:83.062500pt;}
.h2_c00023{height:84.234375pt;}
.h1_c00023{height:206.093437pt;}
.h0_c00023{height:720.000000pt;}
.w0_c00023{width:1280.000000pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:153.600000pt;}
.x2_c00023{left:193.968000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28504db0ecae9a1ba187354a.woff')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.063477;font-style:normal;font-weight:normal;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_4d15059a3b75279a3359387d.woff')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00024;src:url('chunks/assets/font_9b797ffd879d49e0f57e47d9.woff')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00024;src:url('chunks/assets/font_530123f861b6424dcc8db464.woff')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:1.043457;font-style: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;}
.ls11_c00024{letter-spacing:-1.944000px;}
.lsc_c00024{letter-spacing:-1.620000px;}
.ls10_c00024{letter-spacing:-1.296000px;}
.lse_c00024{letter-spacing:-0.324000px;}
.lsd_c00024{letter-spacing:-0.216000px;}
.lsf_c00024{letter-spacing:-0.108000px;}
.lsb_c00024{letter-spacing:0.000000px;}
.ls1_c00024{letter-spacing:0.108000px;}
.ls9_c00024{letter-spacing:0.183600px;}
.ls2_c00024{letter-spacing:0.216000px;}
.ls5_c00024{letter-spacing:0.259200px;}
.ls4_c00024{letter-spacing:0.324000px;}
.ls3_c00024{letter-spacing:0.378000px;}
.lsa_c00024{letter-spacing:24.624000px;}
.ls6_c00024{letter-spacing:24.732000px;}
.ls7_c00024{letter-spacing:25.272000px;}
.ls8_c00024{letter-spacing:25.380000px;}
.ls0_c00024{letter-spacing:116.208000px;}
.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;}
}
.ws1d_c00024{word-spacing:-24.624000px;}
.ws1b_c00024{word-spacing:-24.591600px;}
.ws2_c00024{word-spacing:-24.516000px;}
.ws3_c00024{word-spacing:-24.408000px;}
.ws7_c00024{word-spacing:-24.300000px;}
.wsa_c00024{word-spacing:-24.192000px;}
.ws4_c00024{word-spacing:-24.084000px;}
.wsb_c00024{word-spacing:-23.112000px;}
.ws0_c00024{word-spacing:-22.788000px;}
.ws10_c00024{word-spacing:-22.464000px;}
.ws20_c00024{word-spacing:-1.849680px;}
.ws9_c00024{word-spacing:-1.004400px;}
.ws1a_c00024{word-spacing:-0.723600px;}
.ws14_c00024{word-spacing:-0.356400px;}
.ws8_c00024{word-spacing:-0.248400px;}
.ws22_c00024{word-spacing:-0.216000px;}
.ws1_c00024{word-spacing:-0.108000px;}
.ws12_c00024{word-spacing:-0.075600px;}
.ws21_c00024{word-spacing:0.000000px;}
.ws1e_c00024{word-spacing:0.032400px;}
.ws24_c00024{word-spacing:0.108000px;}
.ws17_c00024{word-spacing:0.216000px;}
.ws23_c00024{word-spacing:0.324000px;}
.ws16_c00024{word-spacing:0.356400px;}
.ws1c_c00024{word-spacing:0.648000px;}
.wsc_c00024{word-spacing:0.864000px;}
.wsd_c00024{word-spacing:0.972000px;}
.ws5_c00024{word-spacing:1.144800px;}
.ws19_c00024{word-spacing:1.155600px;}
.ws1f_c00024{word-spacing:1.220400px;}
.ws15_c00024{word-spacing:1.328400px;}
.wse_c00024{word-spacing:1.576800px;}
.ws18_c00024{word-spacing:1.652400px;}
.wsf_c00024{word-spacing:1.976400px;}
.ws11_c00024{word-spacing:2.224800px;}
.ws6_c00024{word-spacing:2.332800px;}
.ws13_c00024{word-spacing:2.408400px;}
._3_c00024{margin-left:-3.877200px;}
._2_c00024{margin-left:-2.579256px;}
._1_c00024{margin-left:-1.083384px;}
._0_c00024{width:1.374048px;}
._4_c00024{width:2.454048px;}
._5_c00024{width:26.735904px;}
.fc0_c00024{color:rgb(25,27,14);}
.fs1_c00024{font-size:108.000000px;}
.fs0_c00024{font-size:264.240000px;}
.y0_c00024{bottom:0.000000px;}
.yd_c00024{bottom:206.424000px;}
.yc_c00024{bottom:237.015000px;}
.yb_c00024{bottom:267.606000px;}
.ya_c00024{bottom:298.035000px;}
.y9_c00024{bottom:328.464000px;}
.y8_c00024{bottom:358.893000px;}
.y7_c00024{bottom:389.484000px;}
.y6_c00024{bottom:419.913000px;}
.y5_c00024{bottom:450.342000px;}
.y4_c00024{bottom:480.771000px;}
.y3_c00024{bottom:511.200000px;}
.y2_c00024{bottom:597.787920px;}
.y1_c00024{bottom:668.340000px;}
.h3_c00024{height:93.445312px;}
.h2_c00024{height:94.763672px;}
.h1_c00024{height:231.855117px;}
.h0_c00024{height:810.000000px;}
.w0_c00024{width:1440.000000px;}
.x0_c00024{left:0.000000px;}
.x1_c00024{left:172.800000px;}
.x2_c00024{left:218.214000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls11_c00024{letter-spacing:-1.728000pt;}
.lsc_c00024{letter-spacing:-1.440000pt;}
.ls10_c00024{letter-spacing:-1.152000pt;}
.lse_c00024{letter-spacing:-0.288000pt;}
.lsd_c00024{letter-spacing:-0.192000pt;}
.lsf_c00024{letter-spacing:-0.096000pt;}
.lsb_c00024{letter-spacing:0.000000pt;}
.ls1_c00024{letter-spacing:0.096000pt;}
.ls9_c00024{letter-spacing:0.163200pt;}
.ls2_c00024{letter-spacing:0.192000pt;}
.ls5_c00024{letter-spacing:0.230400pt;}
.ls4_c00024{letter-spacing:0.288000pt;}
.ls3_c00024{letter-spacing:0.336000pt;}
.lsa_c00024{letter-spacing:21.888000pt;}
.ls6_c00024{letter-spacing:21.984000pt;}
.ls7_c00024{letter-spacing:22.464000pt;}
.ls8_c00024{letter-spacing:22.560000pt;}
.ls0_c00024{letter-spacing:103.296000pt;}
.ws1d_c00024{word-spacing:-21.888000pt;}
.ws1b_c00024{word-spacing:-21.859200pt;}
.ws2_c00024{word-spacing:-21.792000pt;}
.ws3_c00024{word-spacing:-21.696000pt;}
.ws7_c00024{word-spacing:-21.600000pt;}
.wsa_c00024{word-spacing:-21.504000pt;}
.ws4_c00024{word-spacing:-21.408000pt;}
.wsb_c00024{word-spacing:-20.544000pt;}
.ws0_c00024{word-spacing:-20.256000pt;}
.ws10_c00024{word-spacing:-19.968000pt;}
.ws20_c00024{word-spacing:-1.644160pt;}
.ws9_c00024{word-spacing:-0.892800pt;}
.ws1a_c00024{word-spacing:-0.643200pt;}
.ws14_c00024{word-spacing:-0.316800pt;}
.ws8_c00024{word-spacing:-0.220800pt;}
.ws22_c00024{word-spacing:-0.192000pt;}
.ws1_c00024{word-spacing:-0.096000pt;}
.ws12_c00024{word-spacing:-0.067200pt;}
.ws21_c00024{word-spacing:0.000000pt;}
.ws1e_c00024{word-spacing:0.028800pt;}
.ws24_c00024{word-spacing:0.096000pt;}
.ws17_c00024{word-spacing:0.192000pt;}
.ws23_c00024{word-spacing:0.288000pt;}
.ws16_c00024{word-spacing:0.316800pt;}
.ws1c_c00024{word-spacing:0.576000pt;}
.wsc_c00024{word-spacing:0.768000pt;}
.wsd_c00024{word-spacing:0.864000pt;}
.ws5_c00024{word-spacing:1.017600pt;}
.ws19_c00024{word-spacing:1.027200pt;}
.ws1f_c00024{word-spacing:1.084800pt;}
.ws15_c00024{word-spacing:1.180800pt;}
.wse_c00024{word-spacing:1.401600pt;}
.ws18_c00024{word-spacing:1.468800pt;}
.wsf_c00024{word-spacing:1.756800pt;}
.ws11_c00024{word-spacing:1.977600pt;}
.ws6_c00024{word-spacing:2.073600pt;}
.ws13_c00024{word-spacing:2.140800pt;}
._3_c00024{margin-left:-3.446400pt;}
._2_c00024{margin-left:-2.292672pt;}
._1_c00024{margin-left:-0.963008pt;}
._0_c00024{width:1.221376pt;}
._4_c00024{width:2.181376pt;}
._5_c00024{width:23.765248pt;}
.fs1_c00024{font-size:96.000000pt;}
.fs0_c00024{font-size:234.880000pt;}
.y0_c00024{bottom:0.000000pt;}
.yd_c00024{bottom:183.488000pt;}
.yc_c00024{bottom:210.680000pt;}
.yb_c00024{bottom:237.872000pt;}
.ya_c00024{bottom:264.920000pt;}
.y9_c00024{bottom:291.968000pt;}
.y8_c00024{bottom:319.016000pt;}
.y7_c00024{bottom:346.208000pt;}
.y6_c00024{bottom:373.256000pt;}
.y5_c00024{bottom:400.304000pt;}
.y4_c00024{bottom:427.352000pt;}
.y3_c00024{bottom:454.400000pt;}
.y2_c00024{bottom:531.367040pt;}
.y1_c00024{bottom:594.080000pt;}
.h3_c00024{height:83.062500pt;}
.h2_c00024{height:84.234375pt;}
.h1_c00024{height:206.093437pt;}
.h0_c00024{height:720.000000pt;}
.w0_c00024{width:1280.000000pt;}
.x0_c00024{left:0.000000pt;}
.x1_c00024{left:153.600000pt;}
.x2_c00024{left:193.968000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba4dc88422ad78c091b89de4.woff')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls0_c00025{letter-spacing:0.000000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:0.000000px;}
._1_c00025{margin-left:-2.933064px;}
._0_c00025{margin-left:-1.083384px;}
.fc0_c00025{color:rgb(25,27,14);}
.fs0_c00025{font-size:264.240000px;}
.y0_c00025{bottom:0.000000px;}
.y2_c00025{bottom:597.787920px;}
.y1_c00025{bottom:668.340000px;}
.h1_c00025{height:231.855117px;}
.h0_c00025{height:810.000000px;}
.w0_c00025{width:1440.000000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:172.800000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ws0_c00025{word-spacing:0.000000pt;}
._1_c00025{margin-left:-2.607168pt;}
._0_c00025{margin-left:-0.963008pt;}
.fs0_c00025{font-size:234.880000pt;}
.y0_c00025{bottom:0.000000pt;}
.y2_c00025{bottom:531.367040pt;}
.y1_c00025{bottom:594.080000pt;}
.h1_c00025{height:206.093437pt;}
.h0_c00025{height:720.000000pt;}
.w0_c00025{width:1280.000000pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:153.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a8b98d9fcd95d54c1721b3f5.woff')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.063477;font-style:normal;font-weight:normal;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_82996884d9ceca57ab086601.woff')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.063477;font-style: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;}
.ls7_c00026{letter-spacing:-0.360720px;}
.ls4_c00026{letter-spacing:-0.240480px;}
.ls3_c00026{letter-spacing:0.000000px;}
.ls5_c00026{letter-spacing:0.120240px;}
.ls6_c00026{letter-spacing:0.240480px;}
.ls2_c00026{letter-spacing:0.264240px;}
.ls1_c00026{letter-spacing:29.699280px;}
.ls0_c00026{letter-spacing:108.815040px;}
.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:-66.324240px;}
.ws2_c00026{word-spacing:-29.699280px;}
.ws4_c00026{word-spacing:-1.923840px;}
.ws8_c00026{word-spacing:-0.721440px;}
.ws7_c00026{word-spacing:-0.240480px;}
.ws6_c00026{word-spacing:-0.120240px;}
.ws3_c00026{word-spacing:0.000000px;}
.ws5_c00026{word-spacing:0.240480px;}
.ws1_c00026{word-spacing:3.943872px;}
._2_c00026{margin-left:-4.629240px;}
._3_c00026{margin-left:-1.490976px;}
._0_c00026{width:1.298592px;}
._1_c00026{width:2.549088px;}
.fc0_c00026{color:rgb(25,27,14);}
.fs1_c00026{font-size:120.240000px;}
.fs0_c00026{font-size:264.240000px;}
.y0_c00026{bottom:0.000000px;}
.y9_c00026{bottom:198.720000px;}
.y8_c00026{bottom:250.560000px;}
.y7_c00026{bottom:302.400000px;}
.y6_c00026{bottom:354.224880px;}
.y5_c00026{bottom:388.072440px;}
.y4_c00026{bottom:421.920000px;}
.y3_c00026{bottom:473.752440px;}
.y2_c00026{bottom:507.600000px;}
.y1_c00026{bottom:668.340000px;}
.h2_c00026{height:105.503555px;}
.h1_c00026{height:231.855117px;}
.h0_c00026{height:810.000000px;}
.w0_c00026{width:1440.000000px;}
.x0_c00026{left:0.000000px;}
.x1_c00026{left:172.800000px;}
.x2_c00026{left:218.190060px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls7_c00026{letter-spacing:-0.320640pt;}
.ls4_c00026{letter-spacing:-0.213760pt;}
.ls3_c00026{letter-spacing:0.000000pt;}
.ls5_c00026{letter-spacing:0.106880pt;}
.ls6_c00026{letter-spacing:0.213760pt;}
.ls2_c00026{letter-spacing:0.234880pt;}
.ls1_c00026{letter-spacing:26.399360pt;}
.ls0_c00026{letter-spacing:96.724480pt;}
.ws0_c00026{word-spacing:-58.954880pt;}
.ws2_c00026{word-spacing:-26.399360pt;}
.ws4_c00026{word-spacing:-1.710080pt;}
.ws8_c00026{word-spacing:-0.641280pt;}
.ws7_c00026{word-spacing:-0.213760pt;}
.ws6_c00026{word-spacing:-0.106880pt;}
.ws3_c00026{word-spacing:0.000000pt;}
.ws5_c00026{word-spacing:0.213760pt;}
.ws1_c00026{word-spacing:3.505664pt;}
._2_c00026{margin-left:-4.114880pt;}
._3_c00026{margin-left:-1.325312pt;}
._0_c00026{width:1.154304pt;}
._1_c00026{width:2.265856pt;}
.fs1_c00026{font-size:106.880000pt;}
.fs0_c00026{font-size:234.880000pt;}
.y0_c00026{bottom:0.000000pt;}
.y9_c00026{bottom:176.640000pt;}
.y8_c00026{bottom:222.720000pt;}
.y7_c00026{bottom:268.800000pt;}
.y6_c00026{bottom:314.866560pt;}
.y5_c00026{bottom:344.953280pt;}
.y4_c00026{bottom:375.040000pt;}
.y3_c00026{bottom:421.113280pt;}
.y2_c00026{bottom:451.200000pt;}
.y1_c00026{bottom:594.080000pt;}
.h2_c00026{height:93.780937pt;}
.h1_c00026{height:206.093437pt;}
.h0_c00026{height:720.000000pt;}
.w0_c00026{width:1280.000000pt;}
.x0_c00026{left:0.000000pt;}
.x1_c00026{left:153.600000pt;}
.x2_c00026{left:193.946720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6bb30835b9b3680db7eb0dd8.woff')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.063477;font-style:normal;font-weight:normal;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_bd0fc1ae4547fd174aab4824.woff')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_28a54cc909f7a93924d06240.woff')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.043457;font-style: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;}
.lse_c00027{letter-spacing:-2.430000px;}
.lsc_c00027{letter-spacing:-1.350000px;}
.lsb_c00027{letter-spacing:-1.170000px;}
.ls8_c00027{letter-spacing:-0.630000px;}
.lsd_c00027{letter-spacing:-0.360000px;}
.lsa_c00027{letter-spacing:-0.270000px;}
.ls7_c00027{letter-spacing:-0.180000px;}
.ls9_c00027{letter-spacing:-0.090000px;}
.ls6_c00027{letter-spacing:0.000000px;}
.ls2_c00027{letter-spacing:0.090000px;}
.ls1_c00027{letter-spacing:0.270000px;}
.ls3_c00027{letter-spacing:17.370000px;}
.ls5_c00027{letter-spacing:19.260000px;}
.ls4_c00027{letter-spacing:20.700000px;}
.ls0_c00027{letter-spacing:127.080000px;}
.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;}
}
.ws2_c00027{word-spacing:-20.610000px;}
.ws5_c00027{word-spacing:-20.430000px;}
.ws0_c00027{word-spacing:-20.340000px;}
.ws13_c00027{word-spacing:-20.160000px;}
.ws3_c00027{word-spacing:-20.070000px;}
.ws1_c00027{word-spacing:-19.710000px;}
.ws9_c00027{word-spacing:-19.170000px;}
.wsc_c00027{word-spacing:-18.990000px;}
.ws11_c00027{word-spacing:-17.910000px;}
.wsa_c00027{word-spacing:-2.790000px;}
.ws12_c00027{word-spacing:-2.610000px;}
.ws6_c00027{word-spacing:-2.250000px;}
.ws15_c00027{word-spacing:-2.070000px;}
.wsf_c00027{word-spacing:-1.980000px;}
.ws1c_c00027{word-spacing:-1.890000px;}
.ws8_c00027{word-spacing:-1.530000px;}
.wse_c00027{word-spacing:-1.350000px;}
.ws7_c00027{word-spacing:-1.170000px;}
.ws1a_c00027{word-spacing:-0.990000px;}
.ws16_c00027{word-spacing:-0.900000px;}
.wsd_c00027{word-spacing:-0.810000px;}
.wsb_c00027{word-spacing:-0.630000px;}
.ws4_c00027{word-spacing:-0.540000px;}
.ws19_c00027{word-spacing:-0.270000px;}
.ws14_c00027{word-spacing:-0.090000px;}
.ws17_c00027{word-spacing:0.000000px;}
.ws10_c00027{word-spacing:0.090000px;}
.ws18_c00027{word-spacing:0.180000px;}
.ws1b_c00027{word-spacing:0.270000px;}
.ws1d_c00027{word-spacing:0.360000px;}
._3_c00027{margin-left:-2.880000px;}
._0_c00027{margin-left:-1.849680px;}
._1_c00027{width:1.080000px;}
._4_c00027{width:2.209680px;}
._5_c00027{width:3.469680px;}
._2_c00027{width:17.730000px;}
.fc1_c00027{color:rgb(0,0,0);}
.fc0_c00027{color:rgb(25,27,14);}
.fs1_c00027{font-size:90.000000px;}
.fs0_c00027{font-size:264.240000px;}
.y0_c00027{bottom:0.000000px;}
.ye_c00027{bottom:172.080000px;}
.yd_c00027{bottom:194.760000px;}
.yc_c00027{bottom:217.440000px;}
.yb_c00027{bottom:258.120000px;}
.ya_c00027{bottom:280.800000px;}
.y9_c00027{bottom:321.480000px;}
.y8_c00027{bottom:344.160000px;}
.y7_c00027{bottom:385.020000px;}
.y6_c00027{bottom:410.580000px;}
.y5_c00027{bottom:451.260000px;}
.y4_c00027{bottom:492.120000px;}
.y3_c00027{bottom:517.500000px;}
.y2_c00027{bottom:597.787920px;}
.y1_c00027{bottom:668.340000px;}
.h3_c00027{height:77.871094px;}
.h2_c00027{height:78.969727px;}
.h1_c00027{height:231.855117px;}
.h0_c00027{height:810.000000px;}
.w0_c00027{width:1440.000000px;}
.x0_c00027{left:0.000000px;}
.x1_c00027{left:172.800000px;}
.x2_c00027{left:218.160000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.lse_c00027{letter-spacing:-2.160000pt;}
.lsc_c00027{letter-spacing:-1.200000pt;}
.lsb_c00027{letter-spacing:-1.040000pt;}
.ls8_c00027{letter-spacing:-0.560000pt;}
.lsd_c00027{letter-spacing:-0.320000pt;}
.lsa_c00027{letter-spacing:-0.240000pt;}
.ls7_c00027{letter-spacing:-0.160000pt;}
.ls9_c00027{letter-spacing:-0.080000pt;}
.ls6_c00027{letter-spacing:0.000000pt;}
.ls2_c00027{letter-spacing:0.080000pt;}
.ls1_c00027{letter-spacing:0.240000pt;}
.ls3_c00027{letter-spacing:15.440000pt;}
.ls5_c00027{letter-spacing:17.120000pt;}
.ls4_c00027{letter-spacing:18.400000pt;}
.ls0_c00027{letter-spacing:112.960000pt;}
.ws2_c00027{word-spacing:-18.320000pt;}
.ws5_c00027{word-spacing:-18.160000pt;}
.ws0_c00027{word-spacing:-18.080000pt;}
.ws13_c00027{word-spacing:-17.920000pt;}
.ws3_c00027{word-spacing:-17.840000pt;}
.ws1_c00027{word-spacing:-17.520000pt;}
.ws9_c00027{word-spacing:-17.040000pt;}
.wsc_c00027{word-spacing:-16.880000pt;}
.ws11_c00027{word-spacing:-15.920000pt;}
.wsa_c00027{word-spacing:-2.480000pt;}
.ws12_c00027{word-spacing:-2.320000pt;}
.ws6_c00027{word-spacing:-2.000000pt;}
.ws15_c00027{word-spacing:-1.840000pt;}
.wsf_c00027{word-spacing:-1.760000pt;}
.ws1c_c00027{word-spacing:-1.680000pt;}
.ws8_c00027{word-spacing:-1.360000pt;}
.wse_c00027{word-spacing:-1.200000pt;}
.ws7_c00027{word-spacing:-1.040000pt;}
.ws1a_c00027{word-spacing:-0.880000pt;}
.ws16_c00027{word-spacing:-0.800000pt;}
.wsd_c00027{word-spacing:-0.720000pt;}
.wsb_c00027{word-spacing:-0.560000pt;}
.ws4_c00027{word-spacing:-0.480000pt;}
.ws19_c00027{word-spacing:-0.240000pt;}
.ws14_c00027{word-spacing:-0.080000pt;}
.ws17_c00027{word-spacing:0.000000pt;}
.ws10_c00027{word-spacing:0.080000pt;}
.ws18_c00027{word-spacing:0.160000pt;}
.ws1b_c00027{word-spacing:0.240000pt;}
.ws1d_c00027{word-spacing:0.320000pt;}
._3_c00027{margin-left:-2.560000pt;}
._0_c00027{margin-left:-1.644160pt;}
._1_c00027{width:0.960000pt;}
._4_c00027{width:1.964160pt;}
._5_c00027{width:3.084160pt;}
._2_c00027{width:15.760000pt;}
.fs1_c00027{font-size:80.000000pt;}
.fs0_c00027{font-size:234.880000pt;}
.y0_c00027{bottom:0.000000pt;}
.ye_c00027{bottom:152.960000pt;}
.yd_c00027{bottom:173.120000pt;}
.yc_c00027{bottom:193.280000pt;}
.yb_c00027{bottom:229.440000pt;}
.ya_c00027{bottom:249.600000pt;}
.y9_c00027{bottom:285.760000pt;}
.y8_c00027{bottom:305.920000pt;}
.y7_c00027{bottom:342.240000pt;}
.y6_c00027{bottom:364.960000pt;}
.y5_c00027{bottom:401.120000pt;}
.y4_c00027{bottom:437.440000pt;}
.y3_c00027{bottom:460.000000pt;}
.y2_c00027{bottom:531.367040pt;}
.y1_c00027{bottom:594.080000pt;}
.h3_c00027{height:69.218750pt;}
.h2_c00027{height:70.195312pt;}
.h1_c00027{height:206.093437pt;}
.h0_c00027{height:720.000000pt;}
.w0_c00027{width:1280.000000pt;}
.x0_c00027{left:0.000000pt;}
.x1_c00027{left:153.600000pt;}
.x2_c00027{left:193.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_44df4f1182cc8547f4f0f2d4.woff')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.063477;font-style:normal;font-weight:normal;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_afab2961cc1b9a650e697e7e.woff')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.063477;font-style: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;}
.ls5_c00028{letter-spacing:-0.240480px;}
.ls6_c00028{letter-spacing:0.000000px;}
.ls2_c00028{letter-spacing:0.144000px;}
.ls7_c00028{letter-spacing:0.360720px;}
.ls4_c00028{letter-spacing:0.480960px;}
.ls3_c00028{letter-spacing:0.720000px;}
.ls1_c00028{letter-spacing:30.339360px;}
.ls0_c00028{letter-spacing:36.576000px;}
.sc__c00028{text-shadow:none;}
.sc1_c00028{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
.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;}
.sc1_c00028{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00028{word-spacing:-36.144000px;}
.ws2_c00028{word-spacing:-30.540960px;}
.ws3_c00028{word-spacing:-30.420720px;}
.ws5_c00028{word-spacing:-2.880000px;}
.ws8_c00028{word-spacing:-2.404800px;}
.wsa_c00028{word-spacing:-1.683360px;}
.ws6_c00028{word-spacing:-0.480960px;}
.ws9_c00028{word-spacing:-0.240480px;}
.ws4_c00028{word-spacing:-0.144000px;}
.ws0_c00028{word-spacing:0.000000px;}
.ws7_c00028{word-spacing:0.240480px;}
._4_c00028{margin-left:-3.935016px;}
._2_c00028{margin-left:-2.668968px;}
._1_c00028{margin-left:-1.022400px;}
._0_c00028{width:1.152000px;}
._6_c00028{width:2.591856px;}
._5_c00028{width:4.003992px;}
._3_c00028{width:26.770680px;}
._7_c00028{width:28.185768px;}
.fc0_c00028{color:rgb(25,27,14);}
.fs1_c00028{font-size:120.240000px;}
.fs0_c00028{font-size:144.000000px;}
.y0_c00028{bottom:0.000000px;}
.ya_c00028{bottom:216.720000px;}
.y9_c00028{bottom:250.560000px;}
.y8_c00028{bottom:284.400000px;}
.y7_c00028{bottom:336.240000px;}
.y6_c00028{bottom:388.080000px;}
.y5_c00028{bottom:439.904880px;}
.y4_c00028{bottom:473.752440px;}
.y3_c00028{bottom:507.600000px;}
.y2_c00028{bottom:655.020000px;}
.y1_c00028{bottom:693.360000px;}
.h2_c00028{height:105.503555px;}
.h1_c00028{height:126.351562px;}
.h0_c00028{height:810.000000px;}
.w0_c00028{width:1440.000000px;}
.x0_c00028{left:0.000000px;}
.x1_c00028{left:172.800000px;}
.x2_c00028{left:221.580000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls5_c00028{letter-spacing:-0.213760pt;}
.ls6_c00028{letter-spacing:0.000000pt;}
.ls2_c00028{letter-spacing:0.128000pt;}
.ls7_c00028{letter-spacing:0.320640pt;}
.ls4_c00028{letter-spacing:0.427520pt;}
.ls3_c00028{letter-spacing:0.640000pt;}
.ls1_c00028{letter-spacing:26.968320pt;}
.ls0_c00028{letter-spacing:32.512000pt;}
.ws1_c00028{word-spacing:-32.128000pt;}
.ws2_c00028{word-spacing:-27.147520pt;}
.ws3_c00028{word-spacing:-27.040640pt;}
.ws5_c00028{word-spacing:-2.560000pt;}
.ws8_c00028{word-spacing:-2.137600pt;}
.wsa_c00028{word-spacing:-1.496320pt;}
.ws6_c00028{word-spacing:-0.427520pt;}
.ws9_c00028{word-spacing:-0.213760pt;}
.ws4_c00028{word-spacing:-0.128000pt;}
.ws0_c00028{word-spacing:0.000000pt;}
.ws7_c00028{word-spacing:0.213760pt;}
._4_c00028{margin-left:-3.497792pt;}
._2_c00028{margin-left:-2.372416pt;}
._1_c00028{margin-left:-0.908800pt;}
._0_c00028{width:1.024000pt;}
._6_c00028{width:2.303872pt;}
._5_c00028{width:3.559104pt;}
._3_c00028{width:23.796160pt;}
._7_c00028{width:25.054016pt;}
.fs1_c00028{font-size:106.880000pt;}
.fs0_c00028{font-size:128.000000pt;}
.y0_c00028{bottom:0.000000pt;}
.ya_c00028{bottom:192.640000pt;}
.y9_c00028{bottom:222.720000pt;}
.y8_c00028{bottom:252.800000pt;}
.y7_c00028{bottom:298.880000pt;}
.y6_c00028{bottom:344.960000pt;}
.y5_c00028{bottom:391.026560pt;}
.y4_c00028{bottom:421.113280pt;}
.y3_c00028{bottom:451.200000pt;}
.y2_c00028{bottom:582.240000pt;}
.y1_c00028{bottom:616.320000pt;}
.h2_c00028{height:93.780937pt;}
.h1_c00028{height:112.312500pt;}
.h0_c00028{height:720.000000pt;}
.w0_c00028{width:1280.000000pt;}
.x0_c00028{left:0.000000pt;}
.x1_c00028{left:153.600000pt;}
.x2_c00028{left:196.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_65ee5474b2a28f70a7fc03d1.woff')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.063477;font-style:normal;font-weight:normal;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_b1ac5d943cf7c068607a0e84.woff')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.063477;font-style: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;}
.ls5_c00029{letter-spacing:-2.298240px;}
.ls4_c00029{letter-spacing:-0.288000px;}
.ls9_c00029{letter-spacing:-0.287280px;}
.ls6_c00029{letter-spacing:-0.191520px;}
.ls7_c00029{letter-spacing:-0.095760px;}
.ls8_c00029{letter-spacing:0.000000px;}
.ls3_c00029{letter-spacing:0.144000px;}
.lsa_c00029{letter-spacing:0.478800px;}
.lsb_c00029{letter-spacing:0.670320px;}
.ls1_c00029{letter-spacing:35.856000px;}
.ls0_c00029{letter-spacing:36.000000px;}
.ls2_c00029{letter-spacing:123.600960px;}
.sc__c00029{text-shadow:none;}
.sc1_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00029{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc1_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00029{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws8_c00029{word-spacing:-0.670320px;}
.ws7_c00029{word-spacing:-0.478800px;}
.ws0_c00029{word-spacing:-0.144000px;}
.ws1_c00029{word-spacing:0.000000px;}
.ws5_c00029{word-spacing:0.095760px;}
.ws4_c00029{word-spacing:0.191520px;}
.ws2_c00029{word-spacing:0.288000px;}
.ws6_c00029{word-spacing:0.861840px;}
.ws3_c00029{word-spacing:2.298240px;}
._6_c00029{margin-left:-7.101720px;}
._3_c00029{margin-left:-3.139200px;}
._1_c00029{margin-left:-2.030400px;}
._2_c00029{margin-left:-1.022400px;}
._0_c00029{width:1.584000px;}
._4_c00029{width:2.767464px;}
._5_c00029{width:3.845880px;}
.fc0_c00029{color:rgb(25,27,14);}
.fs1_c00029{font-size:95.760000px;}
.fs0_c00029{font-size:144.000000px;}
.y0_c00029{bottom:0.000000px;}
.yc_c00029{bottom:164.700000px;}
.yb_c00029{bottom:204.120000px;}
.ya_c00029{bottom:243.360000px;}
.y9_c00029{bottom:282.780000px;}
.y8_c00029{bottom:322.020000px;}
.y7_c00029{bottom:361.260000px;}
.y6_c00029{bottom:400.680000px;}
.y5_c00029{bottom:439.920000px;}
.y4_c00029{bottom:479.340000px;}
.y3_c00029{bottom:518.580000px;}
.y2_c00029{bottom:655.020000px;}
.y1_c00029{bottom:693.360000px;}
.h2_c00029{height:84.023789px;}
.h1_c00029{height:126.351562px;}
.h0_c00029{height:810.000000px;}
.w0_c00029{width:1440.000000px;}
.x0_c00029{left:0.000000px;}
.x1_c00029{left:172.800000px;}
.x2_c00029{left:210.960000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls5_c00029{letter-spacing:-2.042880pt;}
.ls4_c00029{letter-spacing:-0.256000pt;}
.ls9_c00029{letter-spacing:-0.255360pt;}
.ls6_c00029{letter-spacing:-0.170240pt;}
.ls7_c00029{letter-spacing:-0.085120pt;}
.ls8_c00029{letter-spacing:0.000000pt;}
.ls3_c00029{letter-spacing:0.128000pt;}
.lsa_c00029{letter-spacing:0.425600pt;}
.lsb_c00029{letter-spacing:0.595840pt;}
.ls1_c00029{letter-spacing:31.872000pt;}
.ls0_c00029{letter-spacing:32.000000pt;}
.ls2_c00029{letter-spacing:109.867520pt;}
.ws8_c00029{word-spacing:-0.595840pt;}
.ws7_c00029{word-spacing:-0.425600pt;}
.ws0_c00029{word-spacing:-0.128000pt;}
.ws1_c00029{word-spacing:0.000000pt;}
.ws5_c00029{word-spacing:0.085120pt;}
.ws4_c00029{word-spacing:0.170240pt;}
.ws2_c00029{word-spacing:0.256000pt;}
.ws6_c00029{word-spacing:0.766080pt;}
.ws3_c00029{word-spacing:2.042880pt;}
._6_c00029{margin-left:-6.312640pt;}
._3_c00029{margin-left:-2.790400pt;}
._1_c00029{margin-left:-1.804800pt;}
._2_c00029{margin-left:-0.908800pt;}
._0_c00029{width:1.408000pt;}
._4_c00029{width:2.459968pt;}
._5_c00029{width:3.418560pt;}
.fs1_c00029{font-size:85.120000pt;}
.fs0_c00029{font-size:128.000000pt;}
.y0_c00029{bottom:0.000000pt;}
.yc_c00029{bottom:146.400000pt;}
.yb_c00029{bottom:181.440000pt;}
.ya_c00029{bottom:216.320000pt;}
.y9_c00029{bottom:251.360000pt;}
.y8_c00029{bottom:286.240000pt;}
.y7_c00029{bottom:321.120000pt;}
.y6_c00029{bottom:356.160000pt;}
.y5_c00029{bottom:391.040000pt;}
.y4_c00029{bottom:426.080000pt;}
.y3_c00029{bottom:460.960000pt;}
.y2_c00029{bottom:582.240000pt;}
.y1_c00029{bottom:616.320000pt;}
.h2_c00029{height:74.687812pt;}
.h1_c00029{height:112.312500pt;}
.h0_c00029{height:720.000000pt;}
.w0_c00029{width:1280.000000pt;}
.x0_c00029{left:0.000000pt;}
.x1_c00029{left:153.600000pt;}
.x2_c00029{left:187.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_94f2619d73e378bd76de2261.woff')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.063477;font-style:normal;font-weight:normal;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_732269633fdc3199186b1aec.woff')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.063477;font-style: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.240480px;}
.ls4_c00030{letter-spacing:0.000000px;}
.ls6_c00030{letter-spacing:0.120240px;}
.ls3_c00030{letter-spacing:0.144000px;}
.ls8_c00030{letter-spacing:0.240480px;}
.ls7_c00030{letter-spacing:0.360720px;}
.ls9_c00030{letter-spacing:0.480960px;}
.ls0_c00030{letter-spacing:35.280000px;}
.ls2_c00030{letter-spacing:108.815040px;}
.ls1_c00030{letter-spacing:303.935040px;}
.sc__c00030{text-shadow:none;}
.sc1_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00030{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc1_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00030{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws0_c00030{word-spacing:-30.060000px;}
.ws1_c00030{word-spacing:-29.819520px;}
.ws8_c00030{word-spacing:-0.480960px;}
.ws6_c00030{word-spacing:-0.360720px;}
.ws7_c00030{word-spacing:-0.240480px;}
.ws2_c00030{word-spacing:-0.144000px;}
.ws5_c00030{word-spacing:-0.120240px;}
.ws3_c00030{word-spacing:0.000000px;}
.ws4_c00030{word-spacing:0.240480px;}
._7_c00030{margin-left:-5.231448px;}
._4_c00030{margin-left:-3.658608px;}
._1_c00030{margin-left:-2.030400px;}
._2_c00030{margin-left:-1.022400px;}
._0_c00030{width:1.584000px;}
._5_c00030{width:27.048528px;}
._3_c00030{width:28.540800px;}
._6_c00030{width:108.815040px;}
.fc0_c00030{color:rgb(25,27,14);}
.fs1_c00030{font-size:120.240000px;}
.fs0_c00030{font-size:144.000000px;}
.y0_c00030{bottom:0.000000px;}
.yc_c00030{bottom:149.040000px;}
.yb_c00030{bottom:179.280000px;}
.ya_c00030{bottom:227.519640px;}
.y9_c00030{bottom:257.760000px;}
.y8_c00030{bottom:306.000000px;}
.y7_c00030{bottom:354.239640px;}
.y6_c00030{bottom:384.480000px;}
.y5_c00030{bottom:432.719640px;}
.y4_c00030{bottom:462.960000px;}
.y3_c00030{bottom:511.200000px;}
.y2_c00030{bottom:655.020000px;}
.y1_c00030{bottom:693.360000px;}
.h2_c00030{height:105.503555px;}
.h1_c00030{height:126.351562px;}
.h0_c00030{height:810.000000px;}
.w0_c00030{width:1440.000000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:172.800000px;}
.x2_c00030{left:218.168820px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls5_c00030{letter-spacing:-0.213760pt;}
.ls4_c00030{letter-spacing:0.000000pt;}
.ls6_c00030{letter-spacing:0.106880pt;}
.ls3_c00030{letter-spacing:0.128000pt;}
.ls8_c00030{letter-spacing:0.213760pt;}
.ls7_c00030{letter-spacing:0.320640pt;}
.ls9_c00030{letter-spacing:0.427520pt;}
.ls0_c00030{letter-spacing:31.360000pt;}
.ls2_c00030{letter-spacing:96.724480pt;}
.ls1_c00030{letter-spacing:270.164480pt;}
.ws0_c00030{word-spacing:-26.720000pt;}
.ws1_c00030{word-spacing:-26.506240pt;}
.ws8_c00030{word-spacing:-0.427520pt;}
.ws6_c00030{word-spacing:-0.320640pt;}
.ws7_c00030{word-spacing:-0.213760pt;}
.ws2_c00030{word-spacing:-0.128000pt;}
.ws5_c00030{word-spacing:-0.106880pt;}
.ws3_c00030{word-spacing:0.000000pt;}
.ws4_c00030{word-spacing:0.213760pt;}
._7_c00030{margin-left:-4.650176pt;}
._4_c00030{margin-left:-3.252096pt;}
._1_c00030{margin-left:-1.804800pt;}
._2_c00030{margin-left:-0.908800pt;}
._0_c00030{width:1.408000pt;}
._5_c00030{width:24.043136pt;}
._3_c00030{width:25.369600pt;}
._6_c00030{width:96.724480pt;}
.fs1_c00030{font-size:106.880000pt;}
.fs0_c00030{font-size:128.000000pt;}
.y0_c00030{bottom:0.000000pt;}
.yc_c00030{bottom:132.480000pt;}
.yb_c00030{bottom:159.360000pt;}
.ya_c00030{bottom:202.239680pt;}
.y9_c00030{bottom:229.120000pt;}
.y8_c00030{bottom:272.000000pt;}
.y7_c00030{bottom:314.879680pt;}
.y6_c00030{bottom:341.760000pt;}
.y5_c00030{bottom:384.639680pt;}
.y4_c00030{bottom:411.520000pt;}
.y3_c00030{bottom:454.400000pt;}
.y2_c00030{bottom:582.240000pt;}
.y1_c00030{bottom:616.320000pt;}
.h2_c00030{height:93.780937pt;}
.h1_c00030{height:112.312500pt;}
.h0_c00030{height:720.000000pt;}
.w0_c00030{width:1280.000000pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:153.600000pt;}
.x2_c00030{left:193.927840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5417d280ac1c7acb72bcc8ea.woff')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.063477;font-style:normal;font-weight:normal;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_f817fa2c1342d66bff34b1ab.woff')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.063477;font-style:normal;font-weight:normal;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_5e74a7dcff074b3f67f62ee4.woff')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00031;src:url('chunks/assets/font_a5c63986de940c77c054b7f4.woff')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00031;src:url('chunks/assets/font_ac5137a3053bf48daff908e8.woff')format("woff");}.ff5_c00031{font-family:ff5_c00031;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsf_c00031{letter-spacing:-1.365120px;}
.lsc_c00031{letter-spacing:-0.227520px;}
.lsd_c00031{letter-spacing:-0.113760px;}
.ls8_c00031{letter-spacing:0.000000px;}
.ls3_c00031{letter-spacing:0.113760px;}
.ls7_c00031{letter-spacing:0.144000px;}
.ls4_c00031{letter-spacing:0.227520px;}
.lsb_c00031{letter-spacing:0.341280px;}
.lse_c00031{letter-spacing:0.568800px;}
.ls9_c00031{letter-spacing:0.682560px;}
.lsa_c00031{letter-spacing:1.023840px;}
.ls5_c00031{letter-spacing:26.164800px;}
.ls6_c00031{letter-spacing:26.278560px;}
.ls0_c00031{letter-spacing:36.000000px;}
.ls2_c00031{letter-spacing:112.728960px;}
.ls1_c00031{letter-spacing:297.768960px;}
.sc__c00031{text-shadow:none;}
.sc1_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00031{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc1_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00031{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws0_c00031{word-spacing:-29.463840px;}
.ws2_c00031{word-spacing:-28.667520px;}
.ws1_c00031{word-spacing:-28.440000px;}
.ws3_c00031{word-spacing:-28.326240px;}
.wsa_c00031{word-spacing:-3.185280px;}
.wsd_c00031{word-spacing:-0.682560px;}
.wsf_c00031{word-spacing:-0.568800px;}
.wsb_c00031{word-spacing:-0.341280px;}
.ws9_c00031{word-spacing:-0.144000px;}
.ws4_c00031{word-spacing:-0.113760px;}
.ws5_c00031{word-spacing:0.000000px;}
.wse_c00031{word-spacing:0.113760px;}
.ws10_c00031{word-spacing:0.227520px;}
.wsc_c00031{word-spacing:0.568800px;}
.ws6_c00031{word-spacing:1.251360px;}
.ws8_c00031{word-spacing:25.596000px;}
.ws7_c00031{word-spacing:25.937280px;}
._1_c00031{margin-left:-2.030400px;}
._2_c00031{margin-left:-1.022400px;}
._0_c00031{width:1.584000px;}
._3_c00031{width:4.109760px;}
.fc2_c00031{color:rgb(0,0,0);}
.fc1_c00031{color:rgb(255,0,0);}
.fc0_c00031{color:rgb(25,27,14);}
.fs1_c00031{font-size:113.760000px;}
.fs0_c00031{font-size:144.000000px;}
.y0_c00031{bottom:0.000000px;}
.yb_c00031{bottom:139.320000px;}
.ya_c00031{bottom:185.400000px;}
.y9_c00031{bottom:232.020000px;}
.y8_c00031{bottom:278.820000px;}
.y7_c00031{bottom:325.440000px;}
.y6_c00031{bottom:372.240000px;}
.y5_c00031{bottom:419.040000px;}
.y4_c00031{bottom:465.660000px;}
.y3_c00031{bottom:512.460000px;}
.y2_c00031{bottom:655.020000px;}
.y1_c00031{bottom:693.360000px;}
.h2_c00031{height:99.817734px;}
.h1_c00031{height:126.351562px;}
.h0_c00031{height:810.000000px;}
.w0_c00031{width:1440.000000px;}
.x0_c00031{left:0.000000px;}
.x1_c00031{left:172.800000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.lsf_c00031{letter-spacing:-1.213440pt;}
.lsc_c00031{letter-spacing:-0.202240pt;}
.lsd_c00031{letter-spacing:-0.101120pt;}
.ls8_c00031{letter-spacing:0.000000pt;}
.ls3_c00031{letter-spacing:0.101120pt;}
.ls7_c00031{letter-spacing:0.128000pt;}
.ls4_c00031{letter-spacing:0.202240pt;}
.lsb_c00031{letter-spacing:0.303360pt;}
.lse_c00031{letter-spacing:0.505600pt;}
.ls9_c00031{letter-spacing:0.606720pt;}
.lsa_c00031{letter-spacing:0.910080pt;}
.ls5_c00031{letter-spacing:23.257600pt;}
.ls6_c00031{letter-spacing:23.358720pt;}
.ls0_c00031{letter-spacing:32.000000pt;}
.ls2_c00031{letter-spacing:100.203520pt;}
.ls1_c00031{letter-spacing:264.683520pt;}
.ws0_c00031{word-spacing:-26.190080pt;}
.ws2_c00031{word-spacing:-25.482240pt;}
.ws1_c00031{word-spacing:-25.280000pt;}
.ws3_c00031{word-spacing:-25.178880pt;}
.wsa_c00031{word-spacing:-2.831360pt;}
.wsd_c00031{word-spacing:-0.606720pt;}
.wsf_c00031{word-spacing:-0.505600pt;}
.wsb_c00031{word-spacing:-0.303360pt;}
.ws9_c00031{word-spacing:-0.128000pt;}
.ws4_c00031{word-spacing:-0.101120pt;}
.ws5_c00031{word-spacing:0.000000pt;}
.wse_c00031{word-spacing:0.101120pt;}
.ws10_c00031{word-spacing:0.202240pt;}
.wsc_c00031{word-spacing:0.505600pt;}
.ws6_c00031{word-spacing:1.112320pt;}
.ws8_c00031{word-spacing:22.752000pt;}
.ws7_c00031{word-spacing:23.055360pt;}
._1_c00031{margin-left:-1.804800pt;}
._2_c00031{margin-left:-0.908800pt;}
._0_c00031{width:1.408000pt;}
._3_c00031{width:3.653120pt;}
.fs1_c00031{font-size:101.120000pt;}
.fs0_c00031{font-size:128.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.yb_c00031{bottom:123.840000pt;}
.ya_c00031{bottom:164.800000pt;}
.y9_c00031{bottom:206.240000pt;}
.y8_c00031{bottom:247.840000pt;}
.y7_c00031{bottom:289.280000pt;}
.y6_c00031{bottom:330.880000pt;}
.y5_c00031{bottom:372.480000pt;}
.y4_c00031{bottom:413.920000pt;}
.y3_c00031{bottom:455.520000pt;}
.y2_c00031{bottom:582.240000pt;}
.y1_c00031{bottom:616.320000pt;}
.h2_c00031{height:88.726875pt;}
.h1_c00031{height:112.312500pt;}
.h0_c00031{height:720.000000pt;}
.w0_c00031{width:1280.000000pt;}
.x0_c00031{left:0.000000pt;}
.x1_c00031{left:153.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ebb19e9e355f1b24ad6adc73.woff')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.063477;font-style:normal;font-weight:normal;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_8ad0400aedd10f596daa5631.woff')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00032;src:url('chunks/assets/font_7775d06fa8c6724f8fdc747b.woff')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:0.923828;font-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_c00032{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,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;}
.ls9_c00032{letter-spacing:-0.204480px;}
.ls8_c00032{letter-spacing:-0.102240px;}
.ls5_c00032{letter-spacing:0.000000px;}
.lse_c00032{letter-spacing:0.102240px;}
.lsb_c00032{letter-spacing:0.107770px;}
.ls6_c00032{letter-spacing:0.144000px;}
.lsa_c00032{letter-spacing:0.215541px;}
.lsc_c00032{letter-spacing:0.306720px;}
.lsd_c00032{letter-spacing:0.511200px;}
.ls7_c00032{letter-spacing:0.613440px;}
.ls4_c00032{letter-spacing:0.864000px;}
.ls3_c00032{letter-spacing:1.080000px;}
.ls2_c00032{letter-spacing:25.047360px;}
.ls1_c00032{letter-spacing:119.687040px;}
.ls0_c00032{letter-spacing:285.287040px;}
.sc__c00032{text-shadow:none;}
.sc1_c00032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00032{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00032{-webkit-text-stroke:0px transparent;}
.sc1_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00032{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws1_c00032{word-spacing:-36.144000px;}
.ws0_c00032{word-spacing:-36.000000px;}
.ws4_c00032{word-spacing:-27.158147px;}
.ws2_c00032{word-spacing:-26.173440px;}
.ws6_c00032{word-spacing:-26.071200px;}
.ws7_c00032{word-spacing:-25.662240px;}
.ws5_c00032{word-spacing:-25.560000px;}
.ws3_c00032{word-spacing:-25.355520px;}
.ws8_c00032{word-spacing:-0.864000px;}
.wsc_c00032{word-spacing:-0.613440px;}
.wse_c00032{word-spacing:-0.511200px;}
.wsd_c00032{word-spacing:-0.306720px;}
.ws10_c00032{word-spacing:-0.215541px;}
.wsb_c00032{word-spacing:-0.107770px;}
.wsf_c00032{word-spacing:-0.102240px;}
.ws9_c00032{word-spacing:0.000000px;}
.wsa_c00032{word-spacing:0.102240px;}
._0_c00032{margin-left:-1.872000px;}
._1_c00032{width:1.296000px;}
._2_c00032{width:2.405342px;}
.fc0_c00032{color:rgb(25,27,14);}
.fs1_c00032{font-size:102.240000px;}
.fs2_c00032{font-size:107.770423px;}
.fs0_c00032{font-size:144.000000px;}
.y0_c00032{bottom:0.000000px;}
.yc_c00032{bottom:148.680000px;}
.yb_c00032{bottom:181.800000px;}
.ya_c00032{bottom:214.920000px;}
.y9_c00032{bottom:255.600000px;}
.y8_c00032{bottom:296.280000px;}
.y7_c00032{bottom:336.960000px;}
.y6_c00032{bottom:370.080000px;}
.y5_c00032{bottom:403.200000px;}
.y4_c00032{bottom:436.320000px;}
.y3_c00032{bottom:477.000000px;}
.y2_c00032{bottom:517.680000px;}
.y1_c00032{bottom:693.360000px;}
.h4_c00032{height:76.680000px;}
.h2_c00032{height:89.709609px;}
.h3_c00032{height:94.562231px;}
.h1_c00032{height:126.351562px;}
.h0_c00032{height:810.000000px;}
.w0_c00032{width:1440.000000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:172.800000px;}
.x2_c00032{left:235.440000px;}
.x3_c00032{left:280.800000px;}
.x4_c00032{left:388.260000px;}
.x5_c00032{left:583.560000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls9_c00032{letter-spacing:-0.181760pt;}
.ls8_c00032{letter-spacing:-0.090880pt;}
.ls5_c00032{letter-spacing:0.000000pt;}
.lse_c00032{letter-spacing:0.090880pt;}
.lsb_c00032{letter-spacing:0.095796pt;}
.ls6_c00032{letter-spacing:0.128000pt;}
.lsa_c00032{letter-spacing:0.191592pt;}
.lsc_c00032{letter-spacing:0.272640pt;}
.lsd_c00032{letter-spacing:0.454400pt;}
.ls7_c00032{letter-spacing:0.545280pt;}
.ls4_c00032{letter-spacing:0.768000pt;}
.ls3_c00032{letter-spacing:0.960000pt;}
.ls2_c00032{letter-spacing:22.264320pt;}
.ls1_c00032{letter-spacing:106.388480pt;}
.ls0_c00032{letter-spacing:253.588480pt;}
.ws1_c00032{word-spacing:-32.128000pt;}
.ws0_c00032{word-spacing:-32.000000pt;}
.ws4_c00032{word-spacing:-24.140575pt;}
.ws2_c00032{word-spacing:-23.265280pt;}
.ws6_c00032{word-spacing:-23.174400pt;}
.ws7_c00032{word-spacing:-22.810880pt;}
.ws5_c00032{word-spacing:-22.720000pt;}
.ws3_c00032{word-spacing:-22.538240pt;}
.ws8_c00032{word-spacing:-0.768000pt;}
.wsc_c00032{word-spacing:-0.545280pt;}
.wse_c00032{word-spacing:-0.454400pt;}
.wsd_c00032{word-spacing:-0.272640pt;}
.ws10_c00032{word-spacing:-0.191592pt;}
.wsb_c00032{word-spacing:-0.095796pt;}
.wsf_c00032{word-spacing:-0.090880pt;}
.ws9_c00032{word-spacing:0.000000pt;}
.wsa_c00032{word-spacing:0.090880pt;}
._0_c00032{margin-left:-1.664000pt;}
._1_c00032{width:1.152000pt;}
._2_c00032{width:2.138082pt;}
.fs1_c00032{font-size:90.880000pt;}
.fs2_c00032{font-size:95.795931pt;}
.fs0_c00032{font-size:128.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.yc_c00032{bottom:132.160000pt;}
.yb_c00032{bottom:161.600000pt;}
.ya_c00032{bottom:191.040000pt;}
.y9_c00032{bottom:227.200000pt;}
.y8_c00032{bottom:263.360000pt;}
.y7_c00032{bottom:299.520000pt;}
.y6_c00032{bottom:328.960000pt;}
.y5_c00032{bottom:358.400000pt;}
.y4_c00032{bottom:387.840000pt;}
.y3_c00032{bottom:424.000000pt;}
.y2_c00032{bottom:460.160000pt;}
.y1_c00032{bottom:616.320000pt;}
.h4_c00032{height:68.160000pt;}
.h2_c00032{height:79.741875pt;}
.h3_c00032{height:84.055317pt;}
.h1_c00032{height:112.312500pt;}
.h0_c00032{height:720.000000pt;}
.w0_c00032{width:1280.000000pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:153.600000pt;}
.x2_c00032{left:209.280000pt;}
.x3_c00032{left:249.600000pt;}
.x4_c00032{left:345.120000pt;}
.x5_c00032{left:518.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ff165c4f7f1a8dfb469a7468.woff')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.063477;font-style:normal;font-weight:normal;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_8164547f71f7d4bb1e4c8bda.woff')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.063477;font-style: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;}
.lsa_c00033{letter-spacing:-1.923840px;}
.lsb_c00033{letter-spacing:-0.601200px;}
.ls9_c00033{letter-spacing:-0.360720px;}
.ls6_c00033{letter-spacing:-0.240480px;}
.ls4_c00033{letter-spacing:0.000000px;}
.ls2_c00033{letter-spacing:0.120240px;}
.ls5_c00033{letter-spacing:0.144000px;}
.ls7_c00033{letter-spacing:0.480960px;}
.ls8_c00033{letter-spacing:0.721440px;}
.ls3_c00033{letter-spacing:0.864000px;}
.ls1_c00033{letter-spacing:108.815040px;}
.ls0_c00033{letter-spacing:303.935040px;}
.sc__c00033{text-shadow:none;}
.sc1_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00033{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc1_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00033{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws1_c00033{word-spacing:-36.144000px;}
.ws0_c00033{word-spacing:-36.000000px;}
.ws3_c00033{word-spacing:-30.060000px;}
.ws5_c00033{word-spacing:-29.699280px;}
.ws2_c00033{word-spacing:-3.496248px;}
.ws4_c00033{word-spacing:-2.188368px;}
.ws6_c00033{word-spacing:-1.695384px;}
.ws7_c00033{word-spacing:-0.864000px;}
.wsa_c00033{word-spacing:-0.721440px;}
.wsd_c00033{word-spacing:-0.480960px;}
.wsb_c00033{word-spacing:-0.120240px;}
.ws8_c00033{word-spacing:0.000000px;}
.ws9_c00033{word-spacing:0.240480px;}
.wse_c00033{word-spacing:0.601200px;}
.wsc_c00033{word-spacing:1.923840px;}
._2_c00033{margin-left:-3.231144px;}
._0_c00033{margin-left:-1.872000px;}
._1_c00033{width:1.296000px;}
._4_c00033{width:2.873736px;}
._3_c00033{width:27.621072px;}
.fc0_c00033{color:rgb(25,27,14);}
.fs1_c00033{font-size:120.240000px;}
.fs0_c00033{font-size:144.000000px;}
.y0_c00033{bottom:0.000000px;}
.y8_c00033{bottom:196.560000px;}
.y7_c00033{bottom:248.400000px;}
.y6_c00033{bottom:300.240000px;}
.y5_c00033{bottom:352.080000px;}
.y4_c00033{bottom:403.920000px;}
.y3_c00033{bottom:455.760000px;}
.y2_c00033{bottom:507.600000px;}
.y1_c00033{bottom:693.360000px;}
.h2_c00033{height:105.503555px;}
.h1_c00033{height:126.351562px;}
.h0_c00033{height:810.000000px;}
.w0_c00033{width:1440.000000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:172.800000px;}
.x2_c00033{left:221.580000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.lsa_c00033{letter-spacing:-1.710080pt;}
.lsb_c00033{letter-spacing:-0.534400pt;}
.ls9_c00033{letter-spacing:-0.320640pt;}
.ls6_c00033{letter-spacing:-0.213760pt;}
.ls4_c00033{letter-spacing:0.000000pt;}
.ls2_c00033{letter-spacing:0.106880pt;}
.ls5_c00033{letter-spacing:0.128000pt;}
.ls7_c00033{letter-spacing:0.427520pt;}
.ls8_c00033{letter-spacing:0.641280pt;}
.ls3_c00033{letter-spacing:0.768000pt;}
.ls1_c00033{letter-spacing:96.724480pt;}
.ls0_c00033{letter-spacing:270.164480pt;}
.ws1_c00033{word-spacing:-32.128000pt;}
.ws0_c00033{word-spacing:-32.000000pt;}
.ws3_c00033{word-spacing:-26.720000pt;}
.ws5_c00033{word-spacing:-26.399360pt;}
.ws2_c00033{word-spacing:-3.107776pt;}
.ws4_c00033{word-spacing:-1.945216pt;}
.ws6_c00033{word-spacing:-1.507008pt;}
.ws7_c00033{word-spacing:-0.768000pt;}
.wsa_c00033{word-spacing:-0.641280pt;}
.wsd_c00033{word-spacing:-0.427520pt;}
.wsb_c00033{word-spacing:-0.106880pt;}
.ws8_c00033{word-spacing:0.000000pt;}
.ws9_c00033{word-spacing:0.213760pt;}
.wse_c00033{word-spacing:0.534400pt;}
.wsc_c00033{word-spacing:1.710080pt;}
._2_c00033{margin-left:-2.872128pt;}
._0_c00033{margin-left:-1.664000pt;}
._1_c00033{width:1.152000pt;}
._4_c00033{width:2.554432pt;}
._3_c00033{width:24.552064pt;}
.fs1_c00033{font-size:106.880000pt;}
.fs0_c00033{font-size:128.000000pt;}
.y0_c00033{bottom:0.000000pt;}
.y8_c00033{bottom:174.720000pt;}
.y7_c00033{bottom:220.800000pt;}
.y6_c00033{bottom:266.880000pt;}
.y5_c00033{bottom:312.960000pt;}
.y4_c00033{bottom:359.040000pt;}
.y3_c00033{bottom:405.120000pt;}
.y2_c00033{bottom:451.200000pt;}
.y1_c00033{bottom:616.320000pt;}
.h2_c00033{height:93.780937pt;}
.h1_c00033{height:112.312500pt;}
.h0_c00033{height:720.000000pt;}
.w0_c00033{width:1280.000000pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:153.600000pt;}
.x2_c00033{left:196.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d2cc026ab9ab3ca590cad487.woff')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.063477;font-style:normal;font-weight:normal;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_18ff52023bc5c51e120f83c4.woff')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.063477;font-style:normal;font-weight:normal;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_7f65127a413d29ff30c791a2.woff')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:0.939941;font-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_c00034{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,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;}
.ls9_c00034{letter-spacing:-0.633720px;}
.ls6_c00034{letter-spacing:-0.360720px;}
.ls4_c00034{letter-spacing:-0.240480px;}
.ls7_c00034{letter-spacing:0.000000px;}
.ls5_c00034{letter-spacing:0.480960px;}
.ls8_c00034{letter-spacing:0.506976px;}
.ls3_c00034{letter-spacing:0.720000px;}
.ls1_c00034{letter-spacing:108.815040px;}
.ls2_c00034{letter-spacing:110.979360px;}
.ls0_c00034{letter-spacing:303.935040px;}
.sc__c00034{text-shadow:none;}
.sc1_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00034{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc1_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00034{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws2_c00034{word-spacing:-31.686022px;}
.ws3_c00034{word-spacing:-31.052302px;}
.ws1_c00034{word-spacing:-30.060000px;}
.ws0_c00034{word-spacing:-29.819520px;}
.ws9_c00034{word-spacing:-1.202400px;}
.ws4_c00034{word-spacing:-0.720000px;}
.wsa_c00034{word-spacing:-0.506976px;}
.ws6_c00034{word-spacing:-0.480960px;}
.ws5_c00034{word-spacing:0.000000px;}
.ws7_c00034{word-spacing:0.240480px;}
.ws8_c00034{word-spacing:0.360720px;}
._3_c00034{margin-left:-8.698153px;}
._1_c00034{margin-left:-2.462400px;}
._0_c00034{margin-left:-1.296000px;}
._2_c00034{width:1.190376px;}
._4_c00034{width:2.456444px;}
.fc0_c00034{color:rgb(25,27,14);}
.fs1_c00034{font-size:120.240000px;}
.fs2_c00034{font-size:126.744089px;}
.fs0_c00034{font-size:144.000000px;}
.y0_c00034{bottom:0.000000px;}
.y6_c00034{bottom:325.800000px;}
.y5_c00034{bottom:359.640000px;}
.y4_c00034{bottom:403.920000px;}
.y3_c00034{bottom:455.760000px;}
.y2_c00034{bottom:507.600000px;}
.y1_c00034{bottom:693.360000px;}
.h2_c00034{height:105.503555px;}
.h3_c00034{height:111.210511px;}
.h1_c00034{height:126.351562px;}
.h0_c00034{height:810.000000px;}
.w0_c00034{width:1440.000000px;}
.x0_c00034{left:0.000000px;}
.x1_c00034{left:172.800000px;}
.x2_c00034{left:235.440000px;}
.x4_c00034{left:280.800000px;}
.x3_c00034{left:466.020000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls9_c00034{letter-spacing:-0.563307pt;}
.ls6_c00034{letter-spacing:-0.320640pt;}
.ls4_c00034{letter-spacing:-0.213760pt;}
.ls7_c00034{letter-spacing:0.000000pt;}
.ls5_c00034{letter-spacing:0.427520pt;}
.ls8_c00034{letter-spacing:0.450646pt;}
.ls3_c00034{letter-spacing:0.640000pt;}
.ls1_c00034{letter-spacing:96.724480pt;}
.ls2_c00034{letter-spacing:98.648320pt;}
.ls0_c00034{letter-spacing:270.164480pt;}
.ws2_c00034{word-spacing:-28.165353pt;}
.ws3_c00034{word-spacing:-27.602046pt;}
.ws1_c00034{word-spacing:-26.720000pt;}
.ws0_c00034{word-spacing:-26.506240pt;}
.ws9_c00034{word-spacing:-1.068800pt;}
.ws4_c00034{word-spacing:-0.640000pt;}
.wsa_c00034{word-spacing:-0.450646pt;}
.ws6_c00034{word-spacing:-0.427520pt;}
.ws5_c00034{word-spacing:0.000000pt;}
.ws7_c00034{word-spacing:0.213760pt;}
.ws8_c00034{word-spacing:0.320640pt;}
._3_c00034{margin-left:-7.731691pt;}
._1_c00034{margin-left:-2.188800pt;}
._0_c00034{margin-left:-1.152000pt;}
._2_c00034{width:1.058112pt;}
._4_c00034{width:2.183506pt;}
.fs1_c00034{font-size:106.880000pt;}
.fs2_c00034{font-size:112.661412pt;}
.fs0_c00034{font-size:128.000000pt;}
.y0_c00034{bottom:0.000000pt;}
.y6_c00034{bottom:289.600000pt;}
.y5_c00034{bottom:319.680000pt;}
.y4_c00034{bottom:359.040000pt;}
.y3_c00034{bottom:405.120000pt;}
.y2_c00034{bottom:451.200000pt;}
.y1_c00034{bottom:616.320000pt;}
.h2_c00034{height:93.780937pt;}
.h3_c00034{height:98.853788pt;}
.h1_c00034{height:112.312500pt;}
.h0_c00034{height:720.000000pt;}
.w0_c00034{width:1280.000000pt;}
.x0_c00034{left:0.000000pt;}
.x1_c00034{left:153.600000pt;}
.x2_c00034{left:209.280000pt;}
.x4_c00034{left:249.600000pt;}
.x3_c00034{left:414.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8a71b5a0a309f4b2e3ce8bbe.woff')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.063477;font-style:normal;font-weight:normal;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_e1dbdb69ace7f74fea833830.woff')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.063477;font-style:normal;font-weight:normal;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_da8d6c53c1766d8136c155ed.woff')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:0.923828;font-style:normal;font-weight:normal;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_e7efdae353473ed06ff586fd.woff')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:0.939941;font-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_c00035{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.lse_c00035{letter-spacing:-4.276800px;}
.ls7_c00035{letter-spacing:-0.155520px;}
.lsd_c00035{letter-spacing:-0.081966px;}
.ls9_c00035{letter-spacing:-0.077760px;}
.ls6_c00035{letter-spacing:0.000000px;}
.lsb_c00035{letter-spacing:0.081966px;}
.lsc_c00035{letter-spacing:0.311040px;}
.ls1_c00035{letter-spacing:0.513216px;}
.ls5_c00035{letter-spacing:0.544320px;}
.lsa_c00035{letter-spacing:0.622080px;}
.ls8_c00035{letter-spacing:0.655730px;}
.ls4_c00035{letter-spacing:0.720000px;}
.ls0_c00035{letter-spacing:134.472960px;}
.ls2_c00035{letter-spacing:135.872640px;}
.ls3_c00035{letter-spacing:261.192960px;}
.sc__c00035{text-shadow:none;}
.sc1_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00035{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc1_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00035{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws2_c00035{word-spacing:-20.573525px;}
.ws3_c00035{word-spacing:-20.491559px;}
.ws4_c00035{word-spacing:-19.984320px;}
.ws0_c00035{word-spacing:-19.953216px;}
.ws5_c00035{word-spacing:-19.440000px;}
.ws1_c00035{word-spacing:-19.362240px;}
.wsb_c00035{word-spacing:-2.950785px;}
.wse_c00035{word-spacing:-2.799360px;}
.ws9_c00035{word-spacing:-2.721600px;}
.ws6_c00035{word-spacing:-2.196288px;}
.ws10_c00035{word-spacing:-2.099520px;}
.ws7_c00035{word-spacing:-0.720000px;}
.ws11_c00035{word-spacing:-0.655730px;}
.wsd_c00035{word-spacing:-0.622080px;}
.wsf_c00035{word-spacing:-0.311040px;}
.ws8_c00035{word-spacing:0.000000px;}
.wsc_c00035{word-spacing:0.077760px;}
.ws12_c00035{word-spacing:0.081966px;}
.wsa_c00035{word-spacing:0.155520px;}
.ws13_c00035{word-spacing:4.276800px;}
._4_c00035{margin-left:-5.647968px;}
._1_c00035{margin-left:-2.462400px;}
._0_c00035{margin-left:-1.296000px;}
._2_c00035{width:1.951776px;}
._3_c00035{width:3.102624px;}
._7_c00035{width:4.611168px;}
._5_c00035{width:16.266240px;}
._6_c00035{width:17.668800px;}
.fc0_c00035{color:rgb(25,27,14);}
.fs1_c00035{font-size:77.760000px;}
.fs2_c00035{font-size:81.966237px;}
.fs0_c00035{font-size:144.000000px;}
.y0_c00035{bottom:0.000000px;}
.ye_c00035{bottom:120.240000px;}
.yd_c00035{bottom:155.700000px;}
.yc_c00035{bottom:183.420000px;}
.yb_c00035{bottom:218.700000px;}
.ya_c00035{bottom:253.980000px;}
.y9_c00035{bottom:289.440000px;}
.y8_c00035{bottom:324.720000px;}
.y7_c00035{bottom:360.000000px;}
.y6_c00035{bottom:387.900000px;}
.y5_c00035{bottom:423.180000px;}
.y4_c00035{bottom:458.460000px;}
.y3_c00035{bottom:493.740000px;}
.y2_c00035{bottom:521.640000px;}
.y1_c00035{bottom:693.360000px;}
.h4_c00035{height:58.320000px;}
.h2_c00035{height:68.229844px;}
.h3_c00035{height:71.920570px;}
.h1_c00035{height:126.351562px;}
.h0_c00035{height:810.000000px;}
.w0_c00035{width:1440.000000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:172.800000px;}
.x2_c00035{left:235.440000px;}
.x6_c00035{left:280.800000px;}
.x3_c00035{left:389.160000px;}
.x4_c00035{left:549.180000px;}
.x7_c00035{left:578.340000px;}
.x8_c00035{left:587.520000px;}
.x5_c00035{left:623.700000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.lse_c00035{letter-spacing:-3.801600pt;}
.ls7_c00035{letter-spacing:-0.138240pt;}
.lsd_c00035{letter-spacing:-0.072859pt;}
.ls9_c00035{letter-spacing:-0.069120pt;}
.ls6_c00035{letter-spacing:0.000000pt;}
.lsb_c00035{letter-spacing:0.072859pt;}
.lsc_c00035{letter-spacing:0.276480pt;}
.ls1_c00035{letter-spacing:0.456192pt;}
.ls5_c00035{letter-spacing:0.483840pt;}
.lsa_c00035{letter-spacing:0.552960pt;}
.ls8_c00035{letter-spacing:0.582871pt;}
.ls4_c00035{letter-spacing:0.640000pt;}
.ls0_c00035{letter-spacing:119.531520pt;}
.ls2_c00035{letter-spacing:120.775680pt;}
.ls3_c00035{letter-spacing:232.171520pt;}
.ws2_c00035{word-spacing:-18.287578pt;}
.ws3_c00035{word-spacing:-18.214719pt;}
.ws4_c00035{word-spacing:-17.763840pt;}
.ws0_c00035{word-spacing:-17.736192pt;}
.ws5_c00035{word-spacing:-17.280000pt;}
.ws1_c00035{word-spacing:-17.210880pt;}
.wsb_c00035{word-spacing:-2.622920pt;}
.wse_c00035{word-spacing:-2.488320pt;}
.ws9_c00035{word-spacing:-2.419200pt;}
.ws6_c00035{word-spacing:-1.952256pt;}
.ws10_c00035{word-spacing:-1.866240pt;}
.ws7_c00035{word-spacing:-0.640000pt;}
.ws11_c00035{word-spacing:-0.582871pt;}
.wsd_c00035{word-spacing:-0.552960pt;}
.wsf_c00035{word-spacing:-0.276480pt;}
.ws8_c00035{word-spacing:0.000000pt;}
.wsc_c00035{word-spacing:0.069120pt;}
.ws12_c00035{word-spacing:0.072859pt;}
.wsa_c00035{word-spacing:0.138240pt;}
.ws13_c00035{word-spacing:3.801600pt;}
._4_c00035{margin-left:-5.020416pt;}
._1_c00035{margin-left:-2.188800pt;}
._0_c00035{margin-left:-1.152000pt;}
._2_c00035{width:1.734912pt;}
._3_c00035{width:2.757888pt;}
._7_c00035{width:4.098816pt;}
._5_c00035{width:14.458880pt;}
._6_c00035{width:15.705600pt;}
.fs1_c00035{font-size:69.120000pt;}
.fs2_c00035{font-size:72.858877pt;}
.fs0_c00035{font-size:128.000000pt;}
.y0_c00035{bottom:0.000000pt;}
.ye_c00035{bottom:106.880000pt;}
.yd_c00035{bottom:138.400000pt;}
.yc_c00035{bottom:163.040000pt;}
.yb_c00035{bottom:194.400000pt;}
.ya_c00035{bottom:225.760000pt;}
.y9_c00035{bottom:257.280000pt;}
.y8_c00035{bottom:288.640000pt;}
.y7_c00035{bottom:320.000000pt;}
.y6_c00035{bottom:344.800000pt;}
.y5_c00035{bottom:376.160000pt;}
.y4_c00035{bottom:407.520000pt;}
.y3_c00035{bottom:438.880000pt;}
.y2_c00035{bottom:463.680000pt;}
.y1_c00035{bottom:616.320000pt;}
.h4_c00035{height:51.840000pt;}
.h2_c00035{height:60.648750pt;}
.h3_c00035{height:63.929396pt;}
.h1_c00035{height:112.312500pt;}
.h0_c00035{height:720.000000pt;}
.w0_c00035{width:1280.000000pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:153.600000pt;}
.x2_c00035{left:209.280000pt;}
.x6_c00035{left:249.600000pt;}
.x3_c00035{left:345.920000pt;}
.x4_c00035{left:488.160000pt;}
.x7_c00035{left:514.080000pt;}
.x8_c00035{left:522.240000pt;}
.x5_c00035{left:554.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c604b6672090094f2a0c559.woff')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.063477;font-style:normal;font-weight:normal;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_34312ac045a819ac7ac513ec.woff')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.063477;font-style: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;}
.lsd_c00036{letter-spacing:-4.968000px;}
.lsf_c00036{letter-spacing:-0.397440px;}
.ls6_c00036{letter-spacing:-0.264960px;}
.ls14_c00036{letter-spacing:-0.198720px;}
.ls13_c00036{letter-spacing:-0.132480px;}
.lsb_c00036{letter-spacing:-0.066240px;}
.ls11_c00036{letter-spacing:0.000000px;}
.lsa_c00036{letter-spacing:0.066240px;}
.ls9_c00036{letter-spacing:0.132480px;}
.ls4_c00036{letter-spacing:0.144000px;}
.ls12_c00036{letter-spacing:0.198720px;}
.ls10_c00036{letter-spacing:0.264960px;}
.lse_c00036{letter-spacing:0.397440px;}
.lsc_c00036{letter-spacing:0.463680px;}
.ls5_c00036{letter-spacing:0.529920px;}
.ls0_c00036{letter-spacing:0.576000px;}
.ls8_c00036{letter-spacing:0.728640px;}
.ls7_c00036{letter-spacing:0.861120px;}
.ls3_c00036{letter-spacing:14.431680px;}
.ls2_c00036{letter-spacing:141.431040px;}
.ls1_c00036{letter-spacing:248.711040px;}
.sc__c00036{text-shadow:none;}
.sc2_c00036{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00036{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc2_c00036{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00036{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws1_c00036{word-spacing:-17.288640px;}
.ws5_c00036{word-spacing:-16.560000px;}
.ws8_c00036{word-spacing:-16.361280px;}
.ws4_c00036{word-spacing:-2.848896px;}
.ws10_c00036{word-spacing:-2.649600px;}
.ws12_c00036{word-spacing:-2.583360px;}
.ws7_c00036{word-spacing:-2.424096px;}
.ws15_c00036{word-spacing:-2.318400px;}
.ws3_c00036{word-spacing:-2.149344px;}
.ws18_c00036{word-spacing:-1.987200px;}
.ws6_c00036{word-spacing:-1.898496px;}
.ws2_c00036{word-spacing:-1.878048px;}
.ws0_c00036{word-spacing:-1.080864px;}
.wsc_c00036{word-spacing:-0.861120px;}
.wse_c00036{word-spacing:-0.794880px;}
.wsb_c00036{word-spacing:-0.529920px;}
.ws13_c00036{word-spacing:-0.397440px;}
.ws14_c00036{word-spacing:-0.264960px;}
.wsa_c00036{word-spacing:-0.144000px;}
.wsd_c00036{word-spacing:-0.132480px;}
.ws9_c00036{word-spacing:0.000000px;}
.wsf_c00036{word-spacing:0.066240px;}
.ws17_c00036{word-spacing:0.132480px;}
.ws16_c00036{word-spacing:0.264960px;}
.ws11_c00036{word-spacing:4.968000px;}
._2_c00036{margin-left:-3.059712px;}
._0_c00036{margin-left:-1.296000px;}
._1_c00036{width:1.440000px;}
._5_c00036{width:3.606624px;}
._3_c00036{width:4.861440px;}
._4_c00036{width:6.219936px;}
._6_c00036{width:14.248512px;}
.fc1_c00036{color:rgb(255,0,0);}
.fc0_c00036{color:rgb(25,27,14);}
.fs1_c00036{font-size:66.240000px;}
.fs0_c00036{font-size:144.000000px;}
.y0_c00036{bottom:0.000000px;}
.ye_c00036{bottom:149.760000px;}
.yd_c00036{bottom:164.340000px;}
.yc_c00036{bottom:197.100000px;}
.yb_c00036{bottom:229.680000px;}
.ya_c00036{bottom:262.440000px;}
.y9_c00036{bottom:295.020000px;}
.y8_c00036{bottom:327.600000px;}
.y7_c00036{bottom:360.360000px;}
.y6_c00036{bottom:392.940000px;}
.y5_c00036{bottom:425.700000px;}
.y4_c00036{bottom:458.280000px;}
.y3_c00036{bottom:490.860000px;}
.y2_c00036{bottom:523.620000px;}
.y1_c00036{bottom:693.360000px;}
.h2_c00036{height:58.121719px;}
.h1_c00036{height:126.351562px;}
.h0_c00036{height:810.000000px;}
.w0_c00036{width:1440.000000px;}
.x0_c00036{left:0.000000px;}
.x1_c00036{left:172.800000px;}
.x2_c00036{left:218.160000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.lsd_c00036{letter-spacing:-4.416000pt;}
.lsf_c00036{letter-spacing:-0.353280pt;}
.ls6_c00036{letter-spacing:-0.235520pt;}
.ls14_c00036{letter-spacing:-0.176640pt;}
.ls13_c00036{letter-spacing:-0.117760pt;}
.lsb_c00036{letter-spacing:-0.058880pt;}
.ls11_c00036{letter-spacing:0.000000pt;}
.lsa_c00036{letter-spacing:0.058880pt;}
.ls9_c00036{letter-spacing:0.117760pt;}
.ls4_c00036{letter-spacing:0.128000pt;}
.ls12_c00036{letter-spacing:0.176640pt;}
.ls10_c00036{letter-spacing:0.235520pt;}
.lse_c00036{letter-spacing:0.353280pt;}
.lsc_c00036{letter-spacing:0.412160pt;}
.ls5_c00036{letter-spacing:0.471040pt;}
.ls0_c00036{letter-spacing:0.512000pt;}
.ls8_c00036{letter-spacing:0.647680pt;}
.ls7_c00036{letter-spacing:0.765440pt;}
.ls3_c00036{letter-spacing:12.828160pt;}
.ls2_c00036{letter-spacing:125.716480pt;}
.ls1_c00036{letter-spacing:221.076480pt;}
.ws1_c00036{word-spacing:-15.367680pt;}
.ws5_c00036{word-spacing:-14.720000pt;}
.ws8_c00036{word-spacing:-14.543360pt;}
.ws4_c00036{word-spacing:-2.532352pt;}
.ws10_c00036{word-spacing:-2.355200pt;}
.ws12_c00036{word-spacing:-2.296320pt;}
.ws7_c00036{word-spacing:-2.154752pt;}
.ws15_c00036{word-spacing:-2.060800pt;}
.ws3_c00036{word-spacing:-1.910528pt;}
.ws18_c00036{word-spacing:-1.766400pt;}
.ws6_c00036{word-spacing:-1.687552pt;}
.ws2_c00036{word-spacing:-1.669376pt;}
.ws0_c00036{word-spacing:-0.960768pt;}
.wsc_c00036{word-spacing:-0.765440pt;}
.wse_c00036{word-spacing:-0.706560pt;}
.wsb_c00036{word-spacing:-0.471040pt;}
.ws13_c00036{word-spacing:-0.353280pt;}
.ws14_c00036{word-spacing:-0.235520pt;}
.wsa_c00036{word-spacing:-0.128000pt;}
.wsd_c00036{word-spacing:-0.117760pt;}
.ws9_c00036{word-spacing:0.000000pt;}
.wsf_c00036{word-spacing:0.058880pt;}
.ws17_c00036{word-spacing:0.117760pt;}
.ws16_c00036{word-spacing:0.235520pt;}
.ws11_c00036{word-spacing:4.416000pt;}
._2_c00036{margin-left:-2.719744pt;}
._0_c00036{margin-left:-1.152000pt;}
._1_c00036{width:1.280000pt;}
._5_c00036{width:3.205888pt;}
._3_c00036{width:4.321280pt;}
._4_c00036{width:5.528832pt;}
._6_c00036{width:12.665344pt;}
.fs1_c00036{font-size:58.880000pt;}
.fs0_c00036{font-size:128.000000pt;}
.y0_c00036{bottom:0.000000pt;}
.ye_c00036{bottom:133.120000pt;}
.yd_c00036{bottom:146.080000pt;}
.yc_c00036{bottom:175.200000pt;}
.yb_c00036{bottom:204.160000pt;}
.ya_c00036{bottom:233.280000pt;}
.y9_c00036{bottom:262.240000pt;}
.y8_c00036{bottom:291.200000pt;}
.y7_c00036{bottom:320.320000pt;}
.y6_c00036{bottom:349.280000pt;}
.y5_c00036{bottom:378.400000pt;}
.y4_c00036{bottom:407.360000pt;}
.y3_c00036{bottom:436.320000pt;}
.y2_c00036{bottom:465.440000pt;}
.y1_c00036{bottom:616.320000pt;}
.h2_c00036{height:51.663750pt;}
.h1_c00036{height:112.312500pt;}
.h0_c00036{height:720.000000pt;}
.w0_c00036{width:1280.000000pt;}
.x0_c00036{left:0.000000pt;}
.x1_c00036{left:153.600000pt;}
.x2_c00036{left:193.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0c2d9b6b36e8e134a2cc7d45.woff')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00037;src:url('chunks/assets/font_49ca6b9d0f394f5c1eb9edc0.woff')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00037;src:url('chunks/assets/font_dd90a681f00ce00b96ad4c4b.woff')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:0.923828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00037;src:url('chunks/assets/font_5f900570ecfd130758052888.woff')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:0.939941;font-style: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;}
.lsb_c00037{letter-spacing:-6.134400px;}
.lsa_c00037{letter-spacing:-0.204480px;}
.ls6_c00037{letter-spacing:-0.102240px;}
.ls4_c00037{letter-spacing:0.000000px;}
.ls9_c00037{letter-spacing:0.102240px;}
.ls5_c00037{letter-spacing:0.144000px;}
.ls8_c00037{letter-spacing:0.204480px;}
.ls7_c00037{letter-spacing:0.511200px;}
.ls1_c00037{letter-spacing:119.687040px;}
.ls3_c00037{letter-spacing:121.527360px;}
.ls0_c00037{letter-spacing:282.407040px;}
.ls2_c00037{letter-spacing:285.287040px;}
.sc__c00037{text-shadow:none;}
.sc1_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00037{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc1_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00037{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws0_c00037{word-spacing:-36.144000px;}
.ws2_c00037{word-spacing:-25.457760px;}
.ws3_c00037{word-spacing:-2.160000px;}
.ws7_c00037{word-spacing:-2.044800px;}
.wsa_c00037{word-spacing:-1.124640px;}
.ws6_c00037{word-spacing:-0.511200px;}
.ws9_c00037{word-spacing:-0.408960px;}
.wsc_c00037{word-spacing:-0.204480px;}
.ws8_c00037{word-spacing:-0.102240px;}
.ws4_c00037{word-spacing:0.000000px;}
.ws5_c00037{word-spacing:0.102240px;}
.wsb_c00037{word-spacing:0.204480px;}
.ws1_c00037{word-spacing:15.105456px;}
._4_c00037{margin-left:-7.359696px;}
._2_c00037{margin-left:-2.941344px;}
._3_c00037{margin-left:-1.562688px;}
._0_c00037{width:1.440000px;}
._5_c00037{width:3.966912px;}
._8_c00037{width:6.696720px;}
._9_c00037{width:8.087184px;}
._6_c00037{width:22.649904px;}
._7_c00037{width:23.745024px;}
._1_c00037{width:36.864000px;}
.fc0_c00037{color:rgb(25,27,14);}
.fs1_c00037{font-size:102.240000px;}
.fs0_c00037{font-size:144.000000px;}
.y0_c00037{bottom:0.000000px;}
.yc_c00037{bottom:159.128280px;}
.yb_c00037{bottom:181.800000px;}
.ya_c00037{bottom:222.480000px;}
.y9_c00037{bottom:263.160000px;}
.y8_c00037{bottom:296.280000px;}
.y7_c00037{bottom:329.400000px;}
.y6_c00037{bottom:362.520000px;}
.y5_c00037{bottom:395.640000px;}
.y4_c00037{bottom:436.320000px;}
.y3_c00037{bottom:477.000000px;}
.y2_c00037{bottom:517.680000px;}
.y1_c00037{bottom:693.360000px;}
.h2_c00037{height:89.709609px;}
.h1_c00037{height:126.351562px;}
.h0_c00037{height:810.000000px;}
.w0_c00037{width:1440.000000px;}
.x0_c00037{left:0.000000px;}
.x1_c00037{left:172.800000px;}
.x3_c00037{left:218.149560px;}
.x2_c00037{left:235.440000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.lsb_c00037{letter-spacing:-5.452800pt;}
.lsa_c00037{letter-spacing:-0.181760pt;}
.ls6_c00037{letter-spacing:-0.090880pt;}
.ls4_c00037{letter-spacing:0.000000pt;}
.ls9_c00037{letter-spacing:0.090880pt;}
.ls5_c00037{letter-spacing:0.128000pt;}
.ls8_c00037{letter-spacing:0.181760pt;}
.ls7_c00037{letter-spacing:0.454400pt;}
.ls1_c00037{letter-spacing:106.388480pt;}
.ls3_c00037{letter-spacing:108.024320pt;}
.ls0_c00037{letter-spacing:251.028480pt;}
.ls2_c00037{letter-spacing:253.588480pt;}
.ws0_c00037{word-spacing:-32.128000pt;}
.ws2_c00037{word-spacing:-22.629120pt;}
.ws3_c00037{word-spacing:-1.920000pt;}
.ws7_c00037{word-spacing:-1.817600pt;}
.wsa_c00037{word-spacing:-0.999680pt;}
.ws6_c00037{word-spacing:-0.454400pt;}
.ws9_c00037{word-spacing:-0.363520pt;}
.wsc_c00037{word-spacing:-0.181760pt;}
.ws8_c00037{word-spacing:-0.090880pt;}
.ws4_c00037{word-spacing:0.000000pt;}
.ws5_c00037{word-spacing:0.090880pt;}
.wsb_c00037{word-spacing:0.181760pt;}
.ws1_c00037{word-spacing:13.427072pt;}
._4_c00037{margin-left:-6.541952pt;}
._2_c00037{margin-left:-2.614528pt;}
._3_c00037{margin-left:-1.389056pt;}
._0_c00037{width:1.280000pt;}
._5_c00037{width:3.526144pt;}
._8_c00037{width:5.952640pt;}
._9_c00037{width:7.188608pt;}
._6_c00037{width:20.133248pt;}
._7_c00037{width:21.106688pt;}
._1_c00037{width:32.768000pt;}
.fs1_c00037{font-size:90.880000pt;}
.fs0_c00037{font-size:128.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.yc_c00037{bottom:141.447360pt;}
.yb_c00037{bottom:161.600000pt;}
.ya_c00037{bottom:197.760000pt;}
.y9_c00037{bottom:233.920000pt;}
.y8_c00037{bottom:263.360000pt;}
.y7_c00037{bottom:292.800000pt;}
.y6_c00037{bottom:322.240000pt;}
.y5_c00037{bottom:351.680000pt;}
.y4_c00037{bottom:387.840000pt;}
.y3_c00037{bottom:424.000000pt;}
.y2_c00037{bottom:460.160000pt;}
.y1_c00037{bottom:616.320000pt;}
.h2_c00037{height:79.741875pt;}
.h1_c00037{height:112.312500pt;}
.h0_c00037{height:720.000000pt;}
.w0_c00037{width:1280.000000pt;}
.x0_c00037{left:0.000000pt;}
.x1_c00037{left:153.600000pt;}
.x3_c00037{left:193.910720pt;}
.x2_c00037{left:209.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_11a3ae83a4219013a3f60b0c.woff')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.063477;font-style:normal;font-weight:normal;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_ae7b7bc9e0040fcb2cd7c158.woff')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00038;src:url('chunks/assets/font_e3e3959401e51ebaef88377b.woff')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:0.923828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00038{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.lsb_c00038{letter-spacing:-0.119914px;}
.ls8_c00038{letter-spacing:-0.113760px;}
.ls6_c00038{letter-spacing:0.000000px;}
.lsa_c00038{letter-spacing:0.227520px;}
.ls5_c00038{letter-spacing:0.295776px;}
.lsc_c00038{letter-spacing:0.341280px;}
.ls7_c00038{letter-spacing:0.568800px;}
.ls9_c00038{letter-spacing:1.079222px;}
.ls1_c00038{letter-spacing:29.096640px;}
.ls2_c00038{letter-spacing:112.728960px;}
.ls3_c00038{letter-spacing:114.776640px;}
.ls0_c00038{letter-spacing:294.888960px;}
.ls4_c00038{letter-spacing:297.768960px;}
.sc__c00038{text-shadow:none;}
.sc1_c00038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00038{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
.sc1_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00038{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws0_c00038{word-spacing:-66.060000px;}
.ws6_c00038{word-spacing:-3.717321px;}
.ws1_c00038{word-spacing:-1.904400px;}
.ws2_c00038{word-spacing:-1.849680px;}
.ws7_c00038{word-spacing:-1.079222px;}
.ws4_c00038{word-spacing:-0.568800px;}
.wsa_c00038{word-spacing:-0.341280px;}
.ws8_c00038{word-spacing:-0.227520px;}
.ws3_c00038{word-spacing:0.000000px;}
.ws5_c00038{word-spacing:0.113760px;}
.ws9_c00038{word-spacing:0.119914px;}
.wsb_c00038{word-spacing:0.796320px;}
._3_c00038{margin-left:-2.787120px;}
._2_c00038{margin-left:-1.194480px;}
._0_c00038{width:1.215504px;}
._4_c00038{width:2.273981px;}
._5_c00038{width:3.531264px;}
._6_c00038{width:26.469216px;}
._1_c00038{width:65.259216px;}
.fc0_c00038{color:rgb(25,27,14);}
.fs1_c00038{font-size:113.760000px;}
.fs2_c00038{font-size:119.913569px;}
.fs0_c00038{font-size:264.240000px;}
.y0_c00038{bottom:0.000000px;}
.ya_c00038{bottom:161.100000px;}
.y9_c00038{bottom:207.900000px;}
.y8_c00038{bottom:254.520000px;}
.y7_c00038{bottom:301.320000px;}
.y6_c00038{bottom:347.940000px;}
.y5_c00038{bottom:387.180000px;}
.y4_c00038{bottom:426.420000px;}
.y3_c00038{bottom:465.660000px;}
.y2_c00038{bottom:512.460000px;}
.y1_c00038{bottom:668.340000px;}
.h2_c00038{height:99.817734px;}
.h3_c00038{height:105.217131px;}
.h1_c00038{height:231.855117px;}
.h0_c00038{height:810.000000px;}
.w0_c00038{width:1440.000000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:172.800000px;}
.x2_c00038{left:235.440000px;}
.x3_c00038{left:280.800000px;}
.x4_c00038{left:304.560000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.lsb_c00038{letter-spacing:-0.106590pt;}
.ls8_c00038{letter-spacing:-0.101120pt;}
.ls6_c00038{letter-spacing:0.000000pt;}
.lsa_c00038{letter-spacing:0.202240pt;}
.ls5_c00038{letter-spacing:0.262912pt;}
.lsc_c00038{letter-spacing:0.303360pt;}
.ls7_c00038{letter-spacing:0.505600pt;}
.ls9_c00038{letter-spacing:0.959309pt;}
.ls1_c00038{letter-spacing:25.863680pt;}
.ls2_c00038{letter-spacing:100.203520pt;}
.ls3_c00038{letter-spacing:102.023680pt;}
.ls0_c00038{letter-spacing:262.123520pt;}
.ls4_c00038{letter-spacing:264.683520pt;}
.ws0_c00038{word-spacing:-58.720000pt;}
.ws6_c00038{word-spacing:-3.304285pt;}
.ws1_c00038{word-spacing:-1.692800pt;}
.ws2_c00038{word-spacing:-1.644160pt;}
.ws7_c00038{word-spacing:-0.959309pt;}
.ws4_c00038{word-spacing:-0.505600pt;}
.wsa_c00038{word-spacing:-0.303360pt;}
.ws8_c00038{word-spacing:-0.202240pt;}
.ws3_c00038{word-spacing:0.000000pt;}
.ws5_c00038{word-spacing:0.101120pt;}
.ws9_c00038{word-spacing:0.106590pt;}
.wsb_c00038{word-spacing:0.707840pt;}
._3_c00038{margin-left:-2.477440pt;}
._2_c00038{margin-left:-1.061760pt;}
._0_c00038{width:1.080448pt;}
._4_c00038{width:2.021316pt;}
._5_c00038{width:3.138901pt;}
._6_c00038{width:23.528192pt;}
._1_c00038{width:58.008192pt;}
.fs1_c00038{font-size:101.120000pt;}
.fs2_c00038{font-size:106.589839pt;}
.fs0_c00038{font-size:234.880000pt;}
.y0_c00038{bottom:0.000000pt;}
.ya_c00038{bottom:143.200000pt;}
.y9_c00038{bottom:184.800000pt;}
.y8_c00038{bottom:226.240000pt;}
.y7_c00038{bottom:267.840000pt;}
.y6_c00038{bottom:309.280000pt;}
.y5_c00038{bottom:344.160000pt;}
.y4_c00038{bottom:379.040000pt;}
.y3_c00038{bottom:413.920000pt;}
.y2_c00038{bottom:455.520000pt;}
.y1_c00038{bottom:594.080000pt;}
.h2_c00038{height:88.726875pt;}
.h3_c00038{height:93.526338pt;}
.h1_c00038{height:206.093437pt;}
.h0_c00038{height:720.000000pt;}
.w0_c00038{width:1280.000000pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:153.600000pt;}
.x2_c00038{left:209.280000pt;}
.x3_c00038{left:249.600000pt;}
.x4_c00038{left:270.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_82e0158a224bb272c1d33b14.woff')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00039;src:url('chunks/assets/font_f8172f9787b70c9a9fd91cd0.woff')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00039;src:url('chunks/assets/font_0f93469fd0606276f0c39141.woff')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.114258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00039;src:url('chunks/assets/font_7d7f56fcc8523642fe63c504.woff')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00039;src:url('chunks/assets/font_dc20f20f1bbb1709de638313.woff')format("woff");}.ff5_c00039{font-family:ff5_c00039;line-height:1.043457;font-style: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;}
.lsd_c00039{letter-spacing:-2.351520px;}
.ls11_c00039{letter-spacing:-1.124640px;}
.lsc_c00039{letter-spacing:-0.408960px;}
.lse_c00039{letter-spacing:-0.306720px;}
.lsb_c00039{letter-spacing:-0.144000px;}
.ls10_c00039{letter-spacing:-0.102240px;}
.lsa_c00039{letter-spacing:0.000000px;}
.ls3_c00039{letter-spacing:0.030672px;}
.lsf_c00039{letter-spacing:0.102240px;}
.ls9_c00039{letter-spacing:0.184032px;}
.ls5_c00039{letter-spacing:0.204480px;}
.ls8_c00039{letter-spacing:0.224928px;}
.ls1_c00039{letter-spacing:0.306720px;}
.ls2_c00039{letter-spacing:0.337392px;}
.ls7_c00039{letter-spacing:20.856960px;}
.ls4_c00039{letter-spacing:20.877408px;}
.ls6_c00039{letter-spacing:23.208480px;}
.ls0_c00039{letter-spacing:23.412960px;}
.sc__c00039{text-shadow:none;}
.sc1_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00039{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc1_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00039{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws2_c00039{word-spacing:-144.000000px;}
.ws1_c00039{word-spacing:-36.000000px;}
.ws0_c00039{word-spacing:-35.856000px;}
.ws4_c00039{word-spacing:-23.412960px;}
.wsc_c00039{word-spacing:-23.310720px;}
.ws11_c00039{word-spacing:-23.208480px;}
.ws7_c00039{word-spacing:-23.106240px;}
.ws16_c00039{word-spacing:-23.004000px;}
.ws6_c00039{word-spacing:-22.697280px;}
.ws1a_c00039{word-spacing:-21.981600px;}
.wse_c00039{word-spacing:-20.754720px;}
.ws10_c00039{word-spacing:-3.179664px;}
.ws8_c00039{word-spacing:-2.821824px;}
.ws21_c00039{word-spacing:-2.556000px;}
.ws20_c00039{word-spacing:-2.249280px;}
.ws5_c00039{word-spacing:-2.228832px;}
.ws18_c00039{word-spacing:-2.106144px;}
.ws1e_c00039{word-spacing:-2.016000px;}
.ws22_c00039{word-spacing:-1.840320px;}
.wsf_c00039{word-spacing:-1.809648px;}
.ws15_c00039{word-spacing:-1.676736px;}
.wsb_c00039{word-spacing:-1.635840px;}
.ws13_c00039{word-spacing:-1.472256px;}
.wsa_c00039{word-spacing:-1.410912px;}
.ws19_c00039{word-spacing:-1.226880px;}
.wsd_c00039{word-spacing:-1.175760px;}
.ws23_c00039{word-spacing:-1.124640px;}
.ws9_c00039{word-spacing:-0.920160px;}
.ws14_c00039{word-spacing:-0.797472px;}
.ws12_c00039{word-spacing:-0.695232px;}
.ws1b_c00039{word-spacing:-0.511200px;}
.ws17_c00039{word-spacing:-0.460080px;}
.ws24_c00039{word-spacing:-0.408960px;}
.ws1f_c00039{word-spacing:-0.306720px;}
.ws1d_c00039{word-spacing:0.000000px;}
.ws25_c00039{word-spacing:0.408960px;}
.ws1c_c00039{word-spacing:23.208480px;}
.ws3_c00039{word-spacing:61.293600px;}
._3_c00039{margin-left:-3.646224px;}
._1_c00039{margin-left:-2.016000px;}
._9_c00039{margin-left:-1.000080px;}
._0_c00039{width:1.008000px;}
._2_c00039{width:2.030400px;}
._4_c00039{width:3.545856px;}
._5_c00039{width:19.414512px;}
._6_c00039{width:20.492640px;}
._8_c00039{width:21.724704px;}
._7_c00039{width:24.270336px;}
.fc1_c00039{color:rgb(0,0,0);}
.fc0_c00039{color:rgb(25,27,14);}
.fs1_c00039{font-size:102.240000px;}
.fs0_c00039{font-size:144.000000px;}
.y0_c00039{bottom:0.000000px;}
.yd_c00039{bottom:142.568280px;}
.yc_c00039{bottom:165.240000px;}
.yb_c00039{bottom:205.740000px;}
.ya_c00039{bottom:246.428280px;}
.y9_c00039{bottom:269.100000px;}
.y8_c00039{bottom:309.780000px;}
.y7_c00039{bottom:350.467200px;}
.y6_c00039{bottom:372.960000px;}
.y5_c00039{bottom:413.648280px;}
.y4_c00039{bottom:436.320000px;}
.y3_c00039{bottom:477.000000px;}
.y2_c00039{bottom:517.680000px;}
.y1_c00039{bottom:693.360000px;}
.h3_c00039{height:84.318047px;}
.h2_c00039{height:88.461562px;}
.h1_c00039{height:130.148438px;}
.h0_c00039{height:810.000000px;}
.w0_c00039{width:1440.000000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:172.800000px;}
.x2_c00039{left:213.274440px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.lsd_c00039{letter-spacing:-2.090240pt;}
.ls11_c00039{letter-spacing:-0.999680pt;}
.lsc_c00039{letter-spacing:-0.363520pt;}
.lse_c00039{letter-spacing:-0.272640pt;}
.lsb_c00039{letter-spacing:-0.128000pt;}
.ls10_c00039{letter-spacing:-0.090880pt;}
.lsa_c00039{letter-spacing:0.000000pt;}
.ls3_c00039{letter-spacing:0.027264pt;}
.lsf_c00039{letter-spacing:0.090880pt;}
.ls9_c00039{letter-spacing:0.163584pt;}
.ls5_c00039{letter-spacing:0.181760pt;}
.ls8_c00039{letter-spacing:0.199936pt;}
.ls1_c00039{letter-spacing:0.272640pt;}
.ls2_c00039{letter-spacing:0.299904pt;}
.ls7_c00039{letter-spacing:18.539520pt;}
.ls4_c00039{letter-spacing:18.557696pt;}
.ls6_c00039{letter-spacing:20.629760pt;}
.ls0_c00039{letter-spacing:20.811520pt;}
.ws2_c00039{word-spacing:-128.000000pt;}
.ws1_c00039{word-spacing:-32.000000pt;}
.ws0_c00039{word-spacing:-31.872000pt;}
.ws4_c00039{word-spacing:-20.811520pt;}
.wsc_c00039{word-spacing:-20.720640pt;}
.ws11_c00039{word-spacing:-20.629760pt;}
.ws7_c00039{word-spacing:-20.538880pt;}
.ws16_c00039{word-spacing:-20.448000pt;}
.ws6_c00039{word-spacing:-20.175360pt;}
.ws1a_c00039{word-spacing:-19.539200pt;}
.wse_c00039{word-spacing:-18.448640pt;}
.ws10_c00039{word-spacing:-2.826368pt;}
.ws8_c00039{word-spacing:-2.508288pt;}
.ws21_c00039{word-spacing:-2.272000pt;}
.ws20_c00039{word-spacing:-1.999360pt;}
.ws5_c00039{word-spacing:-1.981184pt;}
.ws18_c00039{word-spacing:-1.872128pt;}
.ws1e_c00039{word-spacing:-1.792000pt;}
.ws22_c00039{word-spacing:-1.635840pt;}
.wsf_c00039{word-spacing:-1.608576pt;}
.ws15_c00039{word-spacing:-1.490432pt;}
.wsb_c00039{word-spacing:-1.454080pt;}
.ws13_c00039{word-spacing:-1.308672pt;}
.wsa_c00039{word-spacing:-1.254144pt;}
.ws19_c00039{word-spacing:-1.090560pt;}
.wsd_c00039{word-spacing:-1.045120pt;}
.ws23_c00039{word-spacing:-0.999680pt;}
.ws9_c00039{word-spacing:-0.817920pt;}
.ws14_c00039{word-spacing:-0.708864pt;}
.ws12_c00039{word-spacing:-0.617984pt;}
.ws1b_c00039{word-spacing:-0.454400pt;}
.ws17_c00039{word-spacing:-0.408960pt;}
.ws24_c00039{word-spacing:-0.363520pt;}
.ws1f_c00039{word-spacing:-0.272640pt;}
.ws1d_c00039{word-spacing:0.000000pt;}
.ws25_c00039{word-spacing:0.363520pt;}
.ws1c_c00039{word-spacing:20.629760pt;}
.ws3_c00039{word-spacing:54.483200pt;}
._3_c00039{margin-left:-3.241088pt;}
._1_c00039{margin-left:-1.792000pt;}
._9_c00039{margin-left:-0.888960pt;}
._0_c00039{width:0.896000pt;}
._2_c00039{width:1.804800pt;}
._4_c00039{width:3.151872pt;}
._5_c00039{width:17.257344pt;}
._6_c00039{width:18.215680pt;}
._8_c00039{width:19.310848pt;}
._7_c00039{width:21.573632pt;}
.fs1_c00039{font-size:90.880000pt;}
.fs0_c00039{font-size:128.000000pt;}
.y0_c00039{bottom:0.000000pt;}
.yd_c00039{bottom:126.727360pt;}
.yc_c00039{bottom:146.880000pt;}
.yb_c00039{bottom:182.880000pt;}
.ya_c00039{bottom:219.047360pt;}
.y9_c00039{bottom:239.200000pt;}
.y8_c00039{bottom:275.360000pt;}
.y7_c00039{bottom:311.526400pt;}
.y6_c00039{bottom:331.520000pt;}
.y5_c00039{bottom:367.687360pt;}
.y4_c00039{bottom:387.840000pt;}
.y3_c00039{bottom:424.000000pt;}
.y2_c00039{bottom:460.160000pt;}
.y1_c00039{bottom:616.320000pt;}
.h3_c00039{height:74.949375pt;}
.h2_c00039{height:78.632500pt;}
.h1_c00039{height:115.687500pt;}
.h0_c00039{height:720.000000pt;}
.w0_c00039{width:1280.000000pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:153.600000pt;}
.x2_c00039{left:189.577280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4ae3fb6a98b5f9c6ba9ca55.woff')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.063477;font-style:normal;font-weight:normal;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_d9c4c499be08975e3d5913b0.woff')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00040;src:url('chunks/assets/font_786f3d121045c8c9dbeadc06.woff')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00040;src:url('chunks/assets/font_ffeaf4e39b63be285daedf6d.woff')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00040;src:url('chunks/assets/font_907569d444a1cdf8f5eeba20.woff')format("woff");}.ff5_c00040{font-family:ff5_c00040;line-height:1.114258;font-style: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;}
.ls4_c00040{letter-spacing:-0.324000px;}
.ls6_c00040{letter-spacing:-0.216000px;}
.ls3_c00040{letter-spacing:0.000000px;}
.ls2_c00040{letter-spacing:0.264240px;}
.ls5_c00040{letter-spacing:0.324000px;}
.ls1_c00040{letter-spacing:29.916000px;}
.ls0_c00040{letter-spacing:178.200000px;}
.sc__c00040{text-shadow:none;}
.sc1_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00040{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc1_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00040{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws0_c00040{word-spacing:-30.024000px;}
.ws2_c00040{word-spacing:-29.700000px;}
.ws3_c00040{word-spacing:-2.906640px;}
.ws6_c00040{word-spacing:-0.324000px;}
.ws4_c00040{word-spacing:0.000000px;}
.ws8_c00040{word-spacing:0.216000px;}
.ws5_c00040{word-spacing:0.324000px;}
.ws7_c00040{word-spacing:1.296000px;}
.ws1_c00040{word-spacing:1.544400px;}
.ws9_c00040{word-spacing:2.052000px;}
._5_c00040{margin-left:-3.724056px;}
._2_c00040{margin-left:-2.695248px;}
._3_c00040{margin-left:-1.404648px;}
._0_c00040{width:1.030536px;}
._4_c00040{width:2.409048px;}
._1_c00040{width:64.927008px;}
.fc2_c00040{color:transparent;}
.fc1_c00040{color:rgb(0,0,0);}
.fc0_c00040{color:rgb(25,27,14);}
.fs1_c00040{font-size:108.000000px;}
.fs0_c00040{font-size:264.240000px;}
.y0_c00040{bottom:0.000000px;}
.ya_c00040{bottom:188.820000px;}
.y9_c00040{bottom:221.220000px;}
.y8_c00040{bottom:253.620000px;}
.y7_c00040{bottom:286.020000px;}
.y6_c00040{bottom:318.420000px;}
.y5_c00040{bottom:350.820000px;}
.y4_c00040{bottom:383.220000px;}
.y3_c00040{bottom:415.620000px;}
.y2_c00040{bottom:448.020000px;}
.y1_c00040{bottom:668.340000px;}
.h3_c00040{height:96.820312px;}
.h2_c00040{height:97.611328px;}
.h1_c00040{height:231.855117px;}
.h0_c00040{height:810.000000px;}
.w0_c00040{width:1440.000000px;}
.x0_c00040{left:0.000000px;}
.x1_c00040{left:172.800000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls4_c00040{letter-spacing:-0.288000pt;}
.ls6_c00040{letter-spacing:-0.192000pt;}
.ls3_c00040{letter-spacing:0.000000pt;}
.ls2_c00040{letter-spacing:0.234880pt;}
.ls5_c00040{letter-spacing:0.288000pt;}
.ls1_c00040{letter-spacing:26.592000pt;}
.ls0_c00040{letter-spacing:158.400000pt;}
.ws0_c00040{word-spacing:-26.688000pt;}
.ws2_c00040{word-spacing:-26.400000pt;}
.ws3_c00040{word-spacing:-2.583680pt;}
.ws6_c00040{word-spacing:-0.288000pt;}
.ws4_c00040{word-spacing:0.000000pt;}
.ws8_c00040{word-spacing:0.192000pt;}
.ws5_c00040{word-spacing:0.288000pt;}
.ws7_c00040{word-spacing:1.152000pt;}
.ws1_c00040{word-spacing:1.372800pt;}
.ws9_c00040{word-spacing:1.824000pt;}
._5_c00040{margin-left:-3.310272pt;}
._2_c00040{margin-left:-2.395776pt;}
._3_c00040{margin-left:-1.248576pt;}
._0_c00040{width:0.916032pt;}
._4_c00040{width:2.141376pt;}
._1_c00040{width:57.712896pt;}
.fs1_c00040{font-size:96.000000pt;}
.fs0_c00040{font-size:234.880000pt;}
.y0_c00040{bottom:0.000000pt;}
.ya_c00040{bottom:167.840000pt;}
.y9_c00040{bottom:196.640000pt;}
.y8_c00040{bottom:225.440000pt;}
.y7_c00040{bottom:254.240000pt;}
.y6_c00040{bottom:283.040000pt;}
.y5_c00040{bottom:311.840000pt;}
.y4_c00040{bottom:340.640000pt;}
.y3_c00040{bottom:369.440000pt;}
.y2_c00040{bottom:398.240000pt;}
.y1_c00040{bottom:594.080000pt;}
.h3_c00040{height:86.062500pt;}
.h2_c00040{height:86.765625pt;}
.h1_c00040{height:206.093437pt;}
.h0_c00040{height:720.000000pt;}
.w0_c00040{width:1280.000000pt;}
.x0_c00040{left:0.000000pt;}
.x1_c00040{left:153.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e4ae3fb6a98b5f9c6ba9ca55.woff')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.063477;font-style:normal;font-weight:normal;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_43ec5268f02266d075cf36b6.woff')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00041;src:url('chunks/assets/font_b156e37c9b29954ff0516a15.woff')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00041;src:url('chunks/assets/font_a9d502bcbb84ace28c220290.woff')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00041;src:url('chunks/assets/font_f561cf8eef947ba5738f03a4.woff')format("woff");}.ff5_c00041{font-family:ff5_c00041;line-height:1.114258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00041;src:url('chunks/assets/font_dfd1f627a34bc3428ff9c21d.woff')format("woff");}.ff6_c00041{font-family:ff6_c00041;line-height:1.113281;font-style: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;}
.ls4_c00041{letter-spacing:-0.324000px;}
.ls5_c00041{letter-spacing:-0.216000px;}
.ls3_c00041{letter-spacing:0.000000px;}
.ls6_c00041{letter-spacing:0.216000px;}
.ls2_c00041{letter-spacing:0.264240px;}
.ls7_c00041{letter-spacing:0.324000px;}
.ls0_c00041{letter-spacing:29.916000px;}
.ls1_c00041{letter-spacing:178.200000px;}
.sc__c00041{text-shadow:none;}
.sc1_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00041{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc1_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00041{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
}
.ws2_c00041{word-spacing:-30.240000px;}
.ws0_c00041{word-spacing:-30.024000px;}
.ws1_c00041{word-spacing:-29.808000px;}
.ws4_c00041{word-spacing:-2.906640px;}
.ws8_c00041{word-spacing:-0.108000px;}
.ws5_c00041{word-spacing:0.000000px;}
.ws6_c00041{word-spacing:0.324000px;}
.ws7_c00041{word-spacing:0.540000px;}
.ws3_c00041{word-spacing:1.231200px;}
._2_c00041{margin-left:-2.695248px;}
._0_c00041{width:1.030536px;}
._3_c00041{width:2.303712px;}
._4_c00041{width:4.221504px;}
._5_c00041{width:31.710528px;}
._1_c00041{width:64.927008px;}
.fc2_c00041{color:transparent;}
.fc1_c00041{color:rgb(0,0,0);}
.fc0_c00041{color:rgb(25,27,14);}
.fs1_c00041{font-size:108.000000px;}
.fs0_c00041{font-size:264.240000px;}
.y0_c00041{bottom:0.000000px;}
.y8_c00041{bottom:221.220000px;}
.y7_c00041{bottom:253.620000px;}
.y6_c00041{bottom:286.020000px;}
.y5_c00041{bottom:318.420000px;}
.y4_c00041{bottom:350.820000px;}
.y3_c00041{bottom:383.220000px;}
.y2_c00041{bottom:415.620000px;}
.y1_c00041{bottom:668.340000px;}
.h2_c00041{height:96.820312px;}
.h3_c00041{height:97.611328px;}
.h1_c00041{height:231.855117px;}
.h0_c00041{height:810.000000px;}
.w0_c00041{width:1440.000000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:172.800000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls4_c00041{letter-spacing:-0.288000pt;}
.ls5_c00041{letter-spacing:-0.192000pt;}
.ls3_c00041{letter-spacing:0.000000pt;}
.ls6_c00041{letter-spacing:0.192000pt;}
.ls2_c00041{letter-spacing:0.234880pt;}
.ls7_c00041{letter-spacing:0.288000pt;}
.ls0_c00041{letter-spacing:26.592000pt;}
.ls1_c00041{letter-spacing:158.400000pt;}
.ws2_c00041{word-spacing:-26.880000pt;}
.ws0_c00041{word-spacing:-26.688000pt;}
.ws1_c00041{word-spacing:-26.496000pt;}
.ws4_c00041{word-spacing:-2.583680pt;}
.ws8_c00041{word-spacing:-0.096000pt;}
.ws5_c00041{word-spacing:0.000000pt;}
.ws6_c00041{word-spacing:0.288000pt;}
.ws7_c00041{word-spacing:0.480000pt;}
.ws3_c00041{word-spacing:1.094400pt;}
._2_c00041{margin-left:-2.395776pt;}
._0_c00041{width:0.916032pt;}
._3_c00041{width:2.047744pt;}
._4_c00041{width:3.752448pt;}
._5_c00041{width:28.187136pt;}
._1_c00041{width:57.712896pt;}
.fs1_c00041{font-size:96.000000pt;}
.fs0_c00041{font-size:234.880000pt;}
.y0_c00041{bottom:0.000000pt;}
.y8_c00041{bottom:196.640000pt;}
.y7_c00041{bottom:225.440000pt;}
.y6_c00041{bottom:254.240000pt;}
.y5_c00041{bottom:283.040000pt;}
.y4_c00041{bottom:311.840000pt;}
.y3_c00041{bottom:340.640000pt;}
.y2_c00041{bottom:369.440000pt;}
.y1_c00041{bottom:594.080000pt;}
.h2_c00041{height:86.062500pt;}
.h3_c00041{height:86.765625pt;}
.h1_c00041{height:206.093437pt;}
.h0_c00041{height:720.000000pt;}
.w0_c00041{width:1280.000000pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:153.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2f194f3c0276ad990dc1390d.woff')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.063477;font-style:normal;font-weight:normal;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_eeb015753e5bdb0120849a3e.woff')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00042;src:url('chunks/assets/font_506bdf19a4d27dd98db08ac1.woff')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00042;src:url('chunks/assets/font_89150f4da7d6cc2191d03e41.woff')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00042;src:url('chunks/assets/font_4e4b117bd914e6d073ec04c2.woff')format("woff");}.ff5_c00042{font-family:ff5_c00042;line-height:1.114258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00042;src:url('chunks/assets/font_40b87d3ac0cc52745c208b49.woff')format("woff");}.ff6_c00042{font-family:ff6_c00042;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00042{letter-spacing:-0.324000px;}
.ls3_c00042{letter-spacing:0.000000px;}
.ls2_c00042{letter-spacing:0.216000px;}
.ls4_c00042{letter-spacing:0.264240px;}
.ls6_c00042{letter-spacing:0.324000px;}
.ls1_c00042{letter-spacing:29.916000px;}
.ls0_c00042{letter-spacing:178.200000px;}
.sc__c00042{text-shadow:none;}
.sc1_c00042{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
.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;}
.sc1_c00042{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00042{word-spacing:-30.024000px;}
.ws1_c00042{word-spacing:-29.700000px;}
.ws2_c00042{word-spacing:-0.864000px;}
.ws8_c00042{word-spacing:-0.324000px;}
.ws6_c00042{word-spacing:-0.264240px;}
.ws9_c00042{word-spacing:-0.216000px;}
.ws5_c00042{word-spacing:0.000000px;}
.ws7_c00042{word-spacing:0.324000px;}
.ws3_c00042{word-spacing:0.475200px;}
.ws4_c00042{word-spacing:0.648000px;}
.wsa_c00042{word-spacing:1.296000px;}
._1_c00042{margin-left:-3.065184px;}
._2_c00042{margin-left:-1.037952px;}
._0_c00042{width:1.814976px;}
._3_c00042{width:4.554000px;}
._5_c00042{width:31.455072px;}
._4_c00042{width:33.077232px;}
.fc2_c00042{color:transparent;}
.fc1_c00042{color:rgb(0,0,0);}
.fc0_c00042{color:rgb(25,27,14);}
.fs1_c00042{font-size:108.000000px;}
.fs0_c00042{font-size:264.240000px;}
.y0_c00042{bottom:0.000000px;}
.ya_c00042{bottom:188.820150px;}
.y9_c00042{bottom:221.220150px;}
.y8_c00042{bottom:253.620150px;}
.y7_c00042{bottom:286.020150px;}
.y6_c00042{bottom:318.420150px;}
.y5_c00042{bottom:350.820150px;}
.y4_c00042{bottom:383.220150px;}
.y3_c00042{bottom:415.620150px;}
.y2_c00042{bottom:448.020150px;}
.y1_c00042{bottom:668.340000px;}
.h3_c00042{height:96.820312px;}
.h2_c00042{height:97.611328px;}
.h1_c00042{height:231.855117px;}
.h0_c00042{height:810.000000px;}
.w0_c00042{width:1440.000000px;}
.x0_c00042{left:0.000000px;}
.x1_c00042{left:172.800000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls5_c00042{letter-spacing:-0.288000pt;}
.ls3_c00042{letter-spacing:0.000000pt;}
.ls2_c00042{letter-spacing:0.192000pt;}
.ls4_c00042{letter-spacing:0.234880pt;}
.ls6_c00042{letter-spacing:0.288000pt;}
.ls1_c00042{letter-spacing:26.592000pt;}
.ls0_c00042{letter-spacing:158.400000pt;}
.ws0_c00042{word-spacing:-26.688000pt;}
.ws1_c00042{word-spacing:-26.400000pt;}
.ws2_c00042{word-spacing:-0.768000pt;}
.ws8_c00042{word-spacing:-0.288000pt;}
.ws6_c00042{word-spacing:-0.234880pt;}
.ws9_c00042{word-spacing:-0.192000pt;}
.ws5_c00042{word-spacing:0.000000pt;}
.ws7_c00042{word-spacing:0.288000pt;}
.ws3_c00042{word-spacing:0.422400pt;}
.ws4_c00042{word-spacing:0.576000pt;}
.wsa_c00042{word-spacing:1.152000pt;}
._1_c00042{margin-left:-2.724608pt;}
._2_c00042{margin-left:-0.922624pt;}
._0_c00042{width:1.613312pt;}
._3_c00042{width:4.048000pt;}
._5_c00042{width:27.960064pt;}
._4_c00042{width:29.401984pt;}
.fs1_c00042{font-size:96.000000pt;}
.fs0_c00042{font-size:234.880000pt;}
.y0_c00042{bottom:0.000000pt;}
.ya_c00042{bottom:167.840133pt;}
.y9_c00042{bottom:196.640133pt;}
.y8_c00042{bottom:225.440133pt;}
.y7_c00042{bottom:254.240133pt;}
.y6_c00042{bottom:283.040133pt;}
.y5_c00042{bottom:311.840133pt;}
.y4_c00042{bottom:340.640133pt;}
.y3_c00042{bottom:369.440133pt;}
.y2_c00042{bottom:398.240133pt;}
.y1_c00042{bottom:594.080000pt;}
.h3_c00042{height:86.062500pt;}
.h2_c00042{height:86.765625pt;}
.h1_c00042{height:206.093437pt;}
.h0_c00042{height:720.000000pt;}
.w0_c00042{width:1280.000000pt;}
.x0_c00042{left:0.000000pt;}
.x1_c00042{left:153.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_14aa1de4bf4ba9351e528ef6.woff')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.063477;font-style:normal;font-weight:normal;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_c41d5f271ef9394e8af7fc7d.woff')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00043;src:url('chunks/assets/font_25141e6dfe09605412877d1f.woff')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00043;src:url('chunks/assets/font_a8c188301433bc6cae18480d.woff')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:1.114258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00043;src:url('chunks/assets/font_5dec88796170a780e87c52c3.woff')format("woff");}.ff5_c00043{font-family:ff5_c00043;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00043{letter-spacing:-0.324000px;}
.ls1_c00043{letter-spacing:0.000000px;}
.ls2_c00043{letter-spacing:0.264240px;}
.ls4_c00043{letter-spacing:0.324000px;}
.ls0_c00043{letter-spacing:178.200000px;}
.sc__c00043{text-shadow:none;}
.sc1_c00043{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
.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;}
.sc1_c00043{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00043{word-spacing:-0.324000px;}
.ws3_c00043{word-spacing:-0.264240px;}
.ws2_c00043{word-spacing:0.000000px;}
.ws4_c00043{word-spacing:0.324000px;}
.ws6_c00043{word-spacing:0.540000px;}
.ws1_c00043{word-spacing:1.479600px;}
.ws0_c00043{word-spacing:3.693600px;}
._1_c00043{margin-left:-2.113920px;}
._3_c00043{margin-left:-1.004400px;}
._0_c00043{width:1.207224px;}
._4_c00043{width:2.210328px;}
._2_c00043{width:3.902544px;}
.fc2_c00043{color:transparent;}
.fc1_c00043{color:rgb(0,0,0);}
.fc0_c00043{color:rgb(25,27,14);}
.fs1_c00043{font-size:108.000000px;}
.fs0_c00043{font-size:264.240000px;}
.y0_c00043{bottom:0.000000px;}
.y6_c00043{bottom:269.820000px;}
.y5_c00043{bottom:302.220000px;}
.y4_c00043{bottom:334.620000px;}
.y3_c00043{bottom:367.020000px;}
.y2_c00043{bottom:399.420000px;}
.y1_c00043{bottom:668.340000px;}
.h3_c00043{height:96.820312px;}
.h2_c00043{height:97.611328px;}
.h1_c00043{height:231.855117px;}
.h0_c00043{height:810.000000px;}
.w0_c00043{width:1440.000000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:172.800000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls3_c00043{letter-spacing:-0.288000pt;}
.ls1_c00043{letter-spacing:0.000000pt;}
.ls2_c00043{letter-spacing:0.234880pt;}
.ls4_c00043{letter-spacing:0.288000pt;}
.ls0_c00043{letter-spacing:158.400000pt;}
.ws5_c00043{word-spacing:-0.288000pt;}
.ws3_c00043{word-spacing:-0.234880pt;}
.ws2_c00043{word-spacing:0.000000pt;}
.ws4_c00043{word-spacing:0.288000pt;}
.ws6_c00043{word-spacing:0.480000pt;}
.ws1_c00043{word-spacing:1.315200pt;}
.ws0_c00043{word-spacing:3.283200pt;}
._1_c00043{margin-left:-1.879040pt;}
._3_c00043{margin-left:-0.892800pt;}
._0_c00043{width:1.073088pt;}
._4_c00043{width:1.964736pt;}
._2_c00043{width:3.468928pt;}
.fs1_c00043{font-size:96.000000pt;}
.fs0_c00043{font-size:234.880000pt;}
.y0_c00043{bottom:0.000000pt;}
.y6_c00043{bottom:239.840000pt;}
.y5_c00043{bottom:268.640000pt;}
.y4_c00043{bottom:297.440000pt;}
.y3_c00043{bottom:326.240000pt;}
.y2_c00043{bottom:355.040000pt;}
.y1_c00043{bottom:594.080000pt;}
.h3_c00043{height:86.062500pt;}
.h2_c00043{height:86.765625pt;}
.h1_c00043{height:206.093437pt;}
.h0_c00043{height:720.000000pt;}
.w0_c00043{width:1280.000000pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:153.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3d49e1715b0b1132d4299243.woff')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00044;src:url('chunks/assets/font_73b6bfb4861e22af55bec905.woff')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00044;src:url('chunks/assets/font_c66ff75480a839704c66e418.woff')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_22794971d6daeebebab82e3c.woff')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.114258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00044;src:url('chunks/assets/font_e3e145f30bd7fe3bb4ea526c.woff')format("woff");}.ff5_c00044{font-family:ff5_c00044;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00044{letter-spacing:-0.972000px;}
.ls4_c00044{letter-spacing:-0.324000px;}
.ls2_c00044{letter-spacing:-0.239760px;}
.ls1_c00044{letter-spacing:0.000000px;}
.ls3_c00044{letter-spacing:0.324000px;}
.ls0_c00044{letter-spacing:0.479520px;}
.sc__c00044{text-shadow:none;}
.sc1_c00044{text-shadow:-0.015em 0 rgb(25,27,14),0 0.015em rgb(25,27,14),0.015em 0 rgb(25,27,14),0 -0.015em  rgb(25,27,14);}
.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;}
.sc1_c00044{-webkit-text-stroke:0.015em rgb(25,27,14);text-shadow:none;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00044{word-spacing:-60.419520px;}
.ws1_c00044{word-spacing:-30.024000px;}
.ws2_c00044{word-spacing:-29.700000px;}
.ws3_c00044{word-spacing:-29.052000px;}
.ws8_c00044{word-spacing:-0.479520px;}
.wse_c00044{word-spacing:-0.432000px;}
.ws9_c00044{word-spacing:-0.324000px;}
.wsd_c00044{word-spacing:-0.108000px;}
.ws6_c00044{word-spacing:0.000000px;}
.ws7_c00044{word-spacing:0.239760px;}
.wsa_c00044{word-spacing:0.324000px;}
.wsc_c00044{word-spacing:0.540000px;}
.wsf_c00044{word-spacing:1.296000px;}
.ws4_c00044{word-spacing:1.728000px;}
.wsb_c00044{word-spacing:2.052000px;}
.ws5_c00044{word-spacing:3.628800px;}
._3_c00044{margin-left:-3.233016px;}
._1_c00044{margin-left:-1.414584px;}
._0_c00044{width:1.435464px;}
._5_c00044{width:2.765736px;}
._4_c00044{width:33.220728px;}
._2_c00044{width:58.480848px;}
.fc1_c00044{color:rgb(0,0,0);}
.fc0_c00044{color:rgb(25,27,14);}
.fs1_c00044{font-size:108.000000px;}
.fs0_c00044{font-size:239.760000px;}
.y0_c00044{bottom:0.000000px;}
.yf_c00044{bottom:124.020000px;}
.ye_c00044{bottom:156.420000px;}
.yd_c00044{bottom:188.820000px;}
.yc_c00044{bottom:221.220000px;}
.yb_c00044{bottom:253.620000px;}
.ya_c00044{bottom:286.020000px;}
.y9_c00044{bottom:318.420000px;}
.y8_c00044{bottom:350.820000px;}
.y7_c00044{bottom:383.220000px;}
.y6_c00044{bottom:415.620000px;}
.y5_c00044{bottom:448.020000px;}
.y4_c00044{bottom:480.419850px;}
.y3_c00044{bottom:512.819850px;}
.y2_c00044{bottom:609.300000px;}
.y1_c00044{bottom:673.380000px;}
.h3_c00044{height:96.820312px;}
.h2_c00044{height:97.611328px;}
.h1_c00044{height:210.375352px;}
.h0_c00044{height:810.000000px;}
.w0_c00044{width:1440.000000px;}
.x0_c00044{left:0.000000px;}
.x1_c00044{left:172.800000px;}
.x2_c00044{left:180.351000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls5_c00044{letter-spacing:-0.864000pt;}
.ls4_c00044{letter-spacing:-0.288000pt;}
.ls2_c00044{letter-spacing:-0.213120pt;}
.ls1_c00044{letter-spacing:0.000000pt;}
.ls3_c00044{letter-spacing:0.288000pt;}
.ls0_c00044{letter-spacing:0.426240pt;}
.ws0_c00044{word-spacing:-53.706240pt;}
.ws1_c00044{word-spacing:-26.688000pt;}
.ws2_c00044{word-spacing:-26.400000pt;}
.ws3_c00044{word-spacing:-25.824000pt;}
.ws8_c00044{word-spacing:-0.426240pt;}
.wse_c00044{word-spacing:-0.384000pt;}
.ws9_c00044{word-spacing:-0.288000pt;}
.wsd_c00044{word-spacing:-0.096000pt;}
.ws6_c00044{word-spacing:0.000000pt;}
.ws7_c00044{word-spacing:0.213120pt;}
.wsa_c00044{word-spacing:0.288000pt;}
.wsc_c00044{word-spacing:0.480000pt;}
.wsf_c00044{word-spacing:1.152000pt;}
.ws4_c00044{word-spacing:1.536000pt;}
.wsb_c00044{word-spacing:1.824000pt;}
.ws5_c00044{word-spacing:3.225600pt;}
._3_c00044{margin-left:-2.873792pt;}
._1_c00044{margin-left:-1.257408pt;}
._0_c00044{width:1.275968pt;}
._5_c00044{width:2.458432pt;}
._4_c00044{width:29.529536pt;}
._2_c00044{width:51.982976pt;}
.fs1_c00044{font-size:96.000000pt;}
.fs0_c00044{font-size:213.120000pt;}
.y0_c00044{bottom:0.000000pt;}
.yf_c00044{bottom:110.240000pt;}
.ye_c00044{bottom:139.040000pt;}
.yd_c00044{bottom:167.840000pt;}
.yc_c00044{bottom:196.640000pt;}
.yb_c00044{bottom:225.440000pt;}
.ya_c00044{bottom:254.240000pt;}
.y9_c00044{bottom:283.040000pt;}
.y8_c00044{bottom:311.840000pt;}
.y7_c00044{bottom:340.640000pt;}
.y6_c00044{bottom:369.440000pt;}
.y5_c00044{bottom:398.240000pt;}
.y4_c00044{bottom:427.039867pt;}
.y3_c00044{bottom:455.839867pt;}
.y2_c00044{bottom:541.600000pt;}
.y1_c00044{bottom:598.560000pt;}
.h3_c00044{height:86.062500pt;}
.h2_c00044{height:86.765625pt;}
.h1_c00044{height:187.000312pt;}
.h0_c00044{height:720.000000pt;}
.w0_c00044{width:1280.000000pt;}
.x0_c00044{left:0.000000pt;}
.x1_c00044{left:153.600000pt;}
.x2_c00044{left:160.312000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_13effe1291e978bda672ca69.woff')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.063477;font-style:normal;font-weight:normal;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_e855dbd62bd1f101917f6808.woff')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00045;src:url('chunks/assets/font_a67d5e3924e3cfc821eba999.woff')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls2_c00045{letter-spacing:-0.324000px;}
.ls1_c00045{letter-spacing:0.000000px;}
.ls0_c00045{letter-spacing:29.916000px;}
.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:-66.060000px;}
.ws1_c00045{word-spacing:-30.024000px;}
.ws3_c00045{word-spacing:0.000000px;}
.ws2_c00045{word-spacing:0.324000px;}
._1_c00045{margin-left:-1.828800px;}
._0_c00045{width:1.735200px;}
._2_c00045{width:3.542400px;}
._3_c00045{width:31.946400px;}
.fc1_c00045{color:rgb(0,0,0);}
.fc0_c00045{color:rgb(25,27,14);}
.fs1_c00045{font-size:108.000000px;}
.fs0_c00045{font-size:264.240000px;}
.y0_c00045{bottom:0.000000px;}
.y9_c00045{bottom:205.019850px;}
.y8_c00045{bottom:237.419850px;}
.y7_c00045{bottom:269.819850px;}
.y6_c00045{bottom:302.219850px;}
.y5_c00045{bottom:334.619850px;}
.y4_c00045{bottom:367.019850px;}
.y3_c00045{bottom:399.419850px;}
.y2_c00045{bottom:431.819850px;}
.y1_c00045{bottom:668.340000px;}
.h2_c00045{height:96.820312px;}
.h1_c00045{height:231.855117px;}
.h0_c00045{height:810.000000px;}
.w0_c00045{width:1440.000000px;}
.x0_c00045{left:0.000000px;}
.x1_c00045{left:172.800000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls2_c00045{letter-spacing:-0.288000pt;}
.ls1_c00045{letter-spacing:0.000000pt;}
.ls0_c00045{letter-spacing:26.592000pt;}
.ws0_c00045{word-spacing:-58.720000pt;}
.ws1_c00045{word-spacing:-26.688000pt;}
.ws3_c00045{word-spacing:0.000000pt;}
.ws2_c00045{word-spacing:0.288000pt;}
._1_c00045{margin-left:-1.625600pt;}
._0_c00045{width:1.542400pt;}
._2_c00045{width:3.148800pt;}
._3_c00045{width:28.396800pt;}
.fs1_c00045{font-size:96.000000pt;}
.fs0_c00045{font-size:234.880000pt;}
.y0_c00045{bottom:0.000000pt;}
.y9_c00045{bottom:182.239867pt;}
.y8_c00045{bottom:211.039867pt;}
.y7_c00045{bottom:239.839867pt;}
.y6_c00045{bottom:268.639867pt;}
.y5_c00045{bottom:297.439867pt;}
.y4_c00045{bottom:326.239867pt;}
.y3_c00045{bottom:355.039867pt;}
.y2_c00045{bottom:383.839867pt;}
.y1_c00045{bottom:594.080000pt;}
.h2_c00045{height:86.062500pt;}
.h1_c00045{height:206.093437pt;}
.h0_c00045{height:720.000000pt;}
.w0_c00045{width:1280.000000pt;}
.x0_c00045{left:0.000000pt;}
.x1_c00045{left:153.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a14cebb3d064ac073a8cf056.woff')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.172852;font-style:normal;font-weight:normal;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_d9cf1c35ab7ee6af1a8899cb.woff')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00046;src:url('chunks/assets/font_236ac7662054fb5e07bfb5d4.woff')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00046;src:url('chunks/assets/font_58f0fe36dfe752f8876af345.woff')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.172852;font-style: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.000000px;}
.ls0_c00046{letter-spacing:0.185760px;}
.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:-27.174240px;}
.ws1_c00046{word-spacing:0.000000px;}
._3_c00046{margin-left:-4.029696px;}
._0_c00046{margin-left:-3.022272px;}
._4_c00046{margin-left:-2.013120px;}
._2_c00046{margin-left:-1.007424px;}
._1_c00046{width:1.343232px;}
.fc1_c00046{color:rgb(23,55,94);}
.fc0_c00046{color:rgb(0,0,0);}
.fs4_c00046{font-size:120.240000px;}
.fs5_c00046{font-size:144.000000px;}
.fs3_c00046{font-size:167.760000px;}
.fs2_c00046{font-size:167.904000px;}
.fs1_c00046{font-size:239.760000px;}
.fs0_c00046{font-size:239.904000px;}
.y0_c00046{bottom:0.000000px;}
.ya_c00046{bottom:144.648000px;}
.y9_c00046{bottom:234.255000px;}
.y8_c00046{bottom:270.255000px;}
.y7_c00046{bottom:314.175000px;}
.y6_c00046{bottom:378.285000px;}
.y5_c00046{bottom:414.285000px;}
.y4_c00046{bottom:453.525000px;}
.y3_c00046{bottom:503.925000px;}
.y2_c00046{bottom:559.050000px;}
.y1_c00046{bottom:631.050000px;}
.h5_c00046{height:119.594180px;}
.h6_c00046{height:123.116836px;}
.h7_c00046{height:147.445312px;}
.h4_c00046{height:171.773789px;}
.h3_c00046{height:171.921234px;}
.h2_c00046{height:238.472227px;}
.h1_c00046{height:238.615453px;}
.h0_c00046{height:810.000000px;}
.w0_c00046{width:1080.000000px;}
.x0_c00046{left:0.000000px;}
.x7_c00046{left:73.512000px;}
.x2_c00046{left:124.020000px;}
.x6_c00046{left:317.010000px;}
.x3_c00046{left:377.535000px;}
.x5_c00046{left:448.455000px;}
.x4_c00046{left:523.515000px;}
.x1_c00046{left:553.935000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls1_c00046{letter-spacing:0.000000pt;}
.ls0_c00046{letter-spacing:0.165120pt;}
.ws0_c00046{word-spacing:-24.154880pt;}
.ws1_c00046{word-spacing:0.000000pt;}
._3_c00046{margin-left:-3.581952pt;}
._0_c00046{margin-left:-2.686464pt;}
._4_c00046{margin-left:-1.789440pt;}
._2_c00046{margin-left:-0.895488pt;}
._1_c00046{width:1.193984pt;}
.fs4_c00046{font-size:106.880000pt;}
.fs5_c00046{font-size:128.000000pt;}
.fs3_c00046{font-size:149.120000pt;}
.fs2_c00046{font-size:149.248000pt;}
.fs1_c00046{font-size:213.120000pt;}
.fs0_c00046{font-size:213.248000pt;}
.y0_c00046{bottom:0.000000pt;}
.ya_c00046{bottom:128.576000pt;}
.y9_c00046{bottom:208.226667pt;}
.y8_c00046{bottom:240.226667pt;}
.y7_c00046{bottom:279.266667pt;}
.y6_c00046{bottom:336.253333pt;}
.y5_c00046{bottom:368.253333pt;}
.y4_c00046{bottom:403.133333pt;}
.y3_c00046{bottom:447.933333pt;}
.y2_c00046{bottom:496.933333pt;}
.y1_c00046{bottom:560.933333pt;}
.h5_c00046{height:106.305937pt;}
.h6_c00046{height:109.437187pt;}
.h7_c00046{height:131.062500pt;}
.h4_c00046{height:152.687812pt;}
.h3_c00046{height:152.818875pt;}
.h2_c00046{height:211.975312pt;}
.h1_c00046{height:212.102625pt;}
.h0_c00046{height:720.000000pt;}
.w0_c00046{width:960.000000pt;}
.x0_c00046{left:0.000000pt;}
.x7_c00046{left:65.344000pt;}
.x2_c00046{left:110.240000pt;}
.x6_c00046{left:281.786667pt;}
.x3_c00046{left:335.586667pt;}
.x5_c00046{left:398.626667pt;}
.x4_c00046{left:465.346667pt;}
.x1_c00046{left:492.386667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63c349580f5c897a9a6ac98e.woff')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00047;src:url('chunks/assets/font_bdc350ac70f3acc430dfee8f.woff')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00047;src:url('chunks/assets/font_9e7115d0b499ecc75c4dece0.woff')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00047;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00047;src:url('chunks/assets/font_59ac9d3015486039e8aeaca9.woff')format("woff");}.ff5_c00047{font-family:ff5_c00047;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls2_c00047{letter-spacing:0.000000px;}
.ls1_c00047{letter-spacing:98.949600px;}
.ls0_c00047{letter-spacing:99.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;}
._5_c00047{margin-left:-5.920704px;}
._3_c00047{margin-left:-4.029696px;}
._0_c00047{margin-left:-3.022272px;}
._4_c00047{margin-left:-2.013120px;}
._2_c00047{margin-left:-1.007424px;}
._1_c00047{width:1.552704px;}
.fc1_c00047{color:rgb(0,0,0);}
.fc0_c00047{color:rgb(23,55,94);}
.fs2_c00047{font-size:167.760000px;}
.fs1_c00047{font-size:167.904000px;}
.fs4_c00047{font-size:180.000000px;}
.fs3_c00047{font-size:180.144000px;}
.fs0_c00047{font-size:216.000000px;}
.y0_c00047{bottom:0.000000px;}
.yd_c00047{bottom:125.100000px;}
.yc_c00047{bottom:184.530000px;}
.yb_c00047{bottom:243.930000px;}
.ya_c00047{bottom:292.530000px;}
.y9_c00047{bottom:351.975000px;}
.y8_c00047{bottom:411.375000px;}
.y7_c00047{bottom:470.805000px;}
.y6_c00047{bottom:519.405000px;}
.y5_c00047{bottom:578.805000px;}
.y4_c00047{bottom:613.185000px;}
.y3_c00047{bottom:663.585000px;}
.y2_c00047{bottom:713.985000px;}
.y1_c00047{bottom:767.490000px;}
.h4_c00047{height:166.858945px;}
.h3_c00047{height:171.773789px;}
.h2_c00047{height:171.921234px;}
.h6_c00047{height:179.033203px;}
.h5_c00047{height:179.176430px;}
.h1_c00047{height:221.167969px;}
.h0_c00047{height:810.000000px;}
.w0_c00047{width:1080.000000px;}
.x0_c00047{left:0.000000px;}
.x4_c00047{left:64.800000px;}
.x5_c00047{left:105.300000px;}
.x2_c00047{left:110.088000px;}
.x3_c00047{left:363.570000px;}
.x1_c00047{left:540.000000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls2_c00047{letter-spacing:0.000000pt;}
.ls1_c00047{letter-spacing:87.955200pt;}
.ls0_c00047{letter-spacing:88.000000pt;}
.ws0_c00047{word-spacing:0.000000pt;}
._5_c00047{margin-left:-5.262848pt;}
._3_c00047{margin-left:-3.581952pt;}
._0_c00047{margin-left:-2.686464pt;}
._4_c00047{margin-left:-1.789440pt;}
._2_c00047{margin-left:-0.895488pt;}
._1_c00047{width:1.380181pt;}
.fs2_c00047{font-size:149.120000pt;}
.fs1_c00047{font-size:149.248000pt;}
.fs4_c00047{font-size:160.000000pt;}
.fs3_c00047{font-size:160.128000pt;}
.fs0_c00047{font-size:192.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.yd_c00047{bottom:111.200000pt;}
.yc_c00047{bottom:164.026667pt;}
.yb_c00047{bottom:216.826667pt;}
.ya_c00047{bottom:260.026667pt;}
.y9_c00047{bottom:312.866667pt;}
.y8_c00047{bottom:365.666667pt;}
.y7_c00047{bottom:418.493333pt;}
.y6_c00047{bottom:461.693333pt;}
.y5_c00047{bottom:514.493333pt;}
.y4_c00047{bottom:545.053333pt;}
.y3_c00047{bottom:589.853333pt;}
.y2_c00047{bottom:634.653333pt;}
.y1_c00047{bottom:682.213333pt;}
.h4_c00047{height:148.319063pt;}
.h3_c00047{height:152.687812pt;}
.h2_c00047{height:152.818875pt;}
.h6_c00047{height:159.140625pt;}
.h5_c00047{height:159.267938pt;}
.h1_c00047{height:196.593750pt;}
.h0_c00047{height:720.000000pt;}
.w0_c00047{width:960.000000pt;}
.x0_c00047{left:0.000000pt;}
.x4_c00047{left:57.600000pt;}
.x5_c00047{left:93.600000pt;}
.x2_c00047{left:97.856000pt;}
.x3_c00047{left:323.173333pt;}
.x1_c00047{left:480.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_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_60ef5ae103fbd28858e0dacf.woff')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.202148;font-style:normal;font-weight:normal;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_0c8758f5b36c311147d98baa.woff')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00048;src:url('chunks/assets/font_1e8d1c4a3b7286fcbc121794.woff')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00048;src:url('chunks/assets/font_1e6f5bb56b64e5504a9f7f1b.woff')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls1_c00048{letter-spacing:0.000000px;}
.ls0_c00048{letter-spacing:0.204480px;}
.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:-23.106240px;}
.ws1_c00048{word-spacing:-21.641760px;}
.ws2_c00048{word-spacing:0.000000px;}
._2_c00048{margin-left:-4.036032px;}
._0_c00048{margin-left:-2.018016px;}
._1_c00048{margin-left:-1.009008px;}
._3_c00048{width:1.240704px;}
.fc1_c00048{color:rgb(23,55,94);}
.fc2_c00048{color:rgb(255,255,255);}
.fc0_c00048{color:rgb(0,0,0);}
.fs4_c00048{font-size:95.760000px;}
.fs5_c00048{font-size:95.904000px;}
.fs3_c00048{font-size:102.240000px;}
.fs2_c00048{font-size:144.000000px;}
.fs1_c00048{font-size:144.144000px;}
.fs0_c00048{font-size:167.760000px;}
.y0_c00048{bottom:0.000000px;}
.y16_c00048{bottom:93.096000px;}
.y15_c00048{bottom:119.376000px;}
.y14_c00048{bottom:145.836000px;}
.y13_c00048{bottom:172.155000px;}
.y9_c00048{bottom:202.395000px;}
.y8_c00048{bottom:281.130000px;}
.y12_c00048{bottom:286.920000px;}
.y7_c00048{bottom:309.030000px;}
.y11_c00048{bottom:313.200000px;}
.y10_c00048{bottom:339.690000px;}
.yf_c00048{bottom:365.970000px;}
.y6_c00048{bottom:387.645000px;}
.ye_c00048{bottom:464.220000px;}
.y5_c00048{bottom:480.270000px;}
.yd_c00048{bottom:490.680000px;}
.yc_c00048{bottom:516.990000px;}
.yb_c00048{bottom:543.450000px;}
.ya_c00048{bottom:569.730000px;}
.y4_c00048{bottom:629.565000px;}
.y3_c00048{bottom:672.765000px;}
.y2_c00048{bottom:715.965000px;}
.y1_c00048{bottom:760.830000px;}
.h6_c00048{height:95.245664px;}
.h7_c00048{height:95.388891px;}
.h5_c00048{height:104.686172px;}
.h4_c00048{height:143.226562px;}
.h3_c00048{height:147.445312px;}
.h2_c00048{height:147.592758px;}
.h1_c00048{height:171.773789px;}
.h0_c00048{height:810.000000px;}
.w0_c00048{width:1080.000000px;}
.x0_c00048{left:0.000000px;}
.x2_c00048{left:113.328000px;}
.x7_c00048{left:280.905000px;}
.x6_c00048{left:327.165000px;}
.x4_c00048{left:341.205000px;}
.x5_c00048{left:354.165000px;}
.x3_c00048{left:447.270000px;}
.x1_c00048{left:540.000000px;}
.x10_c00048{left:769.650000px;}
.x12_c00048{left:772.485000px;}
.x8_c00048{left:774.720000px;}
.xb_c00048{left:789.840000px;}
.x11_c00048{left:800.565000px;}
.xd_c00048{left:802.410000px;}
.xa_c00048{left:805.890000px;}
.xe_c00048{left:812.130000px;}
.xf_c00048{left:817.890000px;}
.x13_c00048{left:822.345000px;}
.x9_c00048{left:824.070000px;}
.xc_c00048{left:829.110000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls1_c00048{letter-spacing:0.000000pt;}
.ls0_c00048{letter-spacing:0.181760pt;}
.ws0_c00048{word-spacing:-20.538880pt;}
.ws1_c00048{word-spacing:-19.237120pt;}
.ws2_c00048{word-spacing:0.000000pt;}
._2_c00048{margin-left:-3.587584pt;}
._0_c00048{margin-left:-1.793792pt;}
._1_c00048{margin-left:-0.896896pt;}
._3_c00048{width:1.102848pt;}
.fs4_c00048{font-size:85.120000pt;}
.fs5_c00048{font-size:85.248000pt;}
.fs3_c00048{font-size:90.880000pt;}
.fs2_c00048{font-size:128.000000pt;}
.fs1_c00048{font-size:128.128000pt;}
.fs0_c00048{font-size:149.120000pt;}
.y0_c00048{bottom:0.000000pt;}
.y16_c00048{bottom:82.752000pt;}
.y15_c00048{bottom:106.112000pt;}
.y14_c00048{bottom:129.632000pt;}
.y13_c00048{bottom:153.026667pt;}
.y9_c00048{bottom:179.906667pt;}
.y8_c00048{bottom:249.893333pt;}
.y12_c00048{bottom:255.040000pt;}
.y7_c00048{bottom:274.693333pt;}
.y11_c00048{bottom:278.400000pt;}
.y10_c00048{bottom:301.946667pt;}
.yf_c00048{bottom:325.306667pt;}
.y6_c00048{bottom:344.573333pt;}
.ye_c00048{bottom:412.640000pt;}
.y5_c00048{bottom:426.906667pt;}
.yd_c00048{bottom:436.160000pt;}
.yc_c00048{bottom:459.546667pt;}
.yb_c00048{bottom:483.066667pt;}
.ya_c00048{bottom:506.426667pt;}
.y4_c00048{bottom:559.613333pt;}
.y3_c00048{bottom:598.013333pt;}
.y2_c00048{bottom:636.413333pt;}
.y1_c00048{bottom:676.293333pt;}
.h6_c00048{height:84.662813pt;}
.h7_c00048{height:84.790125pt;}
.h5_c00048{height:93.054375pt;}
.h4_c00048{height:127.312500pt;}
.h3_c00048{height:131.062500pt;}
.h2_c00048{height:131.193562pt;}
.h1_c00048{height:152.687812pt;}
.h0_c00048{height:720.000000pt;}
.w0_c00048{width:960.000000pt;}
.x0_c00048{left:0.000000pt;}
.x2_c00048{left:100.736000pt;}
.x7_c00048{left:249.693333pt;}
.x6_c00048{left:290.813333pt;}
.x4_c00048{left:303.293333pt;}
.x5_c00048{left:314.813333pt;}
.x3_c00048{left:397.573333pt;}
.x1_c00048{left:480.000000pt;}
.x10_c00048{left:684.133333pt;}
.x12_c00048{left:686.653333pt;}
.x8_c00048{left:688.640000pt;}
.xb_c00048{left:702.080000pt;}
.x11_c00048{left:711.613333pt;}
.xd_c00048{left:713.253333pt;}
.xa_c00048{left:716.346667pt;}
.xe_c00048{left:721.893333pt;}
.xf_c00048{left:727.013333pt;}
.x13_c00048{left:730.973333pt;}
.x9_c00048{left:732.506667pt;}
.xc_c00048{left:736.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_863060be5cbe4b8d55481a6c.woff')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00049;src:url('chunks/assets/font_88b94c02470da5e369551919.woff')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00049;src:url('chunks/assets/font_09d30ebaadbb8e39db625f61.woff')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00049;src:url('chunks/assets/font_02e4d6524caa1d1fb5d88ea3.woff')format("woff");}.ff4_c00049{font-family:ff4_c00049;line-height:1.172852;font-style: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;}
.ls1_c00049{letter-spacing:0.000000px;}
.ls2_c00049{letter-spacing:0.153600px;}
.ls0_c00049{letter-spacing:33.671520px;}
.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:-21.795360px;}
.ws1_c00049{word-spacing:0.000000px;}
._5_c00049{margin-left:-7.086240px;}
._3_c00049{margin-left:-3.295104px;}
._0_c00049{margin-left:-2.018016px;}
._1_c00049{margin-left:-1.003968px;}
._2_c00049{width:1.394016px;}
._6_c00049{width:2.534784px;}
._4_c00049{width:33.671520px;}
.fc3_c00049{color:transparent;}
.fc2_c00049{color:rgb(255,255,255);}
.fc1_c00049{color:rgb(0,0,0);}
.fc0_c00049{color:rgb(23,55,94);}
.fs5_c00049{font-size:72.000000px;}
.fs3_c00049{font-size:95.760000px;}
.fs4_c00049{font-size:95.904000px;}
.fs2_c00049{font-size:144.000000px;}
.fs1_c00049{font-size:144.144000px;}
.fs0_c00049{font-size:167.760000px;}
.y0_c00049{bottom:0.000000px;}
.y1b_c00049{bottom:94.464000px;}
.y1a_c00049{bottom:120.924000px;}
.y19_c00049{bottom:151.530000px;}
.y18_c00049{bottom:177.990000px;}
.y17_c00049{bottom:204.300000px;}
.y16_c00049{bottom:235.080000px;}
.y15_c00049{bottom:261.540000px;}
.y14_c00049{bottom:292.320000px;}
.y13_c00049{bottom:318.600000px;}
.y12_c00049{bottom:349.410000px;}
.y11_c00049{bottom:375.690000px;}
.y10_c00049{bottom:402.150000px;}
.yf_c00049{bottom:428.430000px;}
.ye_c00049{bottom:459.210000px;}
.y9_c00049{bottom:466.560000px;}
.yd_c00049{bottom:485.715000px;}
.y8_c00049{bottom:493.050000px;}
.yc_c00049{bottom:511.995000px;}
.y7_c00049{bottom:519.330000px;}
.yb_c00049{bottom:542.775000px;}
.y6_c00049{bottom:545.790000px;}
.y5_c00049{bottom:572.070000px;}
.ya_c00049{bottom:579.315000px;}
.y4_c00049{bottom:629.565000px;}
.y3_c00049{bottom:672.765000px;}
.y2_c00049{bottom:715.965000px;}
.y1_c00049{bottom:760.830000px;}
.h5_c00049{height:95.245664px;}
.h6_c00049{height:95.388891px;}
.h7_c00049{height:98.051133px;}
.h8_c00049{height:98.198578px;}
.h4_c00049{height:143.226562px;}
.h3_c00049{height:147.445312px;}
.h2_c00049{height:147.592758px;}
.h1_c00049{height:171.773789px;}
.h0_c00049{height:810.000000px;}
.w0_c00049{width:1080.000000px;}
.x0_c00049{left:0.000000px;}
.x8_c00049{left:62.856000px;}
.x5_c00049{left:64.296000px;}
.x4_c00049{left:69.516000px;}
.x6_c00049{left:73.296000px;}
.x7_c00049{left:91.116000px;}
.x2_c00049{left:247.785000px;}
.x9_c00049{left:295.125000px;}
.x3_c00049{left:313.170000px;}
.xa_c00049{left:315.465000px;}
.x1_c00049{left:540.000000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls1_c00049{letter-spacing:0.000000pt;}
.ls2_c00049{letter-spacing:0.136533pt;}
.ls0_c00049{letter-spacing:29.930240pt;}
.ws0_c00049{word-spacing:-19.373653pt;}
.ws1_c00049{word-spacing:0.000000pt;}
._5_c00049{margin-left:-6.298880pt;}
._3_c00049{margin-left:-2.928981pt;}
._0_c00049{margin-left:-1.793792pt;}
._1_c00049{margin-left:-0.892416pt;}
._2_c00049{width:1.239125pt;}
._6_c00049{width:2.253141pt;}
._4_c00049{width:29.930240pt;}
.fs5_c00049{font-size:64.000000pt;}
.fs3_c00049{font-size:85.120000pt;}
.fs4_c00049{font-size:85.248000pt;}
.fs2_c00049{font-size:128.000000pt;}
.fs1_c00049{font-size:128.128000pt;}
.fs0_c00049{font-size:149.120000pt;}
.y0_c00049{bottom:0.000000pt;}
.y1b_c00049{bottom:83.968000pt;}
.y1a_c00049{bottom:107.488000pt;}
.y19_c00049{bottom:134.693333pt;}
.y18_c00049{bottom:158.213333pt;}
.y17_c00049{bottom:181.600000pt;}
.y16_c00049{bottom:208.960000pt;}
.y15_c00049{bottom:232.480000pt;}
.y14_c00049{bottom:259.840000pt;}
.y13_c00049{bottom:283.200000pt;}
.y12_c00049{bottom:310.586667pt;}
.y11_c00049{bottom:333.946667pt;}
.y10_c00049{bottom:357.466667pt;}
.yf_c00049{bottom:380.826667pt;}
.ye_c00049{bottom:408.186667pt;}
.y9_c00049{bottom:414.720000pt;}
.yd_c00049{bottom:431.746667pt;}
.y8_c00049{bottom:438.266667pt;}
.yc_c00049{bottom:455.106667pt;}
.y7_c00049{bottom:461.626667pt;}
.yb_c00049{bottom:482.466667pt;}
.y6_c00049{bottom:485.146667pt;}
.y5_c00049{bottom:508.506667pt;}
.ya_c00049{bottom:514.946667pt;}
.y4_c00049{bottom:559.613333pt;}
.y3_c00049{bottom:598.013333pt;}
.y2_c00049{bottom:636.413333pt;}
.y1_c00049{bottom:676.293333pt;}
.h5_c00049{height:84.662813pt;}
.h6_c00049{height:84.790125pt;}
.h7_c00049{height:87.156562pt;}
.h8_c00049{height:87.287625pt;}
.h4_c00049{height:127.312500pt;}
.h3_c00049{height:131.062500pt;}
.h2_c00049{height:131.193562pt;}
.h1_c00049{height:152.687812pt;}
.h0_c00049{height:720.000000pt;}
.w0_c00049{width:960.000000pt;}
.x0_c00049{left:0.000000pt;}
.x8_c00049{left:55.872000pt;}
.x5_c00049{left:57.152000pt;}
.x4_c00049{left:61.792000pt;}
.x6_c00049{left:65.152000pt;}
.x7_c00049{left:80.992000pt;}
.x2_c00049{left:220.253333pt;}
.x9_c00049{left:262.333333pt;}
.x3_c00049{left:278.373333pt;}
.xa_c00049{left:280.413333pt;}
.x1_c00049{left:480.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_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_9bf3e83a23e642fc71cf8b26.woff')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.202148;font-style:normal;font-weight:normal;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_0284f131c28575ae24503c66.woff')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00050;src:url('chunks/assets/font_14f6d6ee5805b26fced5ec21.woff')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00050;src:url('chunks/assets/font_0fedd799b7189b70e5e8df4e.woff')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.172852;font-style: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;}
._6_c00050{margin-left:-11.267664px;}
._4_c00050{margin-left:-7.252416px;}
._5_c00050{margin-left:-5.415696px;}
._2_c00050{margin-left:-4.036032px;}
._0_c00050{margin-left:-2.018016px;}
._1_c00050{margin-left:-1.009008px;}
._3_c00050{width:1.404096px;}
.fc2_c00050{color:rgb(255,255,255);}
.fc1_c00050{color:rgb(0,0,0);}
.fc0_c00050{color:rgb(23,55,94);}
.fs4_c00050{font-size:84.240000px;}
.fs5_c00050{font-size:84.384000px;}
.fs3_c00050{font-size:108.000000px;}
.fs2_c00050{font-size:108.144000px;}
.fs0_c00050{font-size:144.000000px;}
.fs1_c00050{font-size:144.144000px;}
.y0_c00050{bottom:0.000000px;}
.y1b_c00050{bottom:150.300000px;}
.y1a_c00050{bottom:173.340000px;}
.y19_c00050{bottom:196.380000px;}
.y18_c00050{bottom:219.450000px;}
.y17_c00050{bottom:242.670000px;}
.y16_c00050{bottom:265.710000px;}
.y15_c00050{bottom:288.750000px;}
.y14_c00050{bottom:320.790000px;}
.y13_c00050{bottom:343.875000px;}
.y12_c00050{bottom:366.915000px;}
.y11_c00050{bottom:389.955000px;}
.y10_c00050{bottom:421.995000px;}
.yf_c00050{bottom:445.215000px;}
.ye_c00050{bottom:468.255000px;}
.y9_c00050{bottom:469.590000px;}
.y8_c00050{bottom:499.290000px;}
.yd_c00050{bottom:500.325000px;}
.yc_c00050{bottom:523.365000px;}
.y7_c00050{bottom:528.990000px;}
.yb_c00050{bottom:546.405000px;}
.y6_c00050{bottom:558.690000px;}
.ya_c00050{bottom:578.445000px;}
.y5_c00050{bottom:588.210000px;}
.y4_c00050{bottom:633.165000px;}
.y3_c00050{bottom:676.365000px;}
.y2_c00050{bottom:719.565000px;}
.y1_c00050{bottom:762.810000px;}
.h7_c00050{height:83.787539px;}
.h8_c00050{height:83.930766px;}
.h6_c00050{height:86.255508px;}
.h5_c00050{height:107.419922px;}
.h4_c00050{height:107.563148px;}
.h3_c00050{height:143.226562px;}
.h1_c00050{height:147.445312px;}
.h2_c00050{height:147.592758px;}
.h0_c00050{height:810.000000px;}
.w0_c00050{width:1080.000000px;}
.x0_c00050{left:0.000000px;}
.x4_c00050{left:73.584000px;}
.x5_c00050{left:84.564000px;}
.x7_c00050{left:87.084000px;}
.x6_c00050{left:91.224000px;}
.x8_c00050{left:102.564000px;}
.x2_c00050{left:247.785000px;}
.x9_c00050{left:274.170000px;}
.x3_c00050{left:313.170000px;}
.x1_c00050{left:540.000000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws0_c00050{word-spacing:0.000000pt;}
._6_c00050{margin-left:-10.015701pt;}
._4_c00050{margin-left:-6.446592pt;}
._5_c00050{margin-left:-4.813952pt;}
._2_c00050{margin-left:-3.587584pt;}
._0_c00050{margin-left:-1.793792pt;}
._1_c00050{margin-left:-0.896896pt;}
._3_c00050{width:1.248085pt;}
.fs4_c00050{font-size:74.880000pt;}
.fs5_c00050{font-size:75.008000pt;}
.fs3_c00050{font-size:96.000000pt;}
.fs2_c00050{font-size:96.128000pt;}
.fs0_c00050{font-size:128.000000pt;}
.fs1_c00050{font-size:128.128000pt;}
.y0_c00050{bottom:0.000000pt;}
.y1b_c00050{bottom:133.600000pt;}
.y1a_c00050{bottom:154.080000pt;}
.y19_c00050{bottom:174.560000pt;}
.y18_c00050{bottom:195.066667pt;}
.y17_c00050{bottom:215.706667pt;}
.y16_c00050{bottom:236.186667pt;}
.y15_c00050{bottom:256.666667pt;}
.y14_c00050{bottom:285.146667pt;}
.y13_c00050{bottom:305.666667pt;}
.y12_c00050{bottom:326.146667pt;}
.y11_c00050{bottom:346.626667pt;}
.y10_c00050{bottom:375.106667pt;}
.yf_c00050{bottom:395.746667pt;}
.ye_c00050{bottom:416.226667pt;}
.y9_c00050{bottom:417.413333pt;}
.y8_c00050{bottom:443.813333pt;}
.yd_c00050{bottom:444.733333pt;}
.yc_c00050{bottom:465.213333pt;}
.y7_c00050{bottom:470.213333pt;}
.yb_c00050{bottom:485.693333pt;}
.y6_c00050{bottom:496.613333pt;}
.ya_c00050{bottom:514.173333pt;}
.y5_c00050{bottom:522.853333pt;}
.y4_c00050{bottom:562.813333pt;}
.y3_c00050{bottom:601.213333pt;}
.y2_c00050{bottom:639.613333pt;}
.y1_c00050{bottom:678.053333pt;}
.h7_c00050{height:74.477812pt;}
.h8_c00050{height:74.605125pt;}
.h6_c00050{height:76.671562pt;}
.h5_c00050{height:95.484375pt;}
.h4_c00050{height:95.611688pt;}
.h3_c00050{height:127.312500pt;}
.h1_c00050{height:131.062500pt;}
.h2_c00050{height:131.193562pt;}
.h0_c00050{height:720.000000pt;}
.w0_c00050{width:960.000000pt;}
.x0_c00050{left:0.000000pt;}
.x4_c00050{left:65.408000pt;}
.x5_c00050{left:75.168000pt;}
.x7_c00050{left:77.408000pt;}
.x6_c00050{left:81.088000pt;}
.x8_c00050{left:91.168000pt;}
.x2_c00050{left:220.253333pt;}
.x9_c00050{left:243.706667pt;}
.x3_c00050{left:278.373333pt;}
.x1_c00050{left:480.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_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_34d3554262a46424ad817e0c.woff')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00051;src:url('chunks/assets/font_39d0d8d48e5f4369e7ddbb1b.woff')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00051;src:url('chunks/assets/font_f7fcb63608fdeea7f8a4d57a.woff')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00051;src:url('chunks/assets/font_19c32cb1a21f864a32f0c49f.woff')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.172852;font-style: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;}
._5_c00051{margin-left:-7.174944px;}
._2_c00051{margin-left:-4.036032px;}
._0_c00051{margin-left:-2.018016px;}
._1_c00051{margin-left:-1.009008px;}
._3_c00051{width:1.067472px;}
._4_c00051{width:2.120832px;}
.fc2_c00051{color:rgb(255,255,255);}
.fc1_c00051{color:rgb(0,0,0);}
.fc0_c00051{color:rgb(23,55,94);}
.fs2_c00051{font-size:95.760000px;}
.fs3_c00051{font-size:95.904000px;}
.fs1_c00051{font-size:144.000000px;}
.fs0_c00051{font-size:144.144000px;}
.y0_c00051{bottom:0.000000px;}
.y19_c00051{bottom:112.536000px;}
.y18_c00051{bottom:138.816000px;}
.y17_c00051{bottom:165.270000px;}
.y16_c00051{bottom:191.595000px;}
.y15_c00051{bottom:217.875000px;}
.y14_c00051{bottom:244.335000px;}
.y13_c00051{bottom:270.615000px;}
.y12_c00051{bottom:307.335000px;}
.y11_c00051{bottom:333.615000px;}
.y10_c00051{bottom:360.105000px;}
.yf_c00051{bottom:386.385000px;}
.ye_c00051{bottom:412.845000px;}
.yd_c00051{bottom:439.125000px;}
.yc_c00051{bottom:475.845000px;}
.y7_c00051{bottom:491.115000px;}
.yb_c00051{bottom:502.170000px;}
.y6_c00051{bottom:517.395000px;}
.ya_c00051{bottom:528.450000px;}
.y5_c00051{bottom:543.855000px;}
.y9_c00051{bottom:554.910000px;}
.y4_c00051{bottom:570.135000px;}
.y8_c00051{bottom:591.450000px;}
.y3_c00051{bottom:654.765000px;}
.y2_c00051{bottom:697.965000px;}
.y1_c00051{bottom:741.165000px;}
.h4_c00051{height:95.245664px;}
.h6_c00051{height:95.388891px;}
.h5_c00051{height:98.051133px;}
.h3_c00051{height:143.226562px;}
.h2_c00051{height:147.445312px;}
.h1_c00051{height:147.592758px;}
.h0_c00051{height:810.000000px;}
.w0_c00051{width:1080.000000px;}
.x0_c00051{left:0.000000px;}
.x5_c00051{left:85.356000px;}
.x4_c00051{left:115.956000px;}
.x6_c00051{left:127.116000px;}
.x7_c00051{left:137.916000px;}
.x1_c00051{left:247.785000px;}
.x2_c00051{left:313.170000px;}
.x8_c00051{left:342.540000px;}
.x3_c00051{left:540.000000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws0_c00051{word-spacing:0.000000pt;}
._5_c00051{margin-left:-6.377728pt;}
._2_c00051{margin-left:-3.587584pt;}
._0_c00051{margin-left:-1.793792pt;}
._1_c00051{margin-left:-0.896896pt;}
._3_c00051{width:0.948864pt;}
._4_c00051{width:1.885184pt;}
.fs2_c00051{font-size:85.120000pt;}
.fs3_c00051{font-size:85.248000pt;}
.fs1_c00051{font-size:128.000000pt;}
.fs0_c00051{font-size:128.128000pt;}
.y0_c00051{bottom:0.000000pt;}
.y19_c00051{bottom:100.032000pt;}
.y18_c00051{bottom:123.392000pt;}
.y17_c00051{bottom:146.906667pt;}
.y16_c00051{bottom:170.306667pt;}
.y15_c00051{bottom:193.666667pt;}
.y14_c00051{bottom:217.186667pt;}
.y13_c00051{bottom:240.546667pt;}
.y12_c00051{bottom:273.186667pt;}
.y11_c00051{bottom:296.546667pt;}
.y10_c00051{bottom:320.093333pt;}
.yf_c00051{bottom:343.453333pt;}
.ye_c00051{bottom:366.973333pt;}
.yd_c00051{bottom:390.333333pt;}
.yc_c00051{bottom:422.973333pt;}
.y7_c00051{bottom:436.546667pt;}
.yb_c00051{bottom:446.373333pt;}
.y6_c00051{bottom:459.906667pt;}
.ya_c00051{bottom:469.733333pt;}
.y5_c00051{bottom:483.426667pt;}
.y9_c00051{bottom:493.253333pt;}
.y4_c00051{bottom:506.786667pt;}
.y8_c00051{bottom:525.733333pt;}
.y3_c00051{bottom:582.013333pt;}
.y2_c00051{bottom:620.413333pt;}
.y1_c00051{bottom:658.813333pt;}
.h4_c00051{height:84.662813pt;}
.h6_c00051{height:84.790125pt;}
.h5_c00051{height:87.156562pt;}
.h3_c00051{height:127.312500pt;}
.h2_c00051{height:131.062500pt;}
.h1_c00051{height:131.193562pt;}
.h0_c00051{height:720.000000pt;}
.w0_c00051{width:960.000000pt;}
.x0_c00051{left:0.000000pt;}
.x5_c00051{left:75.872000pt;}
.x4_c00051{left:103.072000pt;}
.x6_c00051{left:112.992000pt;}
.x7_c00051{left:122.592000pt;}
.x1_c00051{left:220.253333pt;}
.x2_c00051{left:278.373333pt;}
.x8_c00051{left:304.480000pt;}
.x3_c00051{left:480.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_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_b77840b32942d48e0a7bb67a.woff')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.202148;font-style:normal;font-weight:normal;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_25ed6affebbb676f73eef759.woff')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00052;src:url('chunks/assets/font_cdad8bb80caa0adea43b4a26.woff')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00052;src:url('chunks/assets/font_7e25b536eed61aaf8ec4b19e.woff')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:1.172852;font-style: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);}
.m1_c00052{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls1_c00052{letter-spacing:0.000000px;}
.ls0_c00052{letter-spacing:12.048480px;}
.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:-28.476000px;}
.ws1_c00052{word-spacing:-19.038240px;}
.ws2_c00052{word-spacing:0.000000px;}
._6_c00052{margin-left:-12.726000px;}
._5_c00052{margin-left:-7.333632px;}
._8_c00052{margin-left:-5.708304px;}
._4_c00052{margin-left:-4.662000px;}
._2_c00052{margin-left:-3.297600px;}
._0_c00052{margin-left:-2.242368px;}
._3_c00052{margin-left:-1.055232px;}
._1_c00052{width:1.055232px;}
._7_c00052{width:12.048480px;}
.fc3_c00052{color:rgb(255,255,255);}
.fc1_c00052{color:rgb(0,0,0);}
.fc2_c00052{color:rgb(0,0,255);}
.fc0_c00052{color:rgb(23,55,94);}
.fs7_c00052{font-size:84.240000px;}
.fs8_c00052{font-size:84.384000px;}
.fs5_c00052{font-size:108.000000px;}
.fs6_c00052{font-size:108.144000px;}
.fs3_c00052{font-size:126.000000px;}
.fs4_c00052{font-size:126.144000px;}
.fs1_c00052{font-size:131.760000px;}
.fs0_c00052{font-size:131.904000px;}
.fs2_c00052{font-size:144.000000px;}
.y0_c00052{bottom:0.000000px;}
.y1f_c00052{bottom:144.252000px;}
.y1e_c00052{bottom:167.295000px;}
.y1d_c00052{bottom:190.335000px;}
.yc_c00052{bottom:198.900000px;}
.y1c_c00052{bottom:213.375000px;}
.y1b_c00052{bottom:240.375000px;}
.yb_c00052{bottom:246.960000px;}
.y1a_c00052{bottom:263.415000px;}
.ya_c00052{bottom:281.550000px;}
.y19_c00052{bottom:286.485000px;}
.y18_c00052{bottom:309.705000px;}
.y9_c00052{bottom:316.110000px;}
.y17_c00052{bottom:336.525000px;}
.y8_c00052{bottom:350.670000px;}
.y16_c00052{bottom:359.565000px;}
.y15_c00052{bottom:382.605000px;}
.y7_c00052{bottom:385.410000px;}
.y14_c00052{bottom:405.825000px;}
.y6_c00052{bottom:420.015000px;}
.y13_c00052{bottom:428.910000px;}
.y12_c00052{bottom:451.950000px;}
.y5_c00052{bottom:454.575000px;}
.y11_c00052{bottom:474.990000px;}
.y4_c00052{bottom:490.395000px;}
.y10_c00052{bottom:498.030000px;}
.yf_c00052{bottom:521.070000px;}
.ye_c00052{bottom:557.430000px;}
.yd_c00052{bottom:586.980000px;}
.y3_c00052{bottom:659.265000px;}
.y2_c00052{bottom:698.865000px;}
.y1_c00052{bottom:738.465000px;}
.ha_c00052{height:83.787539px;}
.hc_c00052{height:83.930766px;}
.h9_c00052{height:86.255508px;}
.hb_c00052{height:86.402953px;}
.h7_c00052{height:110.583984px;}
.h8_c00052{height:110.731430px;}
.h5_c00052{height:125.323242px;}
.h6_c00052{height:125.466469px;}
.h3_c00052{height:131.052305px;}
.h2_c00052{height:134.912461px;}
.h1_c00052{height:135.059906px;}
.h4_c00052{height:147.445312px;}
.h0_c00052{height:810.000000px;}
.w0_c00052{width:1080.000000px;}
.x0_c00052{left:0.000000px;}
.x4_c00052{left:66.276000px;}
.x1_c00052{left:272.085000px;}
.x2_c00052{left:331.710000px;}
.x3_c00052{left:540.000000px;}
.x5_c00052{left:557.205000px;}
.x6_c00052{left:570.705000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls1_c00052{letter-spacing:0.000000pt;}
.ls0_c00052{letter-spacing:10.709760pt;}
.ws0_c00052{word-spacing:-25.312000pt;}
.ws1_c00052{word-spacing:-16.922880pt;}
.ws2_c00052{word-spacing:0.000000pt;}
._6_c00052{margin-left:-11.312000pt;}
._5_c00052{margin-left:-6.518784pt;}
._8_c00052{margin-left:-5.074048pt;}
._4_c00052{margin-left:-4.144000pt;}
._2_c00052{margin-left:-2.931200pt;}
._0_c00052{margin-left:-1.993216pt;}
._3_c00052{margin-left:-0.937984pt;}
._1_c00052{width:0.937984pt;}
._7_c00052{width:10.709760pt;}
.fs7_c00052{font-size:74.880000pt;}
.fs8_c00052{font-size:75.008000pt;}
.fs5_c00052{font-size:96.000000pt;}
.fs6_c00052{font-size:96.128000pt;}
.fs3_c00052{font-size:112.000000pt;}
.fs4_c00052{font-size:112.128000pt;}
.fs1_c00052{font-size:117.120000pt;}
.fs0_c00052{font-size:117.248000pt;}
.fs2_c00052{font-size:128.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y1f_c00052{bottom:128.224000pt;}
.y1e_c00052{bottom:148.706667pt;}
.y1d_c00052{bottom:169.186667pt;}
.yc_c00052{bottom:176.800000pt;}
.y1c_c00052{bottom:189.666667pt;}
.y1b_c00052{bottom:213.666667pt;}
.yb_c00052{bottom:219.520000pt;}
.y1a_c00052{bottom:234.146667pt;}
.ya_c00052{bottom:250.266667pt;}
.y19_c00052{bottom:254.653333pt;}
.y18_c00052{bottom:275.293333pt;}
.y9_c00052{bottom:280.986667pt;}
.y17_c00052{bottom:299.133333pt;}
.y8_c00052{bottom:311.706667pt;}
.y16_c00052{bottom:319.613333pt;}
.y15_c00052{bottom:340.093333pt;}
.y7_c00052{bottom:342.586667pt;}
.y14_c00052{bottom:360.733333pt;}
.y6_c00052{bottom:373.346667pt;}
.y13_c00052{bottom:381.253333pt;}
.y12_c00052{bottom:401.733333pt;}
.y5_c00052{bottom:404.066667pt;}
.y11_c00052{bottom:422.213333pt;}
.y4_c00052{bottom:435.906667pt;}
.y10_c00052{bottom:442.693333pt;}
.yf_c00052{bottom:463.173333pt;}
.ye_c00052{bottom:495.493333pt;}
.yd_c00052{bottom:521.760000pt;}
.y3_c00052{bottom:586.013333pt;}
.y2_c00052{bottom:621.213333pt;}
.y1_c00052{bottom:656.413333pt;}
.ha_c00052{height:74.477812pt;}
.hc_c00052{height:74.605125pt;}
.h9_c00052{height:76.671562pt;}
.hb_c00052{height:76.802625pt;}
.h7_c00052{height:98.296875pt;}
.h8_c00052{height:98.427937pt;}
.h5_c00052{height:111.398438pt;}
.h6_c00052{height:111.525750pt;}
.h3_c00052{height:116.490937pt;}
.h2_c00052{height:119.922187pt;}
.h1_c00052{height:120.053250pt;}
.h4_c00052{height:131.062500pt;}
.h0_c00052{height:720.000000pt;}
.w0_c00052{width:960.000000pt;}
.x0_c00052{left:0.000000pt;}
.x4_c00052{left:58.912000pt;}
.x1_c00052{left:241.853333pt;}
.x2_c00052{left:294.853333pt;}
.x3_c00052{left:480.000000pt;}
.x5_c00052{left:495.293333pt;}
.x6_c00052{left:507.293333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ebf2e920a4a6d9a14c4126d.woff')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.202148;font-style:normal;font-weight:normal;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_45d18cde807622d9924ddf9d.woff')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.202148;font-style:normal;font-weight:normal;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_3639f4197d1891e20a056e6e.woff')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00053;src:url('chunks/assets/font_5fcd5101fa9479f711dd398d.woff')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:1.172852;font-style: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);}
.m1_c00053{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls2_c00053{letter-spacing:0.000000px;}
.ls0_c00053{letter-spacing:0.072000px;}
.ls1_c00053{letter-spacing:0.216000px;}
.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:-19.038240px;}
.ws1_c00053{word-spacing:0.000000px;}
._4_c00053{margin-left:-1078.111152px;}
._2_c00053{margin-left:-3.297600px;}
._0_c00053{margin-left:-2.242368px;}
._3_c00053{margin-left:-1.055232px;}
._1_c00053{width:1.055232px;}
.fc3_c00053{color:rgb(255,255,255);}
.fc1_c00053{color:rgb(0,0,0);}
.fc2_c00053{color:rgb(0,0,255);}
.fc0_c00053{color:rgb(23,55,94);}
.fs4_c00053{font-size:84.240000px;}
.fs2_c00053{font-size:108.000000px;}
.fs3_c00053{font-size:108.144000px;}
.fs1_c00053{font-size:131.760000px;}
.fs0_c00053{font-size:131.904000px;}
.y0_c00053{bottom:0.000000px;}
.yf_c00053{bottom:185.400000px;}
.y9_c00053{bottom:305.820000px;}
.y8_c00053{bottom:335.520000px;}
.ye_c00053{bottom:341.100000px;}
.y7_c00053{bottom:365.220000px;}
.yd_c00053{bottom:370.830000px;}
.y6_c00053{bottom:394.920000px;}
.yc_c00053{bottom:400.350000px;}
.y5_c00053{bottom:424.620000px;}
.y4_c00053{bottom:454.170000px;}
.yb_c00053{bottom:528.480000px;}
.ya_c00053{bottom:558.030000px;}
.y3_c00053{bottom:659.265000px;}
.y2_c00053{bottom:698.865000px;}
.y1_c00053{bottom:738.465000px;}
.h8_c00053{height:83.787539px;}
.h4_c00053{height:107.419922px;}
.h5_c00053{height:107.563148px;}
.h6_c00053{height:110.583984px;}
.h7_c00053{height:110.731430px;}
.h3_c00053{height:131.052305px;}
.h2_c00053{height:134.912461px;}
.h1_c00053{height:135.059906px;}
.h0_c00053{height:810.000000px;}
.w0_c00053{width:1080.000000px;}
.x0_c00053{left:0.000000px;}
.x7_c00053{left:169.710000px;}
.x4_c00053{left:192.930000px;}
.x6_c00053{left:195.270000px;}
.x5_c00053{left:199.230000px;}
.x8_c00053{left:219.570000px;}
.x1_c00053{left:272.085000px;}
.x2_c00053{left:331.710000px;}
.x3_c00053{left:540.000000px;}
.xe_c00053{left:662.475000px;}
.x9_c00053{left:666.180000px;}
.xc_c00053{left:669.135000px;}
.xd_c00053{left:677.985000px;}
.xb_c00053{left:689.865000px;}
.xa_c00053{left:756.210000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls2_c00053{letter-spacing:0.000000pt;}
.ls0_c00053{letter-spacing:0.064000pt;}
.ls1_c00053{letter-spacing:0.192000pt;}
.ws0_c00053{word-spacing:-16.922880pt;}
.ws1_c00053{word-spacing:0.000000pt;}
._4_c00053{margin-left:-958.321024pt;}
._2_c00053{margin-left:-2.931200pt;}
._0_c00053{margin-left:-1.993216pt;}
._3_c00053{margin-left:-0.937984pt;}
._1_c00053{width:0.937984pt;}
.fs4_c00053{font-size:74.880000pt;}
.fs2_c00053{font-size:96.000000pt;}
.fs3_c00053{font-size:96.128000pt;}
.fs1_c00053{font-size:117.120000pt;}
.fs0_c00053{font-size:117.248000pt;}
.y0_c00053{bottom:0.000000pt;}
.yf_c00053{bottom:164.800000pt;}
.y9_c00053{bottom:271.840000pt;}
.y8_c00053{bottom:298.240000pt;}
.ye_c00053{bottom:303.200000pt;}
.y7_c00053{bottom:324.640000pt;}
.yd_c00053{bottom:329.626667pt;}
.y6_c00053{bottom:351.040000pt;}
.yc_c00053{bottom:355.866667pt;}
.y5_c00053{bottom:377.440000pt;}
.y4_c00053{bottom:403.706667pt;}
.yb_c00053{bottom:469.760000pt;}
.ya_c00053{bottom:496.026667pt;}
.y3_c00053{bottom:586.013333pt;}
.y2_c00053{bottom:621.213333pt;}
.y1_c00053{bottom:656.413333pt;}
.h8_c00053{height:74.477812pt;}
.h4_c00053{height:95.484375pt;}
.h5_c00053{height:95.611688pt;}
.h6_c00053{height:98.296875pt;}
.h7_c00053{height:98.427937pt;}
.h3_c00053{height:116.490937pt;}
.h2_c00053{height:119.922187pt;}
.h1_c00053{height:120.053250pt;}
.h0_c00053{height:720.000000pt;}
.w0_c00053{width:960.000000pt;}
.x0_c00053{left:0.000000pt;}
.x7_c00053{left:150.853333pt;}
.x4_c00053{left:171.493333pt;}
.x6_c00053{left:173.573333pt;}
.x5_c00053{left:177.093333pt;}
.x8_c00053{left:195.173333pt;}
.x1_c00053{left:241.853333pt;}
.x2_c00053{left:294.853333pt;}
.x3_c00053{left:480.000000pt;}
.xe_c00053{left:588.866667pt;}
.x9_c00053{left:592.160000pt;}
.xc_c00053{left:594.786667pt;}
.xd_c00053{left:602.653333pt;}
.xb_c00053{left:613.213333pt;}
.xa_c00053{left:672.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00ae6f7c802e45c49f31c27c.woff')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.202148;font-style:normal;font-weight:normal;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_b258beef4bfaf12a93b3c847.woff')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.202148;font-style:normal;font-weight:normal;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_3c02c142102bca3809d2074e.woff')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00054;src:url('chunks/assets/font_f6312810bdd7fb053f04fe11.woff')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:1.172852;font-style: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;}
.ls2_c00054{letter-spacing:0.108000px;}
.ls1_c00054{letter-spacing:0.144000px;}
.ls3_c00054{letter-spacing:0.252000px;}
.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:-25.742304px;}
.ws1_c00054{word-spacing:0.000000px;}
._6_c00054{margin-left:-9.504000px;}
._8_c00054{margin-left:-7.869888px;}
._5_c00054{margin-left:-6.810048px;}
._7_c00054{margin-left:-4.786992px;}
._2_c00054{margin-left:-3.297600px;}
._0_c00054{margin-left:-2.242368px;}
._3_c00054{margin-left:-1.055232px;}
._1_c00054{width:1.055232px;}
._4_c00054{width:2.273760px;}
.fc2_c00054{color:rgb(255,255,255);}
.fc1_c00054{color:rgb(0,0,0);}
.fc0_c00054{color:rgb(23,55,94);}
.fs6_c00054{font-size:108.000000px;}
.fs7_c00054{font-size:108.144000px;}
.fs2_c00054{font-size:113.760000px;}
.fs5_c00054{font-size:113.904000px;}
.fs3_c00054{font-size:120.240000px;}
.fs4_c00054{font-size:120.384000px;}
.fs1_c00054{font-size:131.760000px;}
.fs0_c00054{font-size:131.904000px;}
.y0_c00054{bottom:0.000000px;}
.y19_c00054{bottom:127.944000px;}
.y18_c00054{bottom:157.650000px;}
.y17_c00054{bottom:187.350000px;}
.yc_c00054{bottom:205.410000px;}
.y16_c00054{bottom:217.080000px;}
.yb_c00054{bottom:236.595000px;}
.y15_c00054{bottom:246.780000px;}
.ya_c00054{bottom:267.915000px;}
.y14_c00054{bottom:276.300000px;}
.y9_c00054{bottom:311.475000px;}
.y8_c00054{bottom:355.935000px;}
.y7_c00054{bottom:389.085000px;}
.y13_c00054{bottom:394.995000px;}
.y6_c00054{bottom:422.025000px;}
.y12_c00054{bottom:424.695000px;}
.y11_c00054{bottom:454.395000px;}
.y5_c00054{bottom:454.605000px;}
.y10_c00054{bottom:484.095000px;}
.y4_c00054{bottom:485.925000px;}
.yf_c00054{bottom:513.825000px;}
.ye_c00054{bottom:555.045000px;}
.yd_c00054{bottom:584.565000px;}
.y3_c00054{bottom:660.930000px;}
.y2_c00054{bottom:700.530000px;}
.y1_c00054{bottom:740.130000px;}
.ha_c00054{height:107.419922px;}
.hb_c00054{height:107.563148px;}
.h9_c00054{height:110.583984px;}
.h4_c00054{height:113.148984px;}
.h7_c00054{height:116.481797px;}
.h8_c00054{height:116.629242px;}
.h5_c00054{height:123.116836px;}
.h6_c00054{height:123.264281px;}
.h3_c00054{height:131.052305px;}
.h2_c00054{height:134.912461px;}
.h1_c00054{height:135.059906px;}
.h0_c00054{height:810.000000px;}
.w0_c00054{width:1080.000000px;}
.x0_c00054{left:0.000000px;}
.x4_c00054{left:64.728000px;}
.x6_c00054{left:76.248000px;}
.xa_c00054{left:78.228000px;}
.x7_c00054{left:94.788000px;}
.x5_c00054{left:95.868000px;}
.x9_c00054{left:107.208000px;}
.xb_c00054{left:225.645000px;}
.x8_c00054{left:292.290000px;}
.x1_c00054{left:298.830000px;}
.x2_c00054{left:358.410000px;}
.x3_c00054{left:566.715000px;}
.x11_c00054{left:597.495000px;}
.xe_c00054{left:599.475000px;}
.x14_c00054{left:603.255000px;}
.xc_c00054{left:610.275000px;}
.x15_c00054{left:611.715000px;}
.xd_c00054{left:617.655000px;}
.x13_c00054{left:622.515000px;}
.x10_c00054{left:631.515000px;}
.xf_c00054{left:637.815000px;}
.x12_c00054{left:647.715000px;}
.x16_c00054{left:670.035000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ls2_c00054{letter-spacing:0.096000pt;}
.ls1_c00054{letter-spacing:0.128000pt;}
.ls3_c00054{letter-spacing:0.224000pt;}
.ws0_c00054{word-spacing:-22.882048pt;}
.ws1_c00054{word-spacing:0.000000pt;}
._6_c00054{margin-left:-8.448000pt;}
._8_c00054{margin-left:-6.995456pt;}
._5_c00054{margin-left:-6.053376pt;}
._7_c00054{margin-left:-4.255104pt;}
._2_c00054{margin-left:-2.931200pt;}
._0_c00054{margin-left:-1.993216pt;}
._3_c00054{margin-left:-0.937984pt;}
._1_c00054{width:0.937984pt;}
._4_c00054{width:2.021120pt;}
.fs6_c00054{font-size:96.000000pt;}
.fs7_c00054{font-size:96.128000pt;}
.fs2_c00054{font-size:101.120000pt;}
.fs5_c00054{font-size:101.248000pt;}
.fs3_c00054{font-size:106.880000pt;}
.fs4_c00054{font-size:107.008000pt;}
.fs1_c00054{font-size:117.120000pt;}
.fs0_c00054{font-size:117.248000pt;}
.y0_c00054{bottom:0.000000pt;}
.y19_c00054{bottom:113.728000pt;}
.y18_c00054{bottom:140.133333pt;}
.y17_c00054{bottom:166.533333pt;}
.yc_c00054{bottom:182.586667pt;}
.y16_c00054{bottom:192.960000pt;}
.yb_c00054{bottom:210.306667pt;}
.y15_c00054{bottom:219.360000pt;}
.ya_c00054{bottom:238.146667pt;}
.y14_c00054{bottom:245.600000pt;}
.y9_c00054{bottom:276.866667pt;}
.y8_c00054{bottom:316.386667pt;}
.y7_c00054{bottom:345.853333pt;}
.y13_c00054{bottom:351.106667pt;}
.y6_c00054{bottom:375.133333pt;}
.y12_c00054{bottom:377.506667pt;}
.y11_c00054{bottom:403.906667pt;}
.y5_c00054{bottom:404.093333pt;}
.y10_c00054{bottom:430.306667pt;}
.y4_c00054{bottom:431.933333pt;}
.yf_c00054{bottom:456.733333pt;}
.ye_c00054{bottom:493.373333pt;}
.yd_c00054{bottom:519.613333pt;}
.y3_c00054{bottom:587.493333pt;}
.y2_c00054{bottom:622.693333pt;}
.y1_c00054{bottom:657.893333pt;}
.ha_c00054{height:95.484375pt;}
.hb_c00054{height:95.611688pt;}
.h9_c00054{height:98.296875pt;}
.h4_c00054{height:100.576875pt;}
.h7_c00054{height:103.539375pt;}
.h8_c00054{height:103.670437pt;}
.h5_c00054{height:109.437187pt;}
.h6_c00054{height:109.568250pt;}
.h3_c00054{height:116.490937pt;}
.h2_c00054{height:119.922187pt;}
.h1_c00054{height:120.053250pt;}
.h0_c00054{height:720.000000pt;}
.w0_c00054{width:960.000000pt;}
.x0_c00054{left:0.000000pt;}
.x4_c00054{left:57.536000pt;}
.x6_c00054{left:67.776000pt;}
.xa_c00054{left:69.536000pt;}
.x7_c00054{left:84.256000pt;}
.x5_c00054{left:85.216000pt;}
.x9_c00054{left:95.296000pt;}
.xb_c00054{left:200.573333pt;}
.x8_c00054{left:259.813333pt;}
.x1_c00054{left:265.626667pt;}
.x2_c00054{left:318.586667pt;}
.x3_c00054{left:503.746667pt;}
.x11_c00054{left:531.106667pt;}
.xe_c00054{left:532.866667pt;}
.x14_c00054{left:536.226667pt;}
.xc_c00054{left:542.466667pt;}
.x15_c00054{left:543.746667pt;}
.xd_c00054{left:549.026667pt;}
.x13_c00054{left:553.346667pt;}
.x10_c00054{left:561.346667pt;}
.xf_c00054{left:566.946667pt;}
.x12_c00054{left:575.746667pt;}
.x16_c00054{left:595.586667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57077d26c7e40ad990c0c8c1.woff')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.202148;font-style:normal;font-weight:normal;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_236ac7662054fb5e07bfb5d4.woff')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_d93f9813b53affb734235b57.woff')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.172852;font-style: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);}
.m1_c00055{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls1_c00055{letter-spacing:-0.094200px;}
.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;}
}
.ws1_c00055{word-spacing:-37.913760px;}
.ws0_c00055{word-spacing:-32.544000px;}
.ws2_c00055{word-spacing:0.000000px;}
._5_c00055{margin-left:-4.875264px;}
._2_c00055{margin-left:-3.297600px;}
._0_c00055{margin-left:-2.242368px;}
._3_c00055{margin-left:-1.055232px;}
._1_c00055{width:1.055232px;}
._4_c00055{width:2.557056px;}
._7_c00055{width:3.849144px;}
._6_c00055{width:5.698368px;}
.fc1_c00055{color:rgb(0,0,0);}
.fc2_c00055{color:rgb(0,0,255);}
.fc0_c00055{color:rgb(23,55,94);}
.fs4_c00055{font-size:108.000000px;}
.fs1_c00055{font-size:131.760000px;}
.fs0_c00055{font-size:131.904000px;}
.fs3_c00055{font-size:144.000000px;}
.fs6_c00055{font-size:144.144000px;}
.fs5_c00055{font-size:167.760000px;}
.fs2_c00055{font-size:167.904000px;}
.y0_c00055{bottom:0.000000px;}
.y9_c00055{bottom:321.375000px;}
.y8_c00055{bottom:381.855000px;}
.ya_c00055{bottom:427.755000px;}
.y7_c00055{bottom:438.375000px;}
.y6_c00055{bottom:479.625000px;}
.y5_c00055{bottom:522.825000px;}
.y4_c00055{bottom:576.285000px;}
.y3_c00055{bottom:659.265000px;}
.y2_c00055{bottom:698.865000px;}
.y1_c00055{bottom:738.465000px;}
.h6_c00055{height:107.419922px;}
.h3_c00055{height:131.052305px;}
.h2_c00055{height:134.912461px;}
.h1_c00055{height:135.059906px;}
.h5_c00055{height:143.226562px;}
.h9_c00055{height:143.369789px;}
.h7_c00055{height:166.858945px;}
.h8_c00055{height:167.002172px;}
.h4_c00055{height:171.921234px;}
.h0_c00055{height:810.000000px;}
.w0_c00055{width:1080.000000px;}
.x0_c00055{left:0.000000px;}
.x4_c00055{left:64.800000px;}
.x1_c00055{left:272.085000px;}
.x2_c00055{left:331.710000px;}
.x3_c00055{left:540.000000px;}
.x5_c00055{left:559.905000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls1_c00055{letter-spacing:-0.083733pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws1_c00055{word-spacing:-33.701120pt;}
.ws0_c00055{word-spacing:-28.928000pt;}
.ws2_c00055{word-spacing:0.000000pt;}
._5_c00055{margin-left:-4.333568pt;}
._2_c00055{margin-left:-2.931200pt;}
._0_c00055{margin-left:-1.993216pt;}
._3_c00055{margin-left:-0.937984pt;}
._1_c00055{width:0.937984pt;}
._4_c00055{width:2.272939pt;}
._7_c00055{width:3.421461pt;}
._6_c00055{width:5.065216pt;}
.fs4_c00055{font-size:96.000000pt;}
.fs1_c00055{font-size:117.120000pt;}
.fs0_c00055{font-size:117.248000pt;}
.fs3_c00055{font-size:128.000000pt;}
.fs6_c00055{font-size:128.128000pt;}
.fs5_c00055{font-size:149.120000pt;}
.fs2_c00055{font-size:149.248000pt;}
.y0_c00055{bottom:0.000000pt;}
.y9_c00055{bottom:285.666667pt;}
.y8_c00055{bottom:339.426667pt;}
.ya_c00055{bottom:380.226667pt;}
.y7_c00055{bottom:389.666667pt;}
.y6_c00055{bottom:426.333333pt;}
.y5_c00055{bottom:464.733333pt;}
.y4_c00055{bottom:512.253333pt;}
.y3_c00055{bottom:586.013333pt;}
.y2_c00055{bottom:621.213333pt;}
.y1_c00055{bottom:656.413333pt;}
.h6_c00055{height:95.484375pt;}
.h3_c00055{height:116.490937pt;}
.h2_c00055{height:119.922187pt;}
.h1_c00055{height:120.053250pt;}
.h5_c00055{height:127.312500pt;}
.h9_c00055{height:127.439813pt;}
.h7_c00055{height:148.319063pt;}
.h8_c00055{height:148.446375pt;}
.h4_c00055{height:152.818875pt;}
.h0_c00055{height:720.000000pt;}
.w0_c00055{width:960.000000pt;}
.x0_c00055{left:0.000000pt;}
.x4_c00055{left:57.600000pt;}
.x1_c00055{left:241.853333pt;}
.x2_c00055{left:294.853333pt;}
.x3_c00055{left:480.000000pt;}
.x5_c00055{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5a9a6f112ae700c413ae0dab.woff')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.202148;font-style:normal;font-weight:normal;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_8178fd21cc5d0f3d6dadbcfa.woff')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00056;src:url('chunks/assets/font_67e2c4cc9a3f023a2fe748f1.woff')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00056;src:url('chunks/assets/font_e819ded7005705e0433d6452.woff')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00056;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff5_c00056{font-family:ff5_c00056;line-height:0.739746;font-style: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);}
.m1_c00056{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls4_c00056{letter-spacing:-0.036000px;}
.ls3_c00056{letter-spacing:0.000000px;}
.ls1_c00056{letter-spacing:0.072000px;}
.ls0_c00056{letter-spacing:0.224640px;}
.ls2_c00056{letter-spacing:128.484000px;}
.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:-27.206784px;}
.ws1_c00056{word-spacing:-27.174240px;}
.ws2_c00056{word-spacing:-24.408000px;}
.ws3_c00056{word-spacing:-24.372000px;}
.ws4_c00056{word-spacing:-21.641760px;}
.ws5_c00056{word-spacing:0.000000px;}
._4_c00056{margin-left:-8.640000px;}
._6_c00056{margin-left:-6.757200px;}
._2_c00056{margin-left:-3.297600px;}
._0_c00056{margin-left:-2.242368px;}
._3_c00056{margin-left:-1.055232px;}
._1_c00056{width:1.055232px;}
._5_c00056{width:2.146608px;}
.fc3_c00056{color:rgb(255,255,255);}
.fc1_c00056{color:rgb(0,0,0);}
.fc2_c00056{color:rgb(0,0,255);}
.fc0_c00056{color:rgb(23,55,94);}
.fs6_c00056{font-size:54.000000px;}
.fs7_c00056{font-size:54.144000px;}
.fs8_c00056{font-size:72.000000px;}
.fs4_c00056{font-size:77.760000px;}
.fs9_c00056{font-size:95.760000px;}
.fsa_c00056{font-size:95.904000px;}
.fs5_c00056{font-size:108.000000px;}
.fs3_c00056{font-size:120.240000px;}
.fs2_c00056{font-size:120.384000px;}
.fs1_c00056{font-size:131.760000px;}
.fs0_c00056{font-size:131.904000px;}
.y0_c00056{bottom:0.000000px;}
.ye_c00056{bottom:140.508000px;}
.y22_c00056{bottom:161.490000px;}
.yd_c00056{bottom:170.205000px;}
.y21_c00056{bottom:184.530000px;}
.yc_c00056{bottom:199.905000px;}
.y20_c00056{bottom:207.570000px;}
.yb_c00056{bottom:229.425000px;}
.y1f_c00056{bottom:230.610000px;}
.y1e_c00056{bottom:253.650000px;}
.y1d_c00056{bottom:276.690000px;}
.y1c_c00056{bottom:299.775000px;}
.y1b_c00056{bottom:322.815000px;}
.y5_c00056{bottom:342.180000px;}
.y1a_c00056{bottom:345.855000px;}
.y19_c00056{bottom:368.895000px;}
.y4_c00056{bottom:375.300000px;}
.y18_c00056{bottom:397.695000px;}
.y17_c00056{bottom:426.495000px;}
.ya_c00056{bottom:431.355000px;}
.y16_c00056{bottom:449.565000px;}
.y9_c00056{bottom:461.055000px;}
.y15_c00056{bottom:472.605000px;}
.y8_c00056{bottom:490.755000px;}
.y14_c00056{bottom:495.645000px;}
.y13_c00056{bottom:518.685000px;}
.y7_c00056{bottom:531.975000px;}
.y12_c00056{bottom:541.725000px;}
.y11_c00056{bottom:569.085000px;}
.y6_c00056{bottom:573.045000px;}
.y10_c00056{bottom:589.605000px;}
.yf_c00056{bottom:605.850000px;}
.y3_c00056{bottom:659.265000px;}
.y2_c00056{bottom:698.865000px;}
.y1_c00056{bottom:738.465000px;}
.h8_c00056{height:53.709961px;}
.h9_c00056{height:53.853187px;}
.ha_c00056{height:71.613281px;}
.hb_c00056{height:95.245664px;}
.hc_c00056{height:95.388891px;}
.h6_c00056{height:107.419922px;}
.h7_c00056{height:110.583984px;}
.h5_c00056{height:119.594180px;}
.h4_c00056{height:119.737406px;}
.h3_c00056{height:131.052305px;}
.h2_c00056{height:134.912461px;}
.h1_c00056{height:135.059906px;}
.h0_c00056{height:810.000000px;}
.w0_c00056{width:1080.000000px;}
.x0_c00056{left:0.000000px;}
.x8_c00056{left:124.740000px;}
.x4_c00056{left:132.300000px;}
.x7_c00056{left:137.700000px;}
.x9_c00056{left:142.380000px;}
.x5_c00056{left:222.840000px;}
.xa_c00056{left:248.970000px;}
.x1_c00056{left:272.085000px;}
.x6_c00056{left:301.860000px;}
.x2_c00056{left:331.710000px;}
.x3_c00056{left:540.000000px;}
.xc_c00056{left:559.905000px;}
.xb_c00056{left:600.405000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls4_c00056{letter-spacing:-0.032000pt;}
.ls3_c00056{letter-spacing:0.000000pt;}
.ls1_c00056{letter-spacing:0.064000pt;}
.ls0_c00056{letter-spacing:0.199680pt;}
.ls2_c00056{letter-spacing:114.208000pt;}
.ws0_c00056{word-spacing:-24.183808pt;}
.ws1_c00056{word-spacing:-24.154880pt;}
.ws2_c00056{word-spacing:-21.696000pt;}
.ws3_c00056{word-spacing:-21.664000pt;}
.ws4_c00056{word-spacing:-19.237120pt;}
.ws5_c00056{word-spacing:0.000000pt;}
._4_c00056{margin-left:-7.680000pt;}
._6_c00056{margin-left:-6.006400pt;}
._2_c00056{margin-left:-2.931200pt;}
._0_c00056{margin-left:-1.993216pt;}
._3_c00056{margin-left:-0.937984pt;}
._1_c00056{width:0.937984pt;}
._5_c00056{width:1.908096pt;}
.fs6_c00056{font-size:48.000000pt;}
.fs7_c00056{font-size:48.128000pt;}
.fs8_c00056{font-size:64.000000pt;}
.fs4_c00056{font-size:69.120000pt;}
.fs9_c00056{font-size:85.120000pt;}
.fsa_c00056{font-size:85.248000pt;}
.fs5_c00056{font-size:96.000000pt;}
.fs3_c00056{font-size:106.880000pt;}
.fs2_c00056{font-size:107.008000pt;}
.fs1_c00056{font-size:117.120000pt;}
.fs0_c00056{font-size:117.248000pt;}
.y0_c00056{bottom:0.000000pt;}
.ye_c00056{bottom:124.896000pt;}
.y22_c00056{bottom:143.546667pt;}
.yd_c00056{bottom:151.293333pt;}
.y21_c00056{bottom:164.026667pt;}
.yc_c00056{bottom:177.693333pt;}
.y20_c00056{bottom:184.506667pt;}
.yb_c00056{bottom:203.933333pt;}
.y1f_c00056{bottom:204.986667pt;}
.y1e_c00056{bottom:225.466667pt;}
.y1d_c00056{bottom:245.946667pt;}
.y1c_c00056{bottom:266.466667pt;}
.y1b_c00056{bottom:286.946667pt;}
.y5_c00056{bottom:304.160000pt;}
.y1a_c00056{bottom:307.426667pt;}
.y19_c00056{bottom:327.906667pt;}
.y4_c00056{bottom:333.600000pt;}
.y18_c00056{bottom:353.506667pt;}
.y17_c00056{bottom:379.106667pt;}
.ya_c00056{bottom:383.426667pt;}
.y16_c00056{bottom:399.613333pt;}
.y9_c00056{bottom:409.826667pt;}
.y15_c00056{bottom:420.093333pt;}
.y8_c00056{bottom:436.226667pt;}
.y14_c00056{bottom:440.573333pt;}
.y13_c00056{bottom:461.053333pt;}
.y7_c00056{bottom:472.866667pt;}
.y12_c00056{bottom:481.533333pt;}
.y11_c00056{bottom:505.853333pt;}
.y6_c00056{bottom:509.373333pt;}
.y10_c00056{bottom:524.093333pt;}
.yf_c00056{bottom:538.533333pt;}
.y3_c00056{bottom:586.013333pt;}
.y2_c00056{bottom:621.213333pt;}
.y1_c00056{bottom:656.413333pt;}
.h8_c00056{height:47.742188pt;}
.h9_c00056{height:47.869500pt;}
.ha_c00056{height:63.656250pt;}
.hb_c00056{height:84.662813pt;}
.hc_c00056{height:84.790125pt;}
.h6_c00056{height:95.484375pt;}
.h7_c00056{height:98.296875pt;}
.h5_c00056{height:106.305937pt;}
.h4_c00056{height:106.433250pt;}
.h3_c00056{height:116.490937pt;}
.h2_c00056{height:119.922187pt;}
.h1_c00056{height:120.053250pt;}
.h0_c00056{height:720.000000pt;}
.w0_c00056{width:960.000000pt;}
.x0_c00056{left:0.000000pt;}
.x8_c00056{left:110.880000pt;}
.x4_c00056{left:117.600000pt;}
.x7_c00056{left:122.400000pt;}
.x9_c00056{left:126.560000pt;}
.x5_c00056{left:198.080000pt;}
.xa_c00056{left:221.306667pt;}
.x1_c00056{left:241.853333pt;}
.x6_c00056{left:268.320000pt;}
.x2_c00056{left:294.853333pt;}
.x3_c00056{left:480.000000pt;}
.xc_c00056{left:497.693333pt;}
.xb_c00056{left:533.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_068ee34815484e8e96d52523.woff')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00057;src:url('chunks/assets/font_7b3c4c9b4db84258b9e288f9.woff')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_405bb60fba27083ab0795621.woff')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00057;src:url('chunks/assets/font_200cc47216e42ba931493b67.woff')format("woff");}.ff4_c00057{font-family:ff4_c00057;line-height:1.172852;font-style: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);}
.m1_c00057{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls3_c00057{letter-spacing:-2.052000px;}
.ls2_c00057{letter-spacing:-0.229800px;}
.ls1_c00057{letter-spacing:0.000000px;}
.ls4_c00057{letter-spacing:0.104400px;}
.ls0_c00057{letter-spacing:0.401760px;}
.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;}
}
.ws4_c00057{word-spacing:-24.544944px;}
.ws1_c00057{word-spacing:-24.440544px;}
.ws2_c00057{word-spacing:-24.408000px;}
.ws3_c00057{word-spacing:-22.356000px;}
.ws0_c00057{word-spacing:-16.272000px;}
.ws5_c00057{word-spacing:0.000000px;}
._7_c00057{margin-left:-8.500032px;}
._5_c00057{margin-left:-7.160400px;}
._6_c00057{margin-left:-4.690944px;}
._2_c00057{margin-left:-3.297600px;}
._0_c00057{margin-left:-2.242368px;}
._3_c00057{margin-left:-1.055232px;}
._1_c00057{width:1.277280px;}
._4_c00057{width:2.684016px;}
.fc1_c00057{color:rgb(0,0,0);}
.fc2_c00057{color:rgb(0,0,255);}
.fc0_c00057{color:rgb(23,55,94);}
.fs4_c00057{font-size:72.000000px;}
.fs3_c00057{font-size:72.144000px;}
.fs5_c00057{font-size:77.760000px;}
.fs2_c00057{font-size:84.240000px;}
.fs6_c00057{font-size:108.000000px;}
.fs7_c00057{font-size:108.144000px;}
.fs0_c00057{font-size:131.760000px;}
.fs1_c00057{font-size:131.904000px;}
.y0_c00057{bottom:0.000000px;}
.y18_c00057{bottom:98.892000px;}
.y17_c00057{bottom:131.292000px;}
.y16_c00057{bottom:163.725000px;}
.yc_c00057{bottom:187.770000px;}
.y15_c00057{bottom:196.125000px;}
.y14_c00057{bottom:243.030000px;}
.yb_c00057{bottom:264.675000px;}
.y13_c00057{bottom:275.430000px;}
.ya_c00057{bottom:286.095000px;}
.y12_c00057{bottom:307.875000px;}
.y11_c00057{bottom:340.275000px;}
.y9_c00057{bottom:352.365000px;}
.y10_c00057{bottom:386.565000px;}
.yf_c00057{bottom:418.965000px;}
.y8_c00057{bottom:431.490000px;}
.y7_c00057{bottom:451.290000px;}
.ye_c00057{bottom:451.365000px;}
.y6_c00057{bottom:480.855000px;}
.yd_c00057{bottom:483.810000px;}
.y5_c00057{bottom:512.895000px;}
.y4_c00057{bottom:639.465000px;}
.y3_c00057{bottom:679.065000px;}
.y2_c00057{bottom:718.665000px;}
.y1_c00057{bottom:758.310000px;}
.h6_c00057{height:73.722656px;}
.h5_c00057{height:73.870102px;}
.h7_c00057{height:77.342344px;}
.h4_c00057{height:86.255508px;}
.h8_c00057{height:107.419922px;}
.h9_c00057{height:107.563148px;}
.h3_c00057{height:131.052305px;}
.h1_c00057{height:134.912461px;}
.h2_c00057{height:135.059906px;}
.h0_c00057{height:810.000000px;}
.w0_c00057{width:1080.000000px;}
.x0_c00057{left:0.000000px;}
.xc_c00057{left:91.548000px;}
.x2_c00057{left:272.085000px;}
.x3_c00057{left:331.710000px;}
.x1_c00057{left:540.000000px;}
.x9_c00057{left:723.990000px;}
.xa_c00057{left:731.010000px;}
.x6_c00057{left:733.890000px;}
.x5_c00057{left:737.670000px;}
.x8_c00057{left:745.770000px;}
.xb_c00057{left:749.595000px;}
.x4_c00057{left:751.350000px;}
.x7_c00057{left:804.270000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls3_c00057{letter-spacing:-1.824000pt;}
.ls2_c00057{letter-spacing:-0.204267pt;}
.ls1_c00057{letter-spacing:0.000000pt;}
.ls4_c00057{letter-spacing:0.092800pt;}
.ls0_c00057{letter-spacing:0.357120pt;}
.ws4_c00057{word-spacing:-21.817728pt;}
.ws1_c00057{word-spacing:-21.724928pt;}
.ws2_c00057{word-spacing:-21.696000pt;}
.ws3_c00057{word-spacing:-19.872000pt;}
.ws0_c00057{word-spacing:-14.464000pt;}
.ws5_c00057{word-spacing:0.000000pt;}
._7_c00057{margin-left:-7.555584pt;}
._5_c00057{margin-left:-6.364800pt;}
._6_c00057{margin-left:-4.169728pt;}
._2_c00057{margin-left:-2.931200pt;}
._0_c00057{margin-left:-1.993216pt;}
._3_c00057{margin-left:-0.937984pt;}
._1_c00057{width:1.135360pt;}
._4_c00057{width:2.385792pt;}
.fs4_c00057{font-size:64.000000pt;}
.fs3_c00057{font-size:64.128000pt;}
.fs5_c00057{font-size:69.120000pt;}
.fs2_c00057{font-size:74.880000pt;}
.fs6_c00057{font-size:96.000000pt;}
.fs7_c00057{font-size:96.128000pt;}
.fs0_c00057{font-size:117.120000pt;}
.fs1_c00057{font-size:117.248000pt;}
.y0_c00057{bottom:0.000000pt;}
.y18_c00057{bottom:87.904000pt;}
.y17_c00057{bottom:116.704000pt;}
.y16_c00057{bottom:145.533333pt;}
.yc_c00057{bottom:166.906667pt;}
.y15_c00057{bottom:174.333333pt;}
.y14_c00057{bottom:216.026667pt;}
.yb_c00057{bottom:235.266667pt;}
.y13_c00057{bottom:244.826667pt;}
.ya_c00057{bottom:254.306667pt;}
.y12_c00057{bottom:273.666667pt;}
.y11_c00057{bottom:302.466667pt;}
.y9_c00057{bottom:313.213333pt;}
.y10_c00057{bottom:343.613333pt;}
.yf_c00057{bottom:372.413333pt;}
.y8_c00057{bottom:383.546667pt;}
.y7_c00057{bottom:401.146667pt;}
.ye_c00057{bottom:401.213333pt;}
.y6_c00057{bottom:427.426667pt;}
.yd_c00057{bottom:430.053333pt;}
.y5_c00057{bottom:455.906667pt;}
.y4_c00057{bottom:568.413333pt;}
.y3_c00057{bottom:603.613333pt;}
.y2_c00057{bottom:638.813333pt;}
.y1_c00057{bottom:674.053333pt;}
.h6_c00057{height:65.531250pt;}
.h5_c00057{height:65.662312pt;}
.h7_c00057{height:68.748750pt;}
.h4_c00057{height:76.671562pt;}
.h8_c00057{height:95.484375pt;}
.h9_c00057{height:95.611688pt;}
.h3_c00057{height:116.490937pt;}
.h1_c00057{height:119.922187pt;}
.h2_c00057{height:120.053250pt;}
.h0_c00057{height:720.000000pt;}
.w0_c00057{width:960.000000pt;}
.x0_c00057{left:0.000000pt;}
.xc_c00057{left:81.376000pt;}
.x2_c00057{left:241.853333pt;}
.x3_c00057{left:294.853333pt;}
.x1_c00057{left:480.000000pt;}
.x9_c00057{left:643.546667pt;}
.xa_c00057{left:649.786667pt;}
.x6_c00057{left:652.346667pt;}
.x5_c00057{left:655.706667pt;}
.x8_c00057{left:662.906667pt;}
.xb_c00057{left:666.306667pt;}
.x4_c00057{left:667.866667pt;}
.x7_c00057{left:714.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f50f436bafe3fce3749b3a31.woff')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00058;src:url('chunks/assets/font_a7f981287c03069f7da5c620.woff')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00058;src:url('chunks/assets/font_ee3c4ec891e209e68dba7e9c.woff')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00058;src:url('chunks/assets/font_034b641d83f5ca834bdde34c.woff')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:1.172852;font-style: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;}
.ls3_c00058{letter-spacing:-0.864000px;}
.ls2_c00058{letter-spacing:-0.288000px;}
.ls1_c00058{letter-spacing:0.000000px;}
.ls0_c00058{letter-spacing:0.288000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00058{word-spacing:-32.544000px;}
.ws0_c00058{word-spacing:-32.256000px;}
.ws2_c00058{word-spacing:0.000000px;}
._6_c00058{margin-left:-10.382400px;}
._5_c00058{margin-left:-5.184000px;}
._2_c00058{margin-left:-3.297600px;}
._0_c00058{margin-left:-2.242368px;}
._3_c00058{margin-left:-1.055232px;}
._1_c00058{width:1.277280px;}
._4_c00058{width:2.684016px;}
.fc2_c00058{color:rgb(255,255,255);}
.fc1_c00058{color:rgb(0,0,0);}
.fc0_c00058{color:rgb(23,55,94);}
.fs0_c00058{font-size:131.760000px;}
.fs1_c00058{font-size:131.904000px;}
.fs2_c00058{font-size:144.000000px;}
.fs4_c00058{font-size:144.144000px;}
.fs3_c00058{font-size:347.904000px;}
.y0_c00058{bottom:0.000000px;}
.ye_c00058{bottom:142.452000px;}
.yd_c00058{bottom:182.085000px;}
.y7_c00058{bottom:189.180000px;}
.yc_c00058{bottom:263.265000px;}
.yb_c00058{bottom:302.865000px;}
.ya_c00058{bottom:384.090000px;}
.y9_c00058{bottom:423.690000px;}
.y6_c00058{bottom:459.900000px;}
.y5_c00058{bottom:514.800000px;}
.y8_c00058{bottom:524.700000px;}
.y4_c00058{bottom:639.465000px;}
.y3_c00058{bottom:679.065000px;}
.y2_c00058{bottom:718.665000px;}
.y1_c00058{bottom:758.310000px;}
.h3_c00058{height:131.052305px;}
.h1_c00058{height:134.912461px;}
.h2_c00058{height:135.059906px;}
.h4_c00058{height:143.226562px;}
.h7_c00058{height:143.369789px;}
.h6_c00058{height:147.445312px;}
.h5_c00058{height:356.227875px;}
.h0_c00058{height:810.000000px;}
.w0_c00058{width:1080.000000px;}
.x0_c00058{left:0.000000px;}
.x4_c00058{left:174.780000px;}
.x6_c00058{left:210.570000px;}
.x5_c00058{left:220.680000px;}
.x2_c00058{left:272.085000px;}
.x3_c00058{left:331.710000px;}
.x1_c00058{left:540.000000px;}
.x7_c00058{left:565.380000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls3_c00058{letter-spacing:-0.768000pt;}
.ls2_c00058{letter-spacing:-0.256000pt;}
.ls1_c00058{letter-spacing:0.000000pt;}
.ls0_c00058{letter-spacing:0.256000pt;}
.ws1_c00058{word-spacing:-28.928000pt;}
.ws0_c00058{word-spacing:-28.672000pt;}
.ws2_c00058{word-spacing:0.000000pt;}
._6_c00058{margin-left:-9.228800pt;}
._5_c00058{margin-left:-4.608000pt;}
._2_c00058{margin-left:-2.931200pt;}
._0_c00058{margin-left:-1.993216pt;}
._3_c00058{margin-left:-0.937984pt;}
._1_c00058{width:1.135360pt;}
._4_c00058{width:2.385792pt;}
.fs0_c00058{font-size:117.120000pt;}
.fs1_c00058{font-size:117.248000pt;}
.fs2_c00058{font-size:128.000000pt;}
.fs4_c00058{font-size:128.128000pt;}
.fs3_c00058{font-size:309.248000pt;}
.y0_c00058{bottom:0.000000pt;}
.ye_c00058{bottom:126.624000pt;}
.yd_c00058{bottom:161.853333pt;}
.y7_c00058{bottom:168.160000pt;}
.yc_c00058{bottom:234.013333pt;}
.yb_c00058{bottom:269.213333pt;}
.ya_c00058{bottom:341.413333pt;}
.y9_c00058{bottom:376.613333pt;}
.y6_c00058{bottom:408.800000pt;}
.y5_c00058{bottom:457.600000pt;}
.y8_c00058{bottom:466.400000pt;}
.y4_c00058{bottom:568.413333pt;}
.y3_c00058{bottom:603.613333pt;}
.y2_c00058{bottom:638.813333pt;}
.y1_c00058{bottom:674.053333pt;}
.h3_c00058{height:116.490937pt;}
.h1_c00058{height:119.922187pt;}
.h2_c00058{height:120.053250pt;}
.h4_c00058{height:127.312500pt;}
.h7_c00058{height:127.439813pt;}
.h6_c00058{height:131.062500pt;}
.h5_c00058{height:316.647000pt;}
.h0_c00058{height:720.000000pt;}
.w0_c00058{width:960.000000pt;}
.x0_c00058{left:0.000000pt;}
.x4_c00058{left:155.360000pt;}
.x6_c00058{left:187.173333pt;}
.x5_c00058{left:196.160000pt;}
.x2_c00058{left:241.853333pt;}
.x3_c00058{left:294.853333pt;}
.x1_c00058{left:480.000000pt;}
.x7_c00058{left:502.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e97e10edaa79ea2191ca4bfc.woff')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.202148;font-style:normal;font-weight:normal;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_ca93e6f45389b8b30b78536e.woff')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00059;src:url('chunks/assets/font_736cf6c069db30ade6760f15.woff')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00059;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00059;src:url('chunks/assets/font_4c551a461f4a2445d6488ff2.woff')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:1.172852;font-style: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);}
.m1_c00059{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls6_c00059{letter-spacing:0.000000px;}
.ls4_c00059{letter-spacing:0.153216px;}
.ls7_c00059{letter-spacing:0.197400px;}
.ls2_c00059{letter-spacing:0.331776px;}
.ls5_c00059{letter-spacing:0.905760px;}
.ls0_c00059{letter-spacing:111.549600px;}
.ls3_c00059{letter-spacing:119.865600px;}
.ls1_c00059{letter-spacing:119.916000px;}
.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;}
}
.ws2_c00059{word-spacing:-27.404184px;}
.ws1_c00059{word-spacing:-27.206784px;}
.ws0_c00059{word-spacing:-27.174240px;}
.ws3_c00059{word-spacing:0.000000px;}
._4_c00059{margin-left:-8.716032px;}
._5_c00059{margin-left:-6.829632px;}
._6_c00059{margin-left:-4.569120px;}
._2_c00059{margin-left:-3.297600px;}
._0_c00059{margin-left:-2.242368px;}
._3_c00059{margin-left:-1.055232px;}
._1_c00059{width:1.055232px;}
.fc1_c00059{color:rgb(0,0,0);}
.fc2_c00059{color:rgb(0,0,255);}
.fc0_c00059{color:rgb(23,55,94);}
.fs4_c00059{font-size:120.240000px;}
.fs5_c00059{font-size:120.384000px;}
.fs1_c00059{font-size:131.760000px;}
.fs0_c00059{font-size:131.904000px;}
.fs3_c00059{font-size:144.000000px;}
.fs2_c00059{font-size:144.144000px;}
.y0_c00059{bottom:0.000000px;}
.y19_c00059{bottom:118.620000px;}
.y18_c00059{bottom:154.650000px;}
.y17_c00059{bottom:190.650000px;}
.y16_c00059{bottom:219.450000px;}
.y15_c00059{bottom:248.250000px;}
.y14_c00059{bottom:277.050000px;}
.y13_c00059{bottom:305.895000px;}
.y12_c00059{bottom:334.695000px;}
.y11_c00059{bottom:363.495000px;}
.y10_c00059{bottom:392.295000px;}
.yf_c00059{bottom:421.095000px;}
.y8_c00059{bottom:445.605000px;}
.ye_c00059{bottom:449.925000px;}
.y7_c00059{bottom:474.405000px;}
.yd_c00059{bottom:478.725000px;}
.yc_c00059{bottom:507.525000px;}
.y6_c00059{bottom:511.845000px;}
.yb_c00059{bottom:536.325000px;}
.y5_c00059{bottom:555.045000px;}
.ya_c00059{bottom:565.125000px;}
.y4_c00059{bottom:589.650000px;}
.y9_c00059{bottom:593.970000px;}
.y3_c00059{bottom:659.265000px;}
.y2_c00059{bottom:698.865000px;}
.y1_c00059{bottom:738.465000px;}
.h6_c00059{height:119.594180px;}
.h7_c00059{height:119.737406px;}
.h3_c00059{height:131.052305px;}
.h2_c00059{height:134.912461px;}
.h1_c00059{height:135.059906px;}
.h5_c00059{height:147.445312px;}
.h4_c00059{height:147.592758px;}
.h0_c00059{height:810.000000px;}
.w0_c00059{width:1080.000000px;}
.x0_c00059{left:0.000000px;}
.x4_c00059{left:64.800000px;}
.x5_c00059{left:105.300000px;}
.x1_c00059{left:272.085000px;}
.x2_c00059{left:331.710000px;}
.x3_c00059{left:540.000000px;}
.x6_c00059{left:559.905000px;}
.x7_c00059{left:600.405000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls6_c00059{letter-spacing:0.000000pt;}
.ls4_c00059{letter-spacing:0.136192pt;}
.ls7_c00059{letter-spacing:0.175467pt;}
.ls2_c00059{letter-spacing:0.294912pt;}
.ls5_c00059{letter-spacing:0.805120pt;}
.ls0_c00059{letter-spacing:99.155200pt;}
.ls3_c00059{letter-spacing:106.547200pt;}
.ls1_c00059{letter-spacing:106.592000pt;}
.ws2_c00059{word-spacing:-24.359275pt;}
.ws1_c00059{word-spacing:-24.183808pt;}
.ws0_c00059{word-spacing:-24.154880pt;}
.ws3_c00059{word-spacing:0.000000pt;}
._4_c00059{margin-left:-7.747584pt;}
._5_c00059{margin-left:-6.070784pt;}
._6_c00059{margin-left:-4.061440pt;}
._2_c00059{margin-left:-2.931200pt;}
._0_c00059{margin-left:-1.993216pt;}
._3_c00059{margin-left:-0.937984pt;}
._1_c00059{width:0.937984pt;}
.fs4_c00059{font-size:106.880000pt;}
.fs5_c00059{font-size:107.008000pt;}
.fs1_c00059{font-size:117.120000pt;}
.fs0_c00059{font-size:117.248000pt;}
.fs3_c00059{font-size:128.000000pt;}
.fs2_c00059{font-size:128.128000pt;}
.y0_c00059{bottom:0.000000pt;}
.y19_c00059{bottom:105.440000pt;}
.y18_c00059{bottom:137.466667pt;}
.y17_c00059{bottom:169.466667pt;}
.y16_c00059{bottom:195.066667pt;}
.y15_c00059{bottom:220.666667pt;}
.y14_c00059{bottom:246.266667pt;}
.y13_c00059{bottom:271.906667pt;}
.y12_c00059{bottom:297.506667pt;}
.y11_c00059{bottom:323.106667pt;}
.y10_c00059{bottom:348.706667pt;}
.yf_c00059{bottom:374.306667pt;}
.y8_c00059{bottom:396.093333pt;}
.ye_c00059{bottom:399.933333pt;}
.y7_c00059{bottom:421.693333pt;}
.yd_c00059{bottom:425.533333pt;}
.yc_c00059{bottom:451.133333pt;}
.y6_c00059{bottom:454.973333pt;}
.yb_c00059{bottom:476.733333pt;}
.y5_c00059{bottom:493.373333pt;}
.ya_c00059{bottom:502.333333pt;}
.y4_c00059{bottom:524.133333pt;}
.y9_c00059{bottom:527.973333pt;}
.y3_c00059{bottom:586.013333pt;}
.y2_c00059{bottom:621.213333pt;}
.y1_c00059{bottom:656.413333pt;}
.h6_c00059{height:106.305937pt;}
.h7_c00059{height:106.433250pt;}
.h3_c00059{height:116.490937pt;}
.h2_c00059{height:119.922187pt;}
.h1_c00059{height:120.053250pt;}
.h5_c00059{height:131.062500pt;}
.h4_c00059{height:131.193562pt;}
.h0_c00059{height:720.000000pt;}
.w0_c00059{width:960.000000pt;}
.x0_c00059{left:0.000000pt;}
.x4_c00059{left:57.600000pt;}
.x5_c00059{left:93.600000pt;}
.x1_c00059{left:241.853333pt;}
.x2_c00059{left:294.853333pt;}
.x3_c00059{left:480.000000pt;}
.x6_c00059{left:497.693333pt;}
.x7_c00059{left:533.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4517a0817d506faa600864a5.woff')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00060;src:url('chunks/assets/font_c999acc691cfd193f20aba23.woff')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00060;src:url('chunks/assets/font_a282b1ba9d7f20c7b63c2915.woff')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00060;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00060;src:url('chunks/assets/font_9be14808064c7043b2bd7d65.woff')format("woff");}.ff5_c00060{font-family:ff5_c00060;line-height:1.172852;font-style: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);}
.m1_c00060{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.lsa_c00060{letter-spacing:-0.348000px;}
.ls8_c00060{letter-spacing:-0.282000px;}
.ls9_c00060{letter-spacing:-0.229800px;}
.ls7_c00060{letter-spacing:0.000000px;}
.ls4_c00060{letter-spacing:0.216000px;}
.lsb_c00060{letter-spacing:0.276600px;}
.ls5_c00060{letter-spacing:0.288000px;}
.ls2_c00060{letter-spacing:0.401760px;}
.ls6_c00060{letter-spacing:1.008000px;}
.ls0_c00060{letter-spacing:128.433600px;}
.ls1_c00060{letter-spacing:132.516000px;}
.ls3_c00060{letter-spacing:136.800000px;}
.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:-19.038240px;}
.ws1_c00060{word-spacing:-18.690240px;}
.ws2_c00060{word-spacing:-16.272000px;}
.ws3_c00060{word-spacing:0.000000px;}
._6_c00060{margin-left:-6.817248px;}
._5_c00060{margin-left:-5.640768px;}
._2_c00060{margin-left:-3.297600px;}
._0_c00060{margin-left:-2.242368px;}
._3_c00060{margin-left:-1.055232px;}
._1_c00060{width:1.277280px;}
._4_c00060{width:2.684016px;}
.fc1_c00060{color:rgb(0,0,0);}
.fc2_c00060{color:rgb(0,0,255);}
.fc0_c00060{color:rgb(23,55,94);}
.fs2_c00060{font-size:41.760000px;}
.fs4_c00060{font-size:66.240000px;}
.fs7_c00060{font-size:72.000000px;}
.fs5_c00060{font-size:84.240000px;}
.fs6_c00060{font-size:84.384000px;}
.fs3_c00060{font-size:95.904000px;}
.fs0_c00060{font-size:131.760000px;}
.fs1_c00060{font-size:131.904000px;}
.y0_c00060{bottom:0.000000px;}
.y1e_c00060{bottom:70.020000px;}
.y36_c00060{bottom:72.540000px;}
.y1d_c00060{bottom:90.180000px;}
.y35_c00060{bottom:94.140000px;}
.y1c_c00060{bottom:110.340000px;}
.y34_c00060{bottom:115.740000px;}
.y1b_c00060{bottom:130.500000px;}
.y33_c00060{bottom:137.340000px;}
.y1a_c00060{bottom:155.730000px;}
.y32_c00060{bottom:158.970000px;}
.y31_c00060{bottom:180.570000px;}
.y19_c00060{bottom:180.930000px;}
.y18_c00060{bottom:201.090000px;}
.y30_c00060{bottom:202.170000px;}
.y17_c00060{bottom:221.250000px;}
.y2f_c00060{bottom:223.770000px;}
.y16_c00060{bottom:241.410000px;}
.y2e_c00060{bottom:245.370000px;}
.y15_c00060{bottom:261.570000px;}
.y2d_c00060{bottom:266.970000px;}
.y14_c00060{bottom:281.730000px;}
.y2c_c00060{bottom:288.570000px;}
.y13_c00060{bottom:301.935000px;}
.y2b_c00060{bottom:310.215000px;}
.y12_c00060{bottom:322.095000px;}
.y2a_c00060{bottom:336.135000px;}
.y11_c00060{bottom:342.255000px;}
.y29_c00060{bottom:357.735000px;}
.y10_c00060{bottom:362.415000px;}
.yf_c00060{bottom:382.575000px;}
.y28_c00060{bottom:383.655000px;}
.ye_c00060{bottom:402.735000px;}
.y27_c00060{bottom:409.575000px;}
.yd_c00060{bottom:422.895000px;}
.y26_c00060{bottom:431.175000px;}
.yc_c00060{bottom:448.125000px;}
.y25_c00060{bottom:452.805000px;}
.yb_c00060{bottom:473.325000px;}
.y24_c00060{bottom:474.405000px;}
.y23_c00060{bottom:496.005000px;}
.ya_c00060{bottom:498.525000px;}
.y22_c00060{bottom:517.605000px;}
.y9_c00060{bottom:518.685000px;}
.y21_c00060{bottom:543.525000px;}
.y8_c00060{bottom:543.885000px;}
.y20_c00060{bottom:565.125000px;}
.y7_c00060{bottom:566.565000px;}
.y6_c00060{bottom:582.405000px;}
.y1f_c00060{bottom:586.725000px;}
.y5_c00060{bottom:608.010000px;}
.y4_c00060{bottom:639.465000px;}
.y3_c00060{bottom:679.065000px;}
.y2_c00060{bottom:718.665000px;}
.y1_c00060{bottom:758.310000px;}
.h4_c00060{height:41.535703px;}
.ha_c00060{height:71.613281px;}
.h9_c00060{height:73.722656px;}
.h7_c00060{height:83.787539px;}
.h8_c00060{height:83.930766px;}
.h6_c00060{height:86.255508px;}
.h5_c00060{height:98.198578px;}
.h3_c00060{height:131.052305px;}
.h1_c00060{height:134.912461px;}
.h2_c00060{height:135.059906px;}
.h0_c00060{height:810.000000px;}
.w0_c00060{width:1080.000000px;}
.x0_c00060{left:0.000000px;}
.x5_c00060{left:64.800000px;}
.x4_c00060{left:105.300000px;}
.x2_c00060{left:272.085000px;}
.x3_c00060{left:331.710000px;}
.x1_c00060{left:540.000000px;}
.x6_c00060{left:559.410000px;}
.x7_c00060{left:599.910000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.lsa_c00060{letter-spacing:-0.309333pt;}
.ls8_c00060{letter-spacing:-0.250667pt;}
.ls9_c00060{letter-spacing:-0.204267pt;}
.ls7_c00060{letter-spacing:0.000000pt;}
.ls4_c00060{letter-spacing:0.192000pt;}
.lsb_c00060{letter-spacing:0.245867pt;}
.ls5_c00060{letter-spacing:0.256000pt;}
.ls2_c00060{letter-spacing:0.357120pt;}
.ls6_c00060{letter-spacing:0.896000pt;}
.ls0_c00060{letter-spacing:114.163200pt;}
.ls1_c00060{letter-spacing:117.792000pt;}
.ls3_c00060{letter-spacing:121.600000pt;}
.ws0_c00060{word-spacing:-16.922880pt;}
.ws1_c00060{word-spacing:-16.613547pt;}
.ws2_c00060{word-spacing:-14.464000pt;}
.ws3_c00060{word-spacing:0.000000pt;}
._6_c00060{margin-left:-6.059776pt;}
._5_c00060{margin-left:-5.014016pt;}
._2_c00060{margin-left:-2.931200pt;}
._0_c00060{margin-left:-1.993216pt;}
._3_c00060{margin-left:-0.937984pt;}
._1_c00060{width:1.135360pt;}
._4_c00060{width:2.385792pt;}
.fs2_c00060{font-size:37.120000pt;}
.fs4_c00060{font-size:58.880000pt;}
.fs7_c00060{font-size:64.000000pt;}
.fs5_c00060{font-size:74.880000pt;}
.fs6_c00060{font-size:75.008000pt;}
.fs3_c00060{font-size:85.248000pt;}
.fs0_c00060{font-size:117.120000pt;}
.fs1_c00060{font-size:117.248000pt;}
.y0_c00060{bottom:0.000000pt;}
.y1e_c00060{bottom:62.240000pt;}
.y36_c00060{bottom:64.480000pt;}
.y1d_c00060{bottom:80.160000pt;}
.y35_c00060{bottom:83.680000pt;}
.y1c_c00060{bottom:98.080000pt;}
.y34_c00060{bottom:102.880000pt;}
.y1b_c00060{bottom:116.000000pt;}
.y33_c00060{bottom:122.080000pt;}
.y1a_c00060{bottom:138.426667pt;}
.y32_c00060{bottom:141.306667pt;}
.y31_c00060{bottom:160.506667pt;}
.y19_c00060{bottom:160.826667pt;}
.y18_c00060{bottom:178.746667pt;}
.y30_c00060{bottom:179.706667pt;}
.y17_c00060{bottom:196.666667pt;}
.y2f_c00060{bottom:198.906667pt;}
.y16_c00060{bottom:214.586667pt;}
.y2e_c00060{bottom:218.106667pt;}
.y15_c00060{bottom:232.506667pt;}
.y2d_c00060{bottom:237.306667pt;}
.y14_c00060{bottom:250.426667pt;}
.y2c_c00060{bottom:256.506667pt;}
.y13_c00060{bottom:268.386667pt;}
.y2b_c00060{bottom:275.746667pt;}
.y12_c00060{bottom:286.306667pt;}
.y2a_c00060{bottom:298.786667pt;}
.y11_c00060{bottom:304.226667pt;}
.y29_c00060{bottom:317.986667pt;}
.y10_c00060{bottom:322.146667pt;}
.yf_c00060{bottom:340.066667pt;}
.y28_c00060{bottom:341.026667pt;}
.ye_c00060{bottom:357.986667pt;}
.y27_c00060{bottom:364.066667pt;}
.yd_c00060{bottom:375.906667pt;}
.y26_c00060{bottom:383.266667pt;}
.yc_c00060{bottom:398.333333pt;}
.y25_c00060{bottom:402.493333pt;}
.yb_c00060{bottom:420.733333pt;}
.y24_c00060{bottom:421.693333pt;}
.y23_c00060{bottom:440.893333pt;}
.ya_c00060{bottom:443.133333pt;}
.y22_c00060{bottom:460.093333pt;}
.y9_c00060{bottom:461.053333pt;}
.y21_c00060{bottom:483.133333pt;}
.y8_c00060{bottom:483.453333pt;}
.y20_c00060{bottom:502.333333pt;}
.y7_c00060{bottom:503.613333pt;}
.y6_c00060{bottom:517.693333pt;}
.y1f_c00060{bottom:521.533333pt;}
.y5_c00060{bottom:540.453333pt;}
.y4_c00060{bottom:568.413333pt;}
.y3_c00060{bottom:603.613333pt;}
.y2_c00060{bottom:638.813333pt;}
.y1_c00060{bottom:674.053333pt;}
.h4_c00060{height:36.920625pt;}
.ha_c00060{height:63.656250pt;}
.h9_c00060{height:65.531250pt;}
.h7_c00060{height:74.477812pt;}
.h8_c00060{height:74.605125pt;}
.h6_c00060{height:76.671562pt;}
.h5_c00060{height:87.287625pt;}
.h3_c00060{height:116.490937pt;}
.h1_c00060{height:119.922187pt;}
.h2_c00060{height:120.053250pt;}
.h0_c00060{height:720.000000pt;}
.w0_c00060{width:960.000000pt;}
.x0_c00060{left:0.000000pt;}
.x5_c00060{left:57.600000pt;}
.x4_c00060{left:93.600000pt;}
.x2_c00060{left:241.853333pt;}
.x3_c00060{left:294.853333pt;}
.x1_c00060{left:480.000000pt;}
.x6_c00060{left:497.253333pt;}
.x7_c00060{left:533.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5e5362b3becdd37976825535.woff')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.172852;font-style:normal;font-weight:normal;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_31a7576b2af873da66d61ff1.woff')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00061;src:url('chunks/assets/font_8906bbb629938b8cbcbc0c45.woff')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00061;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00061;src:url('chunks/assets/font_b451b744f7ed107d144b6d25.woff')format("woff");}.ff5_c00061{font-family:ff5_c00061;line-height:1.172852;font-style: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);}
.m1_c00061{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls17_c00061{letter-spacing:-0.360000px;}
.ls12_c00061{letter-spacing:-0.310200px;}
.ls13_c00061{letter-spacing:-0.226200px;}
.ls15_c00061{letter-spacing:-0.144000px;}
.lsf_c00061{letter-spacing:0.000000px;}
.ls11_c00061{letter-spacing:0.072000px;}
.ls6_c00061{letter-spacing:0.072288px;}
.ls8_c00061{letter-spacing:0.106848px;}
.lsc_c00061{letter-spacing:0.132480px;}
.ls2_c00061{letter-spacing:0.144000px;}
.lsd_c00061{letter-spacing:0.149760px;}
.ls14_c00061{letter-spacing:0.179400px;}
.lse_c00061{letter-spacing:0.216000px;}
.ls16_c00061{letter-spacing:0.238800px;}
.ls7_c00061{letter-spacing:0.255456px;}
.ls3_c00061{letter-spacing:0.288000px;}
.ls9_c00061{letter-spacing:0.678240px;}
.ls10_c00061{letter-spacing:0.900000px;}
.ls0_c00061{letter-spacing:122.133600px;}
.lsa_c00061{letter-spacing:124.149600px;}
.ls4_c00061{letter-spacing:128.484000px;}
.ls5_c00061{letter-spacing:136.749600px;}
.ls1_c00061{letter-spacing:136.800000px;}
.lsb_c00061{letter-spacing:138.816000px;}
.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:-25.742304px;}
.ws2_c00061{word-spacing:-21.641760px;}
.ws3_c00061{word-spacing:-21.331560px;}
.ws1_c00061{word-spacing:-16.344000px;}
.ws6_c00061{word-spacing:-16.272000px;}
.ws7_c00061{word-spacing:-15.912000px;}
.ws4_c00061{word-spacing:-15.209040px;}
.ws5_c00061{word-spacing:-14.970240px;}
.ws8_c00061{word-spacing:0.000000px;}
._5_c00061{margin-left:-6.408000px;}
._2_c00061{margin-left:-3.297600px;}
._0_c00061{margin-left:-2.242368px;}
._3_c00061{margin-left:-1.055232px;}
._1_c00061{width:1.277280px;}
._4_c00061{width:2.684016px;}
.fc1_c00061{color:rgb(0,0,255);}
.fc0_c00061{color:rgb(0,0,0);}
.fs8_c00061{font-size:41.760000px;}
.fs3_c00061{font-size:59.760000px;}
.fs7_c00061{font-size:66.240000px;}
.fsb_c00061{font-size:66.384000px;}
.fs4_c00061{font-size:72.000000px;}
.fs6_c00061{font-size:72.144000px;}
.fs5_c00061{font-size:95.760000px;}
.fsa_c00061{font-size:108.000000px;}
.fs9_c00061{font-size:108.144000px;}
.fs2_c00061{font-size:113.904000px;}
.fs0_c00061{font-size:131.760000px;}
.fs1_c00061{font-size:131.904000px;}
.y0_c00061{bottom:0.000000px;}
.y1d_c00061{bottom:67.500000px;}
.y1c_c00061{bottom:87.660000px;}
.y1b_c00061{bottom:109.260000px;}
.y1a_c00061{bottom:130.860000px;}
.y19_c00061{bottom:152.490000px;}
.y34_c00061{bottom:174.090000px;}
.y18_c00061{bottom:175.530000px;}
.y33_c00061{bottom:191.370000px;}
.y17_c00061{bottom:198.570000px;}
.y32_c00061{bottom:212.970000px;}
.y16_c00061{bottom:225.930000px;}
.y31_c00061{bottom:234.570000px;}
.y15_c00061{bottom:247.530000px;}
.y30_c00061{bottom:251.850000px;}
.y14_c00061{bottom:264.810000px;}
.y2f_c00061{bottom:271.650000px;}
.y2e_c00061{bottom:285.690000px;}
.y13_c00061{bottom:286.410000px;}
.y2d_c00061{bottom:305.535000px;}
.y12_c00061{bottom:308.055000px;}
.y2c_c00061{bottom:325.335000px;}
.y11_c00061{bottom:329.655000px;}
.y2b_c00061{bottom:345.135000px;}
.y10_c00061{bottom:351.255000px;}
.y2a_c00061{bottom:360.975000px;}
.yf_c00061{bottom:372.855000px;}
.y29_c00061{bottom:380.775000px;}
.ye_c00061{bottom:395.895000px;}
.y28_c00061{bottom:396.615000px;}
.y27_c00061{bottom:416.415000px;}
.yd_c00061{bottom:424.695000px;}
.y26_c00061{bottom:436.215000px;}
.yc_c00061{bottom:447.765000px;}
.y25_c00061{bottom:456.045000px;}
.yb_c00061{bottom:475.125000px;}
.y24_c00061{bottom:475.845000px;}
.y23_c00061{bottom:495.645000px;}
.ya_c00061{bottom:496.725000px;}
.y22_c00061{bottom:511.485000px;}
.y9_c00061{bottom:514.005000px;}
.y21_c00061{bottom:531.285000px;}
.y8_c00061{bottom:535.605000px;}
.y7_c00061{bottom:552.885000px;}
.y20_c00061{bottom:553.605000px;}
.y6_c00061{bottom:573.765000px;}
.y1f_c00061{bottom:579.525000px;}
.y5_c00061{bottom:595.050000px;}
.y1e_c00061{bottom:608.010000px;}
.y4_c00061{bottom:639.465000px;}
.y3_c00061{bottom:679.065000px;}
.y2_c00061{bottom:718.665000px;}
.y1_c00061{bottom:758.310000px;}
.h11_c00061{height:41.535703px;}
.hb_c00061{height:42.759141px;}
.h5_c00061{height:61.189805px;}
.he_c00061{height:65.884219px;}
.h10_c00061{height:66.027445px;}
.ha_c00061{height:67.824844px;}
.hf_c00061{height:67.972289px;}
.h9_c00061{height:71.613281px;}
.h6_c00061{height:73.722656px;}
.h8_c00061{height:73.870102px;}
.h7_c00061{height:98.051133px;}
.hd_c00061{height:110.583984px;}
.hc_c00061{height:110.731430px;}
.h4_c00061{height:116.629242px;}
.h1_c00061{height:131.052305px;}
.h3_c00061{height:134.912461px;}
.h2_c00061{height:135.059906px;}
.h0_c00061{height:810.000000px;}
.w0_c00061{width:1080.000000px;}
.x0_c00061{left:0.000000px;}
.x4_c00061{left:64.800000px;}
.x5_c00061{left:105.300000px;}
.x2_c00061{left:272.085000px;}
.x3_c00061{left:331.710000px;}
.x1_c00061{left:540.000000px;}
.x6_c00061{left:559.905000px;}
.x7_c00061{left:600.405000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls17_c00061{letter-spacing:-0.320000pt;}
.ls12_c00061{letter-spacing:-0.275733pt;}
.ls13_c00061{letter-spacing:-0.201067pt;}
.ls15_c00061{letter-spacing:-0.128000pt;}
.lsf_c00061{letter-spacing:0.000000pt;}
.ls11_c00061{letter-spacing:0.064000pt;}
.ls6_c00061{letter-spacing:0.064256pt;}
.ls8_c00061{letter-spacing:0.094976pt;}
.lsc_c00061{letter-spacing:0.117760pt;}
.ls2_c00061{letter-spacing:0.128000pt;}
.lsd_c00061{letter-spacing:0.133120pt;}
.ls14_c00061{letter-spacing:0.159467pt;}
.lse_c00061{letter-spacing:0.192000pt;}
.ls16_c00061{letter-spacing:0.212267pt;}
.ls7_c00061{letter-spacing:0.227072pt;}
.ls3_c00061{letter-spacing:0.256000pt;}
.ls9_c00061{letter-spacing:0.602880pt;}
.ls10_c00061{letter-spacing:0.800000pt;}
.ls0_c00061{letter-spacing:108.563200pt;}
.lsa_c00061{letter-spacing:110.355200pt;}
.ls4_c00061{letter-spacing:114.208000pt;}
.ls5_c00061{letter-spacing:121.555200pt;}
.ls1_c00061{letter-spacing:121.600000pt;}
.lsb_c00061{letter-spacing:123.392000pt;}
.ws0_c00061{word-spacing:-22.882048pt;}
.ws2_c00061{word-spacing:-19.237120pt;}
.ws3_c00061{word-spacing:-18.961387pt;}
.ws1_c00061{word-spacing:-14.528000pt;}
.ws6_c00061{word-spacing:-14.464000pt;}
.ws7_c00061{word-spacing:-14.144000pt;}
.ws4_c00061{word-spacing:-13.519147pt;}
.ws5_c00061{word-spacing:-13.306880pt;}
.ws8_c00061{word-spacing:0.000000pt;}
._5_c00061{margin-left:-5.696000pt;}
._2_c00061{margin-left:-2.931200pt;}
._0_c00061{margin-left:-1.993216pt;}
._3_c00061{margin-left:-0.937984pt;}
._1_c00061{width:1.135360pt;}
._4_c00061{width:2.385792pt;}
.fs8_c00061{font-size:37.120000pt;}
.fs3_c00061{font-size:53.120000pt;}
.fs7_c00061{font-size:58.880000pt;}
.fsb_c00061{font-size:59.008000pt;}
.fs4_c00061{font-size:64.000000pt;}
.fs6_c00061{font-size:64.128000pt;}
.fs5_c00061{font-size:85.120000pt;}
.fsa_c00061{font-size:96.000000pt;}
.fs9_c00061{font-size:96.128000pt;}
.fs2_c00061{font-size:101.248000pt;}
.fs0_c00061{font-size:117.120000pt;}
.fs1_c00061{font-size:117.248000pt;}
.y0_c00061{bottom:0.000000pt;}
.y1d_c00061{bottom:60.000000pt;}
.y1c_c00061{bottom:77.920000pt;}
.y1b_c00061{bottom:97.120000pt;}
.y1a_c00061{bottom:116.320000pt;}
.y19_c00061{bottom:135.546667pt;}
.y34_c00061{bottom:154.746667pt;}
.y18_c00061{bottom:156.026667pt;}
.y33_c00061{bottom:170.106667pt;}
.y17_c00061{bottom:176.506667pt;}
.y32_c00061{bottom:189.306667pt;}
.y16_c00061{bottom:200.826667pt;}
.y31_c00061{bottom:208.506667pt;}
.y15_c00061{bottom:220.026667pt;}
.y30_c00061{bottom:223.866667pt;}
.y14_c00061{bottom:235.386667pt;}
.y2f_c00061{bottom:241.466667pt;}
.y2e_c00061{bottom:253.946667pt;}
.y13_c00061{bottom:254.586667pt;}
.y2d_c00061{bottom:271.586667pt;}
.y12_c00061{bottom:273.826667pt;}
.y2c_c00061{bottom:289.186667pt;}
.y11_c00061{bottom:293.026667pt;}
.y2b_c00061{bottom:306.786667pt;}
.y10_c00061{bottom:312.226667pt;}
.y2a_c00061{bottom:320.866667pt;}
.yf_c00061{bottom:331.426667pt;}
.y29_c00061{bottom:338.466667pt;}
.ye_c00061{bottom:351.906667pt;}
.y28_c00061{bottom:352.546667pt;}
.y27_c00061{bottom:370.146667pt;}
.yd_c00061{bottom:377.506667pt;}
.y26_c00061{bottom:387.746667pt;}
.yc_c00061{bottom:398.013333pt;}
.y25_c00061{bottom:405.373333pt;}
.yb_c00061{bottom:422.333333pt;}
.y24_c00061{bottom:422.973333pt;}
.y23_c00061{bottom:440.573333pt;}
.ya_c00061{bottom:441.533333pt;}
.y22_c00061{bottom:454.653333pt;}
.y9_c00061{bottom:456.893333pt;}
.y21_c00061{bottom:472.253333pt;}
.y8_c00061{bottom:476.093333pt;}
.y7_c00061{bottom:491.453333pt;}
.y20_c00061{bottom:492.093333pt;}
.y6_c00061{bottom:510.013333pt;}
.y1f_c00061{bottom:515.133333pt;}
.y5_c00061{bottom:528.933333pt;}
.y1e_c00061{bottom:540.453333pt;}
.y4_c00061{bottom:568.413333pt;}
.y3_c00061{bottom:603.613333pt;}
.y2_c00061{bottom:638.813333pt;}
.y1_c00061{bottom:674.053333pt;}
.h11_c00061{height:36.920625pt;}
.hb_c00061{height:38.008125pt;}
.h5_c00061{height:54.390938pt;}
.he_c00061{height:58.563750pt;}
.h10_c00061{height:58.691063pt;}
.ha_c00061{height:60.288750pt;}
.hf_c00061{height:60.419812pt;}
.h9_c00061{height:63.656250pt;}
.h6_c00061{height:65.531250pt;}
.h8_c00061{height:65.662312pt;}
.h7_c00061{height:87.156562pt;}
.hd_c00061{height:98.296875pt;}
.hc_c00061{height:98.427937pt;}
.h4_c00061{height:103.670437pt;}
.h1_c00061{height:116.490937pt;}
.h3_c00061{height:119.922187pt;}
.h2_c00061{height:120.053250pt;}
.h0_c00061{height:720.000000pt;}
.w0_c00061{width:960.000000pt;}
.x0_c00061{left:0.000000pt;}
.x4_c00061{left:57.600000pt;}
.x5_c00061{left:93.600000pt;}
.x2_c00061{left:241.853333pt;}
.x3_c00061{left:294.853333pt;}
.x1_c00061{left:480.000000pt;}
.x6_c00061{left:497.693333pt;}
.x7_c00061{left:533.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e291a5b2712ef307fd736103.woff')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00062;src:url('chunks/assets/font_ee9ff066b5a18e65127a1da9.woff')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00062;src:url('chunks/assets/font_ccd9521961766ac7acbf5149.woff')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00062;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00062;src:url('chunks/assets/font_e43d27abdaf0e5162f387eee.woff')format("woff");}.ff5_c00062{font-family:ff5_c00062;line-height:1.172852;font-style: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);}
.m1_c00062{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls4_c00062{letter-spacing:-0.310200px;}
.ls3_c00062{letter-spacing:0.000000px;}
.ls5_c00062{letter-spacing:0.211200px;}
.ls6_c00062{letter-spacing:0.348600px;}
.ls0_c00062{letter-spacing:119.865600px;}
.ls1_c00062{letter-spacing:124.200000px;}
.ls2_c00062{letter-spacing:128.484000px;}
.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:-27.206784px;}
.ws1_c00062{word-spacing:-24.408000px;}
.ws2_c00062{word-spacing:0.000000px;}
._6_c00062{margin-left:-10.714176px;}
._5_c00062{margin-left:-7.191024px;}
._7_c00062{margin-left:-5.747184px;}
._2_c00062{margin-left:-4.216320px;}
._0_c00062{margin-left:-2.239920px;}
._4_c00062{margin-left:-1.051056px;}
._1_c00062{width:1.046160px;}
._3_c00062{width:2.315760px;}
.fc2_c00062{color:rgb(55,96,146);}
.fc1_c00062{color:rgb(0,0,0);}
.fc3_c00062{color:rgb(0,0,255);}
.fc0_c00062{color:rgb(23,55,94);}
.fs4_c00062{font-size:95.760000px;}
.fs5_c00062{font-size:95.904000px;}
.fs3_c00062{font-size:108.000000px;}
.fs6_c00062{font-size:108.144000px;}
.fs7_c00062{font-size:120.240000px;}
.fs2_c00062{font-size:120.384000px;}
.fs0_c00062{font-size:131.760000px;}
.fs1_c00062{font-size:131.904000px;}
.fs9_c00062{font-size:167.760000px;}
.fs8_c00062{font-size:167.904000px;}
.y0_c00062{bottom:0.000000px;}
.y15_c00062{bottom:47.340000px;}
.y14_c00062{bottom:89.820000px;}
.y13_c00062{bottom:128.700000px;}
.y12_c00062{bottom:166.710000px;}
.y11_c00062{bottom:195.510000px;}
.y10_c00062{bottom:230.070000px;}
.yf_c00062{bottom:264.630000px;}
.ye_c00062{bottom:293.430000px;}
.yd_c00062{bottom:322.275000px;}
.yc_c00062{bottom:351.075000px;}
.yb_c00062{bottom:379.875000px;}
.ya_c00062{bottom:408.675000px;}
.y9_c00062{bottom:443.235000px;}
.y18_c00062{bottom:455.325000px;}
.y8_c00062{bottom:477.825000px;}
.y7_c00062{bottom:512.385000px;}
.y17_c00062{bottom:515.805000px;}
.y6_c00062{bottom:547.845000px;}
.y16_c00062{bottom:576.285000px;}
.y5_c00062{bottom:587.445000px;}
.y4_c00062{bottom:652.500000px;}
.y3_c00062{bottom:692.100000px;}
.y2_c00062{bottom:731.730000px;}
.y1_c00062{bottom:771.330000px;}
.h6_c00062{height:95.245664px;}
.h7_c00062{height:95.388891px;}
.h9_c00062{height:107.419922px;}
.h5_c00062{height:110.583984px;}
.h8_c00062{height:110.731430px;}
.ha_c00062{height:119.594180px;}
.h4_c00062{height:123.264281px;}
.h3_c00062{height:131.052305px;}
.h1_c00062{height:134.912461px;}
.h2_c00062{height:135.059906px;}
.hc_c00062{height:166.858945px;}
.hb_c00062{height:167.002172px;}
.h0_c00062{height:810.000000px;}
.w0_c00062{width:1080.000000px;}
.x0_c00062{left:0.000000px;}
.x4_c00062{left:64.800000px;}
.x5_c00062{left:105.300000px;}
.x2_c00062{left:272.085000px;}
.x3_c00062{left:331.710000px;}
.x1_c00062{left:540.000000px;}
.x6_c00062{left:559.905000px;}
.x7_c00062{left:600.405000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls4_c00062{letter-spacing:-0.275733pt;}
.ls3_c00062{letter-spacing:0.000000pt;}
.ls5_c00062{letter-spacing:0.187733pt;}
.ls6_c00062{letter-spacing:0.309867pt;}
.ls0_c00062{letter-spacing:106.547200pt;}
.ls1_c00062{letter-spacing:110.400000pt;}
.ls2_c00062{letter-spacing:114.208000pt;}
.ws0_c00062{word-spacing:-24.183808pt;}
.ws1_c00062{word-spacing:-21.696000pt;}
.ws2_c00062{word-spacing:0.000000pt;}
._6_c00062{margin-left:-9.523712pt;}
._5_c00062{margin-left:-6.392021pt;}
._7_c00062{margin-left:-5.108608pt;}
._2_c00062{margin-left:-3.747840pt;}
._0_c00062{margin-left:-1.991040pt;}
._4_c00062{margin-left:-0.934272pt;}
._1_c00062{width:0.929920pt;}
._3_c00062{width:2.058453pt;}
.fs4_c00062{font-size:85.120000pt;}
.fs5_c00062{font-size:85.248000pt;}
.fs3_c00062{font-size:96.000000pt;}
.fs6_c00062{font-size:96.128000pt;}
.fs7_c00062{font-size:106.880000pt;}
.fs2_c00062{font-size:107.008000pt;}
.fs0_c00062{font-size:117.120000pt;}
.fs1_c00062{font-size:117.248000pt;}
.fs9_c00062{font-size:149.120000pt;}
.fs8_c00062{font-size:149.248000pt;}
.y0_c00062{bottom:0.000000pt;}
.y15_c00062{bottom:42.080000pt;}
.y14_c00062{bottom:79.840000pt;}
.y13_c00062{bottom:114.400000pt;}
.y12_c00062{bottom:148.186667pt;}
.y11_c00062{bottom:173.786667pt;}
.y10_c00062{bottom:204.506667pt;}
.yf_c00062{bottom:235.226667pt;}
.ye_c00062{bottom:260.826667pt;}
.yd_c00062{bottom:286.466667pt;}
.yc_c00062{bottom:312.066667pt;}
.yb_c00062{bottom:337.666667pt;}
.ya_c00062{bottom:363.266667pt;}
.y9_c00062{bottom:393.986667pt;}
.y18_c00062{bottom:404.733333pt;}
.y8_c00062{bottom:424.733333pt;}
.y7_c00062{bottom:455.453333pt;}
.y17_c00062{bottom:458.493333pt;}
.y6_c00062{bottom:486.973333pt;}
.y16_c00062{bottom:512.253333pt;}
.y5_c00062{bottom:522.173333pt;}
.y4_c00062{bottom:580.000000pt;}
.y3_c00062{bottom:615.200000pt;}
.y2_c00062{bottom:650.426667pt;}
.y1_c00062{bottom:685.626667pt;}
.h6_c00062{height:84.662813pt;}
.h7_c00062{height:84.790125pt;}
.h9_c00062{height:95.484375pt;}
.h5_c00062{height:98.296875pt;}
.h8_c00062{height:98.427937pt;}
.ha_c00062{height:106.305937pt;}
.h4_c00062{height:109.568250pt;}
.h3_c00062{height:116.490937pt;}
.h1_c00062{height:119.922187pt;}
.h2_c00062{height:120.053250pt;}
.hc_c00062{height:148.319063pt;}
.hb_c00062{height:148.446375pt;}
.h0_c00062{height:720.000000pt;}
.w0_c00062{width:960.000000pt;}
.x0_c00062{left:0.000000pt;}
.x4_c00062{left:57.600000pt;}
.x5_c00062{left:93.600000pt;}
.x2_c00062{left:241.853333pt;}
.x3_c00062{left:294.853333pt;}
.x1_c00062{left:480.000000pt;}
.x6_c00062{left:497.693333pt;}
.x7_c00062{left:533.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc081cca135f4a72ae664cf2.woff')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00063;src:url('chunks/assets/font_205219ae4709567791440da8.woff')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00063;src:url('chunks/assets/font_74611020ce14d6be6a8054fc.woff')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00063;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00063;src:url('chunks/assets/font_7aa54a4c368bd5cd671f2644.woff')format("woff");}.ff5_c00063{font-family:ff5_c00063;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00063;src:url('chunks/assets/font_3a0e8194647f136629aa0ed7.woff')format("woff");}.ff6_c00063{font-family:ff6_c00063;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00063;src:url('chunks/assets/font_f6b93c98d77781d30b0fa3db.woff')format("woff");}.ff7_c00063{font-family:ff7_c00063;line-height:1.003418;font-style: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;}
.ls5_c00063{letter-spacing:-0.534000px;}
.ls3_c00063{letter-spacing:-0.030240px;}
.ls2_c00063{letter-spacing:0.000000px;}
.ls4_c00063{letter-spacing:0.154800px;}
.ls0_c00063{letter-spacing:107.265600px;}
.ls1_c00063{letter-spacing:107.316000px;}
.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:-35.310240px;}
.ws1_c00063{word-spacing:-27.329040px;}
.ws3_c00063{word-spacing:-27.206784px;}
.ws2_c00063{word-spacing:-27.174240px;}
.ws4_c00063{word-spacing:0.000000px;}
._2_c00063{margin-left:-3.297600px;}
._0_c00063{margin-left:-2.242368px;}
._3_c00063{margin-left:-1.055232px;}
._1_c00063{width:1.055232px;}
._4_c00063{width:2.242368px;}
.fc2_c00063{color:rgb(55,96,146);}
.fc1_c00063{color:rgb(0,0,0);}
.fc0_c00063{color:rgb(23,55,94);}
.fs4_c00063{font-size:120.240000px;}
.fs5_c00063{font-size:120.384000px;}
.fs1_c00063{font-size:131.760000px;}
.fs0_c00063{font-size:131.904000px;}
.fs3_c00063{font-size:156.240000px;}
.fs2_c00063{font-size:156.384000px;}
.y0_c00063{bottom:0.000000px;}
.y10_c00063{bottom:70.416000px;}
.yf_c00063{bottom:117.216000px;}
.ye_c00063{bottom:164.055000px;}
.yd_c00063{bottom:208.695000px;}
.yc_c00063{bottom:237.495000px;}
.yb_c00063{bottom:266.295000px;}
.ya_c00063{bottom:297.285000px;}
.y9_c00063{bottom:344.085000px;}
.y8_c00063{bottom:381.525000px;}
.y7_c00063{bottom:418.965000px;}
.y6_c00063{bottom:465.810000px;}
.y5_c00063{bottom:503.250000px;}
.y4_c00063{bottom:550.050000px;}
.y3_c00063{bottom:659.265000px;}
.y2_c00063{bottom:698.865000px;}
.y1_c00063{bottom:738.465000px;}
.h8_c00063{height:99.162773px;}
.h7_c00063{height:99.281531px;}
.h3_c00063{height:131.052305px;}
.h2_c00063{height:134.912461px;}
.h1_c00063{height:135.059906px;}
.h6_c00063{height:155.400820px;}
.h5_c00063{height:159.978164px;}
.h4_c00063{height:160.125609px;}
.h0_c00063{height:810.000000px;}
.w0_c00063{width:1080.000000px;}
.x0_c00063{left:0.000000px;}
.x1_c00063{left:272.085000px;}
.x2_c00063{left:331.710000px;}
.x3_c00063{left:540.000000px;}
.x4_c00063{left:584.925000px;}
.x5_c00063{left:625.425000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls5_c00063{letter-spacing:-0.474667pt;}
.ls3_c00063{letter-spacing:-0.026880pt;}
.ls2_c00063{letter-spacing:0.000000pt;}
.ls4_c00063{letter-spacing:0.137600pt;}
.ls0_c00063{letter-spacing:95.347200pt;}
.ls1_c00063{letter-spacing:95.392000pt;}
.ws0_c00063{word-spacing:-31.386880pt;}
.ws1_c00063{word-spacing:-24.292480pt;}
.ws3_c00063{word-spacing:-24.183808pt;}
.ws2_c00063{word-spacing:-24.154880pt;}
.ws4_c00063{word-spacing:0.000000pt;}
._2_c00063{margin-left:-2.931200pt;}
._0_c00063{margin-left:-1.993216pt;}
._3_c00063{margin-left:-0.937984pt;}
._1_c00063{width:0.937984pt;}
._4_c00063{width:1.993216pt;}
.fs4_c00063{font-size:106.880000pt;}
.fs5_c00063{font-size:107.008000pt;}
.fs1_c00063{font-size:117.120000pt;}
.fs0_c00063{font-size:117.248000pt;}
.fs3_c00063{font-size:138.880000pt;}
.fs2_c00063{font-size:139.008000pt;}
.y0_c00063{bottom:0.000000pt;}
.y10_c00063{bottom:62.592000pt;}
.yf_c00063{bottom:104.192000pt;}
.ye_c00063{bottom:145.826667pt;}
.yd_c00063{bottom:185.506667pt;}
.yc_c00063{bottom:211.106667pt;}
.yb_c00063{bottom:236.706667pt;}
.ya_c00063{bottom:264.253333pt;}
.y9_c00063{bottom:305.853333pt;}
.y8_c00063{bottom:339.133333pt;}
.y7_c00063{bottom:372.413333pt;}
.y6_c00063{bottom:414.053333pt;}
.y5_c00063{bottom:447.333333pt;}
.y4_c00063{bottom:488.933333pt;}
.y3_c00063{bottom:586.013333pt;}
.y2_c00063{bottom:621.213333pt;}
.y1_c00063{bottom:656.413333pt;}
.h8_c00063{height:88.144687pt;}
.h7_c00063{height:88.250250pt;}
.h3_c00063{height:116.490937pt;}
.h2_c00063{height:119.922187pt;}
.h1_c00063{height:120.053250pt;}
.h6_c00063{height:138.134062pt;}
.h5_c00063{height:142.202812pt;}
.h4_c00063{height:142.333875pt;}
.h0_c00063{height:720.000000pt;}
.w0_c00063{width:960.000000pt;}
.x0_c00063{left:0.000000pt;}
.x1_c00063{left:241.853333pt;}
.x2_c00063{left:294.853333pt;}
.x3_c00063{left:480.000000pt;}
.x4_c00063{left:519.933333pt;}
.x5_c00063{left:555.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5de929b654464d91e7aea66b.woff')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.202148;font-style:normal;font-weight:normal;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_b9422381d82fd07bcaf334e4.woff')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00064;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00064;src:url('chunks/assets/font_6d30520c5804700c729047d7.woff')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00064;src:url('chunks/assets/font_7632047e7492fd5320cbcc3f.woff')format("woff");}.ff5_c00064{font-family:ff5_c00064;line-height:1.172852;font-style: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);}
.m1_c00064{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls5_c00064{letter-spacing:-0.270000px;}
.ls4_c00064{letter-spacing:0.000000px;}
.ls6_c00064{letter-spacing:0.360000px;}
.ls2_c00064{letter-spacing:1.260000px;}
.ls0_c00064{letter-spacing:124.200000px;}
.ls3_c00064{letter-spacing:130.449600px;}
.ls1_c00064{letter-spacing:130.500000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00064{word-spacing:-20.340000px;}
.ws0_c00064{word-spacing:-20.070000px;}
.ws2_c00064{word-spacing:0.000000px;}
._6_c00064{margin-left:-8.834400px;}
._5_c00064{margin-left:-5.508000px;}
._2_c00064{margin-left:-3.297600px;}
._0_c00064{margin-left:-2.242368px;}
._3_c00064{margin-left:-1.055232px;}
._1_c00064{width:1.277280px;}
._4_c00064{width:2.684016px;}
.fc2_c00064{color:rgb(0,0,255);}
.fc1_c00064{color:rgb(55,96,146);}
.fc0_c00064{color:rgb(0,0,0);}
.fs3_c00064{font-size:90.000000px;}
.fs4_c00064{font-size:90.144000px;}
.fs2_c00064{font-size:108.000000px;}
.fs0_c00064{font-size:131.760000px;}
.fs1_c00064{font-size:131.904000px;}
.y0_c00064{bottom:0.000000px;}
.y1a_c00064{bottom:87.300000px;}
.y31_c00064{bottom:97.020000px;}
.y19_c00064{bottom:114.300000px;}
.y30_c00064{bottom:124.020000px;}
.y18_c00064{bottom:141.300000px;}
.y2f_c00064{bottom:145.620000px;}
.y17_c00064{bottom:162.930000px;}
.y2e_c00064{bottom:167.250000px;}
.y16_c00064{bottom:184.530000px;}
.y2d_c00064{bottom:188.850000px;}
.y15_c00064{bottom:206.130000px;}
.y2c_c00064{bottom:215.850000px;}
.y14_c00064{bottom:227.730000px;}
.y2b_c00064{bottom:237.450000px;}
.y13_c00064{bottom:254.730000px;}
.y2a_c00064{bottom:259.050000px;}
.y29_c00064{bottom:280.650000px;}
.y12_c00064{bottom:281.730000px;}
.y28_c00064{bottom:302.295000px;}
.y11_c00064{bottom:303.375000px;}
.y10_c00064{bottom:324.975000px;}
.y27_c00064{bottom:329.295000px;}
.yf_c00064{bottom:346.575000px;}
.y26_c00064{bottom:356.295000px;}
.ye_c00064{bottom:368.175000px;}
.y25_c00064{bottom:377.895000px;}
.yd_c00064{bottom:395.175000px;}
.y24_c00064{bottom:399.495000px;}
.y23_c00064{bottom:421.095000px;}
.yc_c00064{bottom:422.175000px;}
.y22_c00064{bottom:442.725000px;}
.yb_c00064{bottom:443.775000px;}
.y21_c00064{bottom:464.325000px;}
.ya_c00064{bottom:470.805000px;}
.y20_c00064{bottom:491.325000px;}
.y9_c00064{bottom:492.405000px;}
.y1f_c00064{bottom:512.925000px;}
.y8_c00064{bottom:514.005000px;}
.y1e_c00064{bottom:534.525000px;}
.y7_c00064{bottom:541.005000px;}
.y1d_c00064{bottom:556.125000px;}
.y6_c00064{bottom:568.005000px;}
.y1c_c00064{bottom:577.725000px;}
.y5_c00064{bottom:596.130000px;}
.y1b_c00064{bottom:599.370000px;}
.y4_c00064{bottom:639.465000px;}
.y3_c00064{bottom:679.065000px;}
.y2_c00064{bottom:718.665000px;}
.y1_c00064{bottom:758.310000px;}
.h4_c00064{height:89.516602px;}
.h5_c00064{height:89.659828px;}
.h3_c00064{height:110.583984px;}
.h1_c00064{height:134.912461px;}
.h2_c00064{height:135.059906px;}
.h0_c00064{height:810.000000px;}
.w0_c00064{width:1080.000000px;}
.x0_c00064{left:0.000000px;}
.x4_c00064{left:64.800000px;}
.x5_c00064{left:105.300000px;}
.x2_c00064{left:272.085000px;}
.x3_c00064{left:331.710000px;}
.x1_c00064{left:540.000000px;}
.x6_c00064{left:559.905000px;}
.x7_c00064{left:600.405000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls5_c00064{letter-spacing:-0.240000pt;}
.ls4_c00064{letter-spacing:0.000000pt;}
.ls6_c00064{letter-spacing:0.320000pt;}
.ls2_c00064{letter-spacing:1.120000pt;}
.ls0_c00064{letter-spacing:110.400000pt;}
.ls3_c00064{letter-spacing:115.955200pt;}
.ls1_c00064{letter-spacing:116.000000pt;}
.ws1_c00064{word-spacing:-18.080000pt;}
.ws0_c00064{word-spacing:-17.840000pt;}
.ws2_c00064{word-spacing:0.000000pt;}
._6_c00064{margin-left:-7.852800pt;}
._5_c00064{margin-left:-4.896000pt;}
._2_c00064{margin-left:-2.931200pt;}
._0_c00064{margin-left:-1.993216pt;}
._3_c00064{margin-left:-0.937984pt;}
._1_c00064{width:1.135360pt;}
._4_c00064{width:2.385792pt;}
.fs3_c00064{font-size:80.000000pt;}
.fs4_c00064{font-size:80.128000pt;}
.fs2_c00064{font-size:96.000000pt;}
.fs0_c00064{font-size:117.120000pt;}
.fs1_c00064{font-size:117.248000pt;}
.y0_c00064{bottom:0.000000pt;}
.y1a_c00064{bottom:77.600000pt;}
.y31_c00064{bottom:86.240000pt;}
.y19_c00064{bottom:101.600000pt;}
.y30_c00064{bottom:110.240000pt;}
.y18_c00064{bottom:125.600000pt;}
.y2f_c00064{bottom:129.440000pt;}
.y17_c00064{bottom:144.826667pt;}
.y2e_c00064{bottom:148.666667pt;}
.y16_c00064{bottom:164.026667pt;}
.y2d_c00064{bottom:167.866667pt;}
.y15_c00064{bottom:183.226667pt;}
.y2c_c00064{bottom:191.866667pt;}
.y14_c00064{bottom:202.426667pt;}
.y2b_c00064{bottom:211.066667pt;}
.y13_c00064{bottom:226.426667pt;}
.y2a_c00064{bottom:230.266667pt;}
.y29_c00064{bottom:249.466667pt;}
.y12_c00064{bottom:250.426667pt;}
.y28_c00064{bottom:268.706667pt;}
.y11_c00064{bottom:269.666667pt;}
.y10_c00064{bottom:288.866667pt;}
.y27_c00064{bottom:292.706667pt;}
.yf_c00064{bottom:308.066667pt;}
.y26_c00064{bottom:316.706667pt;}
.ye_c00064{bottom:327.266667pt;}
.y25_c00064{bottom:335.906667pt;}
.yd_c00064{bottom:351.266667pt;}
.y24_c00064{bottom:355.106667pt;}
.y23_c00064{bottom:374.306667pt;}
.yc_c00064{bottom:375.266667pt;}
.y22_c00064{bottom:393.533333pt;}
.yb_c00064{bottom:394.466667pt;}
.y21_c00064{bottom:412.733333pt;}
.ya_c00064{bottom:418.493333pt;}
.y20_c00064{bottom:436.733333pt;}
.y9_c00064{bottom:437.693333pt;}
.y1f_c00064{bottom:455.933333pt;}
.y8_c00064{bottom:456.893333pt;}
.y1e_c00064{bottom:475.133333pt;}
.y7_c00064{bottom:480.893333pt;}
.y1d_c00064{bottom:494.333333pt;}
.y6_c00064{bottom:504.893333pt;}
.y1c_c00064{bottom:513.533333pt;}
.y5_c00064{bottom:529.893333pt;}
.y1b_c00064{bottom:532.773333pt;}
.y4_c00064{bottom:568.413333pt;}
.y3_c00064{bottom:603.613333pt;}
.y2_c00064{bottom:638.813333pt;}
.y1_c00064{bottom:674.053333pt;}
.h4_c00064{height:79.570312pt;}
.h5_c00064{height:79.697625pt;}
.h3_c00064{height:98.296875pt;}
.h1_c00064{height:119.922187pt;}
.h2_c00064{height:120.053250pt;}
.h0_c00064{height:720.000000pt;}
.w0_c00064{width:960.000000pt;}
.x0_c00064{left:0.000000pt;}
.x4_c00064{left:57.600000pt;}
.x5_c00064{left:93.600000pt;}
.x2_c00064{left:241.853333pt;}
.x3_c00064{left:294.853333pt;}
.x1_c00064{left:480.000000pt;}
.x6_c00064{left:497.693333pt;}
.x7_c00064{left:533.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0928a1a9565ce63a26f7edb.woff')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.202148;font-style:normal;font-weight:normal;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_93736bfb7cc50f03dad3a38f.woff')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00065;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00065;src:url('chunks/assets/font_1a0b4591acc0e18f012db5bc.woff')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00065;src:url('chunks/assets/font_aa72e92d1088f67c96059064.woff')format("woff");}.ff5_c00065{font-family:ff5_c00065;line-height:1.172852;font-style: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);}
.m1_c00065{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls3_c00065{letter-spacing:0.000000px;}
.ls2_c00065{letter-spacing:119.865600px;}
.ls1_c00065{letter-spacing:119.916000px;}
.ls0_c00065{letter-spacing:124.200000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00065{word-spacing:-27.206784px;}
.ws0_c00065{word-spacing:-27.174240px;}
.ws2_c00065{word-spacing:0.000000px;}
._7_c00065{margin-left:-12.990816px;}
._3_c00065{margin-left:-7.419744px;}
._5_c00065{margin-left:-5.531040px;}
._2_c00065{margin-left:-3.775968px;}
._0_c00065{margin-left:-2.194560px;}
._1_c00065{margin-left:-1.124928px;}
._6_c00065{width:1.396368px;}
._4_c00065{width:3.771840px;}
.fc1_c00065{color:rgb(0,0,255);}
.fc0_c00065{color:rgb(0,0,0);}
.fs5_c00065{font-size:102.240000px;}
.fs4_c00065{font-size:108.000000px;}
.fs3_c00065{font-size:120.240000px;}
.fs2_c00065{font-size:120.384000px;}
.fs1_c00065{font-size:144.000000px;}
.fs0_c00065{font-size:144.144000px;}
.y0_c00065{bottom:0.000000px;}
.y15_c00065{bottom:2.340000px;}
.y14_c00065{bottom:32.940000px;}
.y13_c00065{bottom:64.620000px;}
.y23_c00065{bottom:82.620000px;}
.y12_c00065{bottom:100.620000px;}
.y22_c00065{bottom:118.620000px;}
.y11_c00065{bottom:136.620000px;}
.y21_c00065{bottom:154.650000px;}
.y10_c00065{bottom:172.650000px;}
.y20_c00065{bottom:190.650000px;}
.yf_c00065{bottom:208.650000px;}
.y1f_c00065{bottom:226.650000px;}
.ye_c00065{bottom:244.650000px;}
.y1e_c00065{bottom:255.450000px;}
.yd_c00065{bottom:280.650000px;}
.y1d_c00065{bottom:291.450000px;}
.yc_c00065{bottom:316.695000px;}
.y1c_c00065{bottom:327.495000px;}
.yb_c00065{bottom:352.695000px;}
.y1b_c00065{bottom:363.495000px;}
.ya_c00065{bottom:388.695000px;}
.y1a_c00065{bottom:392.295000px;}
.y19_c00065{bottom:421.095000px;}
.y9_c00065{bottom:424.695000px;}
.y18_c00065{bottom:449.925000px;}
.y8_c00065{bottom:453.525000px;}
.y17_c00065{bottom:485.925000px;}
.y7_c00065{bottom:489.525000px;}
.y16_c00065{bottom:521.925000px;}
.y6_c00065{bottom:524.805000px;}
.y5_c00065{bottom:557.925000px;}
.y4_c00065{bottom:593.970000px;}
.y3_c00065{bottom:654.765000px;}
.y2_c00065{bottom:697.965000px;}
.y1_c00065{bottom:741.165000px;}
.h8_c00065{height:101.690859px;}
.h5_c00065{height:107.419922px;}
.h6_c00065{height:119.594180px;}
.h7_c00065{height:119.737406px;}
.h4_c00065{height:123.116836px;}
.h3_c00065{height:123.264281px;}
.h2_c00065{height:147.445312px;}
.h1_c00065{height:147.592758px;}
.h0_c00065{height:810.000000px;}
.w0_c00065{width:1080.000000px;}
.x0_c00065{left:0.000000px;}
.x4_c00065{left:64.800000px;}
.x5_c00065{left:105.300000px;}
.x6_c00065{left:152.670000px;}
.x1_c00065{left:243.825000px;}
.x2_c00065{left:313.170000px;}
.x3_c00065{left:540.000000px;}
.x7_c00065{left:559.905000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls3_c00065{letter-spacing:0.000000pt;}
.ls2_c00065{letter-spacing:106.547200pt;}
.ls1_c00065{letter-spacing:106.592000pt;}
.ls0_c00065{letter-spacing:110.400000pt;}
.ws1_c00065{word-spacing:-24.183808pt;}
.ws0_c00065{word-spacing:-24.154880pt;}
.ws2_c00065{word-spacing:0.000000pt;}
._7_c00065{margin-left:-11.547392pt;}
._3_c00065{margin-left:-6.595328pt;}
._5_c00065{margin-left:-4.916480pt;}
._2_c00065{margin-left:-3.356416pt;}
._0_c00065{margin-left:-1.950720pt;}
._1_c00065{margin-left:-0.999936pt;}
._6_c00065{width:1.241216pt;}
._4_c00065{width:3.352747pt;}
.fs5_c00065{font-size:90.880000pt;}
.fs4_c00065{font-size:96.000000pt;}
.fs3_c00065{font-size:106.880000pt;}
.fs2_c00065{font-size:107.008000pt;}
.fs1_c00065{font-size:128.000000pt;}
.fs0_c00065{font-size:128.128000pt;}
.y0_c00065{bottom:0.000000pt;}
.y15_c00065{bottom:2.080000pt;}
.y14_c00065{bottom:29.280000pt;}
.y13_c00065{bottom:57.440000pt;}
.y23_c00065{bottom:73.440000pt;}
.y12_c00065{bottom:89.440000pt;}
.y22_c00065{bottom:105.440000pt;}
.y11_c00065{bottom:121.440000pt;}
.y21_c00065{bottom:137.466667pt;}
.y10_c00065{bottom:153.466667pt;}
.y20_c00065{bottom:169.466667pt;}
.yf_c00065{bottom:185.466667pt;}
.y1f_c00065{bottom:201.466667pt;}
.ye_c00065{bottom:217.466667pt;}
.y1e_c00065{bottom:227.066667pt;}
.yd_c00065{bottom:249.466667pt;}
.y1d_c00065{bottom:259.066667pt;}
.yc_c00065{bottom:281.506667pt;}
.y1c_c00065{bottom:291.106667pt;}
.yb_c00065{bottom:313.506667pt;}
.y1b_c00065{bottom:323.106667pt;}
.ya_c00065{bottom:345.506667pt;}
.y1a_c00065{bottom:348.706667pt;}
.y19_c00065{bottom:374.306667pt;}
.y9_c00065{bottom:377.506667pt;}
.y18_c00065{bottom:399.933333pt;}
.y8_c00065{bottom:403.133333pt;}
.y17_c00065{bottom:431.933333pt;}
.y7_c00065{bottom:435.133333pt;}
.y16_c00065{bottom:463.933333pt;}
.y6_c00065{bottom:466.493333pt;}
.y5_c00065{bottom:495.933333pt;}
.y4_c00065{bottom:527.973333pt;}
.y3_c00065{bottom:582.013333pt;}
.y2_c00065{bottom:620.413333pt;}
.y1_c00065{bottom:658.813333pt;}
.h8_c00065{height:90.391875pt;}
.h5_c00065{height:95.484375pt;}
.h6_c00065{height:106.305937pt;}
.h7_c00065{height:106.433250pt;}
.h4_c00065{height:109.437187pt;}
.h3_c00065{height:109.568250pt;}
.h2_c00065{height:131.062500pt;}
.h1_c00065{height:131.193562pt;}
.h0_c00065{height:720.000000pt;}
.w0_c00065{width:960.000000pt;}
.x0_c00065{left:0.000000pt;}
.x4_c00065{left:57.600000pt;}
.x5_c00065{left:93.600000pt;}
.x6_c00065{left:135.706667pt;}
.x1_c00065{left:216.733333pt;}
.x2_c00065{left:278.373333pt;}
.x3_c00065{left:480.000000pt;}
.x7_c00065{left:497.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63e26525ef6fe61df0ae81fd.woff')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.202148;font-style:normal;font-weight:normal;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_236ac7662054fb5e07bfb5d4.woff')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00066;src:url('chunks/assets/font_dcdb39383cd867bdfa87efef.woff')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00066;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00066;src:url('chunks/assets/font_4456a1d5a8659725fc5259ee.woff')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:1.172852;font-style: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);}
.m1_c00066{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls2_c00066{letter-spacing:0.000000px;}
.ls3_c00066{letter-spacing:0.234000px;}
.ls0_c00066{letter-spacing:119.865600px;}
.ls1_c00066{letter-spacing:119.916000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00066{word-spacing:-27.408240px;}
.ws0_c00066{word-spacing:-27.206784px;}
.ws1_c00066{word-spacing:-27.174240px;}
.ws3_c00066{word-spacing:0.000000px;}
._5_c00066{margin-left:-11.062080px;}
._6_c00066{margin-left:-7.536960px;}
._7_c00066{margin-left:-6.475680px;}
._4_c00066{margin-left:-4.914672px;}
._2_c00066{margin-left:-3.297600px;}
._0_c00066{margin-left:-2.242368px;}
._3_c00066{margin-left:-1.055232px;}
._1_c00066{width:1.055232px;}
.fc1_c00066{color:rgb(0,0,255);}
.fc2_c00066{color:rgb(255,255,255);}
.fc0_c00066{color:rgb(0,0,0);}
.fs4_c00066{font-size:102.240000px;}
.fs3_c00066{font-size:120.240000px;}
.fs2_c00066{font-size:120.384000px;}
.fs1_c00066{font-size:131.760000px;}
.fs0_c00066{font-size:131.904000px;}
.y0_c00066{bottom:0.000000px;}
.y12_c00066{bottom:54.540000px;}
.y11_c00066{bottom:90.540000px;}
.y10_c00066{bottom:126.540000px;}
.y19_c00066{bottom:134.856000px;}
.y18_c00066{bottom:162.750000px;}
.yf_c00066{bottom:169.770000px;}
.y17_c00066{bottom:190.830000px;}
.ye_c00066{bottom:212.970000px;}
.y16_c00066{bottom:218.955000px;}
.y15_c00066{bottom:246.855000px;}
.yd_c00066{bottom:248.970000px;}
.y14_c00066{bottom:274.935000px;}
.yc_c00066{bottom:284.970000px;}
.y13_c00066{bottom:302.835000px;}
.yb_c00066{bottom:321.015000px;}
.ya_c00066{bottom:357.015000px;}
.y9_c00066{bottom:400.215000px;}
.y8_c00066{bottom:436.215000px;}
.y7_c00066{bottom:472.245000px;}
.y6_c00066{bottom:515.445000px;}
.y5_c00066{bottom:551.445000px;}
.y4_c00066{bottom:587.445000px;}
.y3_c00066{bottom:659.265000px;}
.y2_c00066{bottom:698.865000px;}
.y1_c00066{bottom:738.465000px;}
.h8_c00066{height:101.690859px;}
.h5_c00066{height:119.594180px;}
.h7_c00066{height:119.737406px;}
.h6_c00066{height:123.116836px;}
.h4_c00066{height:123.264281px;}
.h3_c00066{height:131.052305px;}
.h2_c00066{height:134.912461px;}
.h1_c00066{height:135.059906px;}
.h0_c00066{height:810.000000px;}
.w0_c00066{width:1080.000000px;}
.x0_c00066{left:0.000000px;}
.x4_c00066{left:64.800000px;}
.x5_c00066{left:105.300000px;}
.x1_c00066{left:272.085000px;}
.x2_c00066{left:331.710000px;}
.x3_c00066{left:540.000000px;}
.x6_c00066{left:584.715000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls2_c00066{letter-spacing:0.000000pt;}
.ls3_c00066{letter-spacing:0.208000pt;}
.ls0_c00066{letter-spacing:106.547200pt;}
.ls1_c00066{letter-spacing:106.592000pt;}
.ws2_c00066{word-spacing:-24.362880pt;}
.ws0_c00066{word-spacing:-24.183808pt;}
.ws1_c00066{word-spacing:-24.154880pt;}
.ws3_c00066{word-spacing:0.000000pt;}
._5_c00066{margin-left:-9.832960pt;}
._6_c00066{margin-left:-6.699520pt;}
._7_c00066{margin-left:-5.756160pt;}
._4_c00066{margin-left:-4.368597pt;}
._2_c00066{margin-left:-2.931200pt;}
._0_c00066{margin-left:-1.993216pt;}
._3_c00066{margin-left:-0.937984pt;}
._1_c00066{width:0.937984pt;}
.fs4_c00066{font-size:90.880000pt;}
.fs3_c00066{font-size:106.880000pt;}
.fs2_c00066{font-size:107.008000pt;}
.fs1_c00066{font-size:117.120000pt;}
.fs0_c00066{font-size:117.248000pt;}
.y0_c00066{bottom:0.000000pt;}
.y12_c00066{bottom:48.480000pt;}
.y11_c00066{bottom:80.480000pt;}
.y10_c00066{bottom:112.480000pt;}
.y19_c00066{bottom:119.872000pt;}
.y18_c00066{bottom:144.666667pt;}
.yf_c00066{bottom:150.906667pt;}
.y17_c00066{bottom:169.626667pt;}
.ye_c00066{bottom:189.306667pt;}
.y16_c00066{bottom:194.626667pt;}
.y15_c00066{bottom:219.426667pt;}
.yd_c00066{bottom:221.306667pt;}
.y14_c00066{bottom:244.386667pt;}
.yc_c00066{bottom:253.306667pt;}
.y13_c00066{bottom:269.186667pt;}
.yb_c00066{bottom:285.346667pt;}
.ya_c00066{bottom:317.346667pt;}
.y9_c00066{bottom:355.746667pt;}
.y8_c00066{bottom:387.746667pt;}
.y7_c00066{bottom:419.773333pt;}
.y6_c00066{bottom:458.173333pt;}
.y5_c00066{bottom:490.173333pt;}
.y4_c00066{bottom:522.173333pt;}
.y3_c00066{bottom:586.013333pt;}
.y2_c00066{bottom:621.213333pt;}
.y1_c00066{bottom:656.413333pt;}
.h8_c00066{height:90.391875pt;}
.h5_c00066{height:106.305937pt;}
.h7_c00066{height:106.433250pt;}
.h6_c00066{height:109.437187pt;}
.h4_c00066{height:109.568250pt;}
.h3_c00066{height:116.490937pt;}
.h2_c00066{height:119.922187pt;}
.h1_c00066{height:120.053250pt;}
.h0_c00066{height:720.000000pt;}
.w0_c00066{width:960.000000pt;}
.x0_c00066{left:0.000000pt;}
.x4_c00066{left:57.600000pt;}
.x5_c00066{left:93.600000pt;}
.x1_c00066{left:241.853333pt;}
.x2_c00066{left:294.853333pt;}
.x3_c00066{left:480.000000pt;}
.x6_c00066{left:519.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb915ed21ca14e5af0dacc87.woff')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.202148;font-style:normal;font-weight:normal;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_236ac7662054fb5e07bfb5d4.woff')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00067;src:url('chunks/assets/font_ec6e7e2fd9dc4bb48a24ea76.woff')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00067;src:url('chunks/assets/font_5249ec49dcceb982a65fc161.woff')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:1.172852;font-style: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);}
.m1_c00067{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls1_c00067{letter-spacing:0.000000px;}
.ls0_c00067{letter-spacing:0.097800px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00067{word-spacing:-32.544000px;}
.ws0_c00067{word-spacing:-20.340000px;}
.ws2_c00067{word-spacing:0.000000px;}
._7_c00067{margin-left:-8.612928px;}
._5_c00067{margin-left:-5.850000px;}
._2_c00067{margin-left:-3.297600px;}
._0_c00067{margin-left:-2.242368px;}
._3_c00067{margin-left:-1.055232px;}
._1_c00067{width:1.055232px;}
._6_c00067{width:2.332368px;}
._4_c00067{width:9.180000px;}
.fc2_c00067{color:rgb(0,0,255);}
.fc1_c00067{color:rgb(255,255,255);}
.fc0_c00067{color:rgb(0,0,0);}
.fs2_c00067{font-size:90.000000px;}
.fs3_c00067{font-size:90.144000px;}
.fs1_c00067{font-size:131.760000px;}
.fs0_c00067{font-size:131.904000px;}
.fs5_c00067{font-size:144.000000px;}
.fs4_c00067{font-size:149.760000px;}
.y0_c00067{bottom:0.000000px;}
.y13_c00067{bottom:169.050000px;}
.y10_c00067{bottom:192.810000px;}
.yf_c00067{bottom:217.470000px;}
.ye_c00067{bottom:242.175000px;}
.yd_c00067{bottom:267.015000px;}
.yc_c00067{bottom:295.815000px;}
.yb_c00067{bottom:320.475000px;}
.y12_c00067{bottom:322.455000px;}
.ya_c00067{bottom:345.135000px;}
.y11_c00067{bottom:363.675000px;}
.y9_c00067{bottom:369.975000px;}
.y8_c00067{bottom:394.665000px;}
.y7_c00067{bottom:423.465000px;}
.y6_c00067{bottom:448.305000px;}
.y5_c00067{bottom:477.105000px;}
.y4_c00067{bottom:501.765000px;}
.y3_c00067{bottom:659.265000px;}
.y2_c00067{bottom:698.865000px;}
.y1_c00067{bottom:738.465000px;}
.h4_c00067{height:89.516602px;}
.h5_c00067{height:89.659828px;}
.h3_c00067{height:131.052305px;}
.h2_c00067{height:134.912461px;}
.h1_c00067{height:135.059906px;}
.h7_c00067{height:143.226562px;}
.h6_c00067{height:148.955625px;}
.h0_c00067{height:810.000000px;}
.w0_c00067{width:1080.000000px;}
.x0_c00067{left:0.000000px;}
.x8_c00067{left:74.556000px;}
.x1_c00067{left:272.085000px;}
.x2_c00067{left:331.710000px;}
.x3_c00067{left:540.000000px;}
.x7_c00067{left:570.525000px;}
.x6_c00067{left:616.245000px;}
.x4_c00067{left:727.590000px;}
.x5_c00067{left:741.090000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls1_c00067{letter-spacing:0.000000pt;}
.ls0_c00067{letter-spacing:0.086933pt;}
.ws1_c00067{word-spacing:-28.928000pt;}
.ws0_c00067{word-spacing:-18.080000pt;}
.ws2_c00067{word-spacing:0.000000pt;}
._7_c00067{margin-left:-7.655936pt;}
._5_c00067{margin-left:-5.200000pt;}
._2_c00067{margin-left:-2.931200pt;}
._0_c00067{margin-left:-1.993216pt;}
._3_c00067{margin-left:-0.937984pt;}
._1_c00067{width:0.937984pt;}
._6_c00067{width:2.073216pt;}
._4_c00067{width:8.160000pt;}
.fs2_c00067{font-size:80.000000pt;}
.fs3_c00067{font-size:80.128000pt;}
.fs1_c00067{font-size:117.120000pt;}
.fs0_c00067{font-size:117.248000pt;}
.fs5_c00067{font-size:128.000000pt;}
.fs4_c00067{font-size:133.120000pt;}
.y0_c00067{bottom:0.000000pt;}
.y13_c00067{bottom:150.266667pt;}
.y10_c00067{bottom:171.386667pt;}
.yf_c00067{bottom:193.306667pt;}
.ye_c00067{bottom:215.266667pt;}
.yd_c00067{bottom:237.346667pt;}
.yc_c00067{bottom:262.946667pt;}
.yb_c00067{bottom:284.866667pt;}
.y12_c00067{bottom:286.626667pt;}
.ya_c00067{bottom:306.786667pt;}
.y11_c00067{bottom:323.266667pt;}
.y9_c00067{bottom:328.866667pt;}
.y8_c00067{bottom:350.813333pt;}
.y7_c00067{bottom:376.413333pt;}
.y6_c00067{bottom:398.493333pt;}
.y5_c00067{bottom:424.093333pt;}
.y4_c00067{bottom:446.013333pt;}
.y3_c00067{bottom:586.013333pt;}
.y2_c00067{bottom:621.213333pt;}
.y1_c00067{bottom:656.413333pt;}
.h4_c00067{height:79.570312pt;}
.h5_c00067{height:79.697625pt;}
.h3_c00067{height:116.490937pt;}
.h2_c00067{height:119.922187pt;}
.h1_c00067{height:120.053250pt;}
.h7_c00067{height:127.312500pt;}
.h6_c00067{height:132.405000pt;}
.h0_c00067{height:720.000000pt;}
.w0_c00067{width:960.000000pt;}
.x0_c00067{left:0.000000pt;}
.x8_c00067{left:66.272000pt;}
.x1_c00067{left:241.853333pt;}
.x2_c00067{left:294.853333pt;}
.x3_c00067{left:480.000000pt;}
.x7_c00067{left:507.133333pt;}
.x6_c00067{left:547.773333pt;}
.x4_c00067{left:646.746667pt;}
.x5_c00067{left:658.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00068{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00068{-webkit-text-stroke:0px transparent;}
}
.y0_c00068{bottom:0.000000px;}
.h0_c00068{height:810.000000px;}
.w0_c00068{width:1080.000000px;}
.x0_c00068{left:0.000000px;}
@media print{
.y0_c00068{bottom:0.000000pt;}
.h0_c00068{height:720.000000pt;}
.w0_c00068{width:960.000000pt;}
.x0_c00068{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_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;}
.sc__c00069{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
}
.y0_c00069{bottom:0.000000px;}
.h0_c00069{height:810.000000px;}
.w0_c00069{width:1080.000000px;}
.x0_c00069{left:0.000000px;}
@media print{
.y0_c00069{bottom:0.000000pt;}
.h0_c00069{height:720.000000pt;}
.w0_c00069{width:960.000000pt;}
.x0_c00069{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_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;}
.sc__c00070{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00070{-webkit-text-stroke:0px transparent;}
}
.y0_c00070{bottom:0.000000px;}
.h0_c00070{height:810.000000px;}
.w0_c00070{width:1080.000000px;}
.x0_c00070{left:0.000000px;}
@media print{
.y0_c00070{bottom:0.000000pt;}
.h0_c00070{height:720.000000pt;}
.w0_c00070{width:960.000000pt;}
.x0_c00070{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_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;}
.sc__c00071{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
}
.y0_c00071{bottom:0.000000px;}
.h0_c00071{height:810.000000px;}
.w0_c00071{width:1080.000000px;}
.x0_c00071{left:0.000000px;}
@media print{
.y0_c00071{bottom:0.000000pt;}
.h0_c00071{height:720.000000pt;}
.w0_c00071{width:960.000000pt;}
.x0_c00071{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_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_435500ddf7abf263e12340c8.woff')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_b0a3f1acf972ecc09ab4f304.woff')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00072;src:url('chunks/assets/font_efe541401c9a9a07b811185c.woff')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00072;src:url('chunks/assets/font_d89f43b743a5df55c53cfdd9.woff')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00072;src:url('chunks/assets/font_d87cf8acba5915a03e016340.woff')format("woff");}.ff5_c00072{font-family:ff5_c00072;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00072;src:url('chunks/assets/font_0b340aae9fc0cf4383c3bdb0.woff')format("woff");}.ff6_c00072{font-family:ff6_c00072;line-height:1.003418;font-style: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;}
.ls6_c00072{letter-spacing:-11.400000px;}
.ls4_c00072{letter-spacing:0.000000px;}
.ls3_c00072{letter-spacing:0.210240px;}
.ls2_c00072{letter-spacing:0.227520px;}
.ls5_c00072{letter-spacing:0.229200px;}
.ls1_c00072{letter-spacing:0.906240px;}
.ls0_c00072{letter-spacing:0.930240px;}
.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:-25.709760px;}
.ws1_c00072{word-spacing:-14.309760px;}
.ws2_c00072{word-spacing:0.000000px;}
._7_c00072{margin-left:-11.603520px;}
._5_c00072{margin-left:-9.328320px;}
._3_c00072{margin-left:-5.125680px;}
._0_c00072{margin-left:-3.009600px;}
._1_c00072{margin-left:-1.805760px;}
._2_c00072{width:1.330560px;}
._4_c00072{width:3.076848px;}
._6_c00072{width:11.565600px;}
.fc0_c00072{color:rgb(0,0,0);}
.fs1_c00072{font-size:77.760000px;}
.fs4_c00072{font-size:108.000000px;}
.fs5_c00072{font-size:108.144000px;}
.fs2_c00072{font-size:113.760000px;}
.fs3_c00072{font-size:113.904000px;}
.fs0_c00072{font-size:120.384000px;}
.y0_c00072{bottom:0.000000px;}
.y18_c00072{bottom:66.024000px;}
.y17_c00072{bottom:98.424000px;}
.y13_c00072{bottom:107.460000px;}
.y16_c00072{bottom:130.824000px;}
.y12_c00072{bottom:138.240000px;}
.y15_c00072{bottom:163.230000px;}
.y11_c00072{bottom:169.050000px;}
.y14_c00072{bottom:195.660000px;}
.y10_c00072{bottom:199.830000px;}
.yf_c00072{bottom:237.450000px;}
.ye_c00072{bottom:275.070000px;}
.yd_c00072{bottom:305.850000px;}
.yc_c00072{bottom:336.675000px;}
.yb_c00072{bottom:367.455000px;}
.ya_c00072{bottom:398.235000px;}
.y9_c00072{bottom:429.015000px;}
.y8_c00072{bottom:459.795000px;}
.y7_c00072{bottom:497.445000px;}
.y6_c00072{bottom:528.225000px;}
.y5_c00072{bottom:559.005000px;}
.y4_c00072{bottom:589.785000px;}
.y3_c00072{bottom:620.610000px;}
.y2_c00072{bottom:655.890000px;}
.y1_c00072{bottom:704.805000px;}
.h2_c00072{height:77.342344px;}
.h8_c00072{height:89.068359px;}
.h9_c00072{height:89.187117px;}
.h7_c00072{height:93.818672px;}
.h6_c00072{height:93.937430px;}
.h3_c00072{height:113.148984px;}
.h4_c00072{height:113.292211px;}
.h5_c00072{height:116.481797px;}
.h1_c00072{height:123.264281px;}
.h0_c00072{height:810.000000px;}
.w0_c00072{width:1080.000000px;}
.x0_c00072{left:0.000000px;}
.x2_c00072{left:64.800000px;}
.x1_c00072{left:169.890000px;}
.x3_c00072{left:482.835000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls6_c00072{letter-spacing:-10.133333pt;}
.ls4_c00072{letter-spacing:0.000000pt;}
.ls3_c00072{letter-spacing:0.186880pt;}
.ls2_c00072{letter-spacing:0.202240pt;}
.ls5_c00072{letter-spacing:0.203733pt;}
.ls1_c00072{letter-spacing:0.805547pt;}
.ls0_c00072{letter-spacing:0.826880pt;}
.ws0_c00072{word-spacing:-22.853120pt;}
.ws1_c00072{word-spacing:-12.719787pt;}
.ws2_c00072{word-spacing:0.000000pt;}
._7_c00072{margin-left:-10.314240pt;}
._5_c00072{margin-left:-8.291840pt;}
._3_c00072{margin-left:-4.556160pt;}
._0_c00072{margin-left:-2.675200pt;}
._1_c00072{margin-left:-1.605120pt;}
._2_c00072{width:1.182720pt;}
._4_c00072{width:2.734976pt;}
._6_c00072{width:10.280533pt;}
.fs1_c00072{font-size:69.120000pt;}
.fs4_c00072{font-size:96.000000pt;}
.fs5_c00072{font-size:96.128000pt;}
.fs2_c00072{font-size:101.120000pt;}
.fs3_c00072{font-size:101.248000pt;}
.fs0_c00072{font-size:107.008000pt;}
.y0_c00072{bottom:0.000000pt;}
.y18_c00072{bottom:58.688000pt;}
.y17_c00072{bottom:87.488000pt;}
.y13_c00072{bottom:95.520000pt;}
.y16_c00072{bottom:116.288000pt;}
.y12_c00072{bottom:122.880000pt;}
.y15_c00072{bottom:145.093333pt;}
.y11_c00072{bottom:150.266667pt;}
.y14_c00072{bottom:173.920000pt;}
.y10_c00072{bottom:177.626667pt;}
.yf_c00072{bottom:211.066667pt;}
.ye_c00072{bottom:244.506667pt;}
.yd_c00072{bottom:271.866667pt;}
.yc_c00072{bottom:299.266667pt;}
.yb_c00072{bottom:326.626667pt;}
.ya_c00072{bottom:353.986667pt;}
.y9_c00072{bottom:381.346667pt;}
.y8_c00072{bottom:408.706667pt;}
.y7_c00072{bottom:442.173333pt;}
.y6_c00072{bottom:469.533333pt;}
.y5_c00072{bottom:496.893333pt;}
.y4_c00072{bottom:524.253333pt;}
.y3_c00072{bottom:551.653333pt;}
.y2_c00072{bottom:583.013333pt;}
.y1_c00072{bottom:626.493333pt;}
.h2_c00072{height:68.748750pt;}
.h8_c00072{height:79.171875pt;}
.h9_c00072{height:79.277438pt;}
.h7_c00072{height:83.394375pt;}
.h6_c00072{height:83.499938pt;}
.h3_c00072{height:100.576875pt;}
.h4_c00072{height:100.704187pt;}
.h5_c00072{height:103.539375pt;}
.h1_c00072{height:109.568250pt;}
.h0_c00072{height:720.000000pt;}
.w0_c00072{width:960.000000pt;}
.x0_c00072{left:0.000000pt;}
.x2_c00072{left:57.600000pt;}
.x1_c00072{left:151.013333pt;}
.x3_c00072{left:429.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_892204051c55f21eb5336d36.woff')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.202148;font-style:normal;font-weight:normal;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_e2c5fbf1d0b5d553ed71a9b8.woff')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_3ed0799238bc56723738ff3b.woff')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00073;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00073;src:url('chunks/assets/font_cbdb39a590025cac3a6282af.woff')format("woff");}.ff5_c00073{font-family:ff5_c00073;line-height:1.172852;font-style: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);}
.m1_c00073{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls4_c00073{letter-spacing:0.000000px;}
.ls2_c00073{letter-spacing:0.153216px;}
.ls5_c00073{letter-spacing:0.180000px;}
.ls3_c00073{letter-spacing:0.185760px;}
.ls1_c00073{letter-spacing:119.865600px;}
.ls0_c00073{letter-spacing:119.916000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00073{word-spacing:-27.206784px;}
.ws0_c00073{word-spacing:-27.174240px;}
.ws2_c00073{word-spacing:0.000000px;}
._4_c00073{margin-left:-7.408752px;}
._6_c00073{margin-left:-5.949216px;}
._5_c00073{margin-left:-4.328640px;}
._2_c00073{margin-left:-3.297600px;}
._0_c00073{margin-left:-2.242368px;}
._3_c00073{margin-left:-1.055232px;}
._1_c00073{width:1.055232px;}
.fc1_c00073{color:rgb(0,0,0);}
.fc2_c00073{color:rgb(0,0,255);}
.fc0_c00073{color:rgb(23,55,94);}
.fs3_c00073{font-size:120.240000px;}
.fs2_c00073{font-size:120.384000px;}
.fs1_c00073{font-size:131.760000px;}
.fs0_c00073{font-size:131.904000px;}
.y0_c00073{bottom:0.000000px;}
.y1a_c00073{bottom:176.250000px;}
.y10_c00073{bottom:190.650000px;}
.y19_c00073{bottom:212.250000px;}
.yf_c00073{bottom:226.650000px;}
.y18_c00073{bottom:248.250000px;}
.ye_c00073{bottom:262.650000px;}
.y17_c00073{bottom:277.050000px;}
.yd_c00073{bottom:291.450000px;}
.y16_c00073{bottom:305.895000px;}
.yc_c00073{bottom:320.295000px;}
.y15_c00073{bottom:334.695000px;}
.yb_c00073{bottom:356.295000px;}
.y14_c00073{bottom:363.495000px;}
.ya_c00073{bottom:392.295000px;}
.y9_c00073{bottom:421.095000px;}
.y13_c00073{bottom:428.295000px;}
.y8_c00073{bottom:449.925000px;}
.y12_c00073{bottom:464.325000px;}
.y7_c00073{bottom:485.925000px;}
.y11_c00073{bottom:493.125000px;}
.y6_c00073{bottom:521.925000px;}
.y5_c00073{bottom:557.925000px;}
.y4_c00073{bottom:593.970000px;}
.y3_c00073{bottom:659.265000px;}
.y2_c00073{bottom:698.865000px;}
.y1_c00073{bottom:738.465000px;}
.h5_c00073{height:119.594180px;}
.h6_c00073{height:119.737406px;}
.h7_c00073{height:123.116836px;}
.h4_c00073{height:123.264281px;}
.h3_c00073{height:131.052305px;}
.h2_c00073{height:134.912461px;}
.h1_c00073{height:135.059906px;}
.h0_c00073{height:810.000000px;}
.w0_c00073{width:1080.000000px;}
.x0_c00073{left:0.000000px;}
.x4_c00073{left:64.800000px;}
.x5_c00073{left:105.300000px;}
.x1_c00073{left:272.085000px;}
.x2_c00073{left:331.710000px;}
.x3_c00073{left:540.000000px;}
.x6_c00073{left:559.905000px;}
.x7_c00073{left:600.405000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls4_c00073{letter-spacing:0.000000pt;}
.ls2_c00073{letter-spacing:0.136192pt;}
.ls5_c00073{letter-spacing:0.160000pt;}
.ls3_c00073{letter-spacing:0.165120pt;}
.ls1_c00073{letter-spacing:106.547200pt;}
.ls0_c00073{letter-spacing:106.592000pt;}
.ws1_c00073{word-spacing:-24.183808pt;}
.ws0_c00073{word-spacing:-24.154880pt;}
.ws2_c00073{word-spacing:0.000000pt;}
._4_c00073{margin-left:-6.585557pt;}
._6_c00073{margin-left:-5.288192pt;}
._5_c00073{margin-left:-3.847680pt;}
._2_c00073{margin-left:-2.931200pt;}
._0_c00073{margin-left:-1.993216pt;}
._3_c00073{margin-left:-0.937984pt;}
._1_c00073{width:0.937984pt;}
.fs3_c00073{font-size:106.880000pt;}
.fs2_c00073{font-size:107.008000pt;}
.fs1_c00073{font-size:117.120000pt;}
.fs0_c00073{font-size:117.248000pt;}
.y0_c00073{bottom:0.000000pt;}
.y1a_c00073{bottom:156.666667pt;}
.y10_c00073{bottom:169.466667pt;}
.y19_c00073{bottom:188.666667pt;}
.yf_c00073{bottom:201.466667pt;}
.y18_c00073{bottom:220.666667pt;}
.ye_c00073{bottom:233.466667pt;}
.y17_c00073{bottom:246.266667pt;}
.yd_c00073{bottom:259.066667pt;}
.y16_c00073{bottom:271.906667pt;}
.yc_c00073{bottom:284.706667pt;}
.y15_c00073{bottom:297.506667pt;}
.yb_c00073{bottom:316.706667pt;}
.y14_c00073{bottom:323.106667pt;}
.ya_c00073{bottom:348.706667pt;}
.y9_c00073{bottom:374.306667pt;}
.y13_c00073{bottom:380.706667pt;}
.y8_c00073{bottom:399.933333pt;}
.y12_c00073{bottom:412.733333pt;}
.y7_c00073{bottom:431.933333pt;}
.y11_c00073{bottom:438.333333pt;}
.y6_c00073{bottom:463.933333pt;}
.y5_c00073{bottom:495.933333pt;}
.y4_c00073{bottom:527.973333pt;}
.y3_c00073{bottom:586.013333pt;}
.y2_c00073{bottom:621.213333pt;}
.y1_c00073{bottom:656.413333pt;}
.h5_c00073{height:106.305937pt;}
.h6_c00073{height:106.433250pt;}
.h7_c00073{height:109.437187pt;}
.h4_c00073{height:109.568250pt;}
.h3_c00073{height:116.490937pt;}
.h2_c00073{height:119.922187pt;}
.h1_c00073{height:120.053250pt;}
.h0_c00073{height:720.000000pt;}
.w0_c00073{width:960.000000pt;}
.x0_c00073{left:0.000000pt;}
.x4_c00073{left:57.600000pt;}
.x5_c00073{left:93.600000pt;}
.x1_c00073{left:241.853333pt;}
.x2_c00073{left:294.853333pt;}
.x3_c00073{left:480.000000pt;}
.x6_c00073{left:497.693333pt;}
.x7_c00073{left:533.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76e03c9ef60fc7a0a3476cd2.woff')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00074;src:url('chunks/assets/font_fbc343f56b16c7ab3180080e.woff')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00074;src:url('chunks/assets/font_1f665c8fe97000031787f7c8.woff')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00074;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00074;src:url('chunks/assets/font_03543769e546b340c8a5bb3a.woff')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:1.172852;font-style: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);}
.m1_c00074{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls4_c00074{letter-spacing:0.000000px;}
.ls3_c00074{letter-spacing:0.138240px;}
.ls0_c00074{letter-spacing:119.865600px;}
.ls1_c00074{letter-spacing:119.916000px;}
.ls2_c00074{letter-spacing:128.484000px;}
.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:-27.206784px;}
.ws1_c00074{word-spacing:-27.174240px;}
.ws2_c00074{word-spacing:-21.641760px;}
.ws3_c00074{word-spacing:0.000000px;}
._4_c00074{margin-left:-6.935040px;}
._5_c00074{margin-left:-5.271792px;}
._2_c00074{margin-left:-3.297600px;}
._0_c00074{margin-left:-2.242368px;}
._3_c00074{margin-left:-1.055232px;}
._1_c00074{width:1.055232px;}
._6_c00074{width:2.953872px;}
.fc1_c00074{color:rgb(0,0,255);}
.fc0_c00074{color:rgb(0,0,0);}
.fs5_c00074{font-size:95.760000px;}
.fs6_c00074{font-size:95.904000px;}
.fs3_c00074{font-size:120.240000px;}
.fs2_c00074{font-size:120.384000px;}
.fs1_c00074{font-size:131.760000px;}
.fs0_c00074{font-size:131.904000px;}
.fs4_c00074{font-size:144.000000px;}
.y0_c00074{bottom:0.000000px;}
.y1f_c00074{bottom:38.772000px;}
.y1e_c00074{bottom:73.332000px;}
.y1d_c00074{bottom:102.132000px;}
.y1c_c00074{bottom:136.728000px;}
.y1b_c00074{bottom:165.525000px;}
.y1a_c00074{bottom:194.325000px;}
.y19_c00074{bottom:223.125000px;}
.yc_c00074{bottom:249.150000px;}
.y18_c00074{bottom:251.925000px;}
.y17_c00074{bottom:280.770000px;}
.yb_c00074{bottom:299.370000px;}
.y16_c00074{bottom:309.570000px;}
.ya_c00074{bottom:335.415000px;}
.y15_c00074{bottom:338.370000px;}
.y14_c00074{bottom:367.170000px;}
.y9_c00074{bottom:378.615000px;}
.y13_c00074{bottom:395.970000px;}
.y8_c00074{bottom:421.815000px;}
.y12_c00074{bottom:430.560000px;}
.y11_c00074{bottom:459.360000px;}
.y7_c00074{bottom:465.045000px;}
.y10_c00074{bottom:488.160000px;}
.y6_c00074{bottom:508.245000px;}
.yf_c00074{bottom:516.960000px;}
.ye_c00074{bottom:545.760000px;}
.y5_c00074{bottom:551.445000px;}
.yd_c00074{bottom:580.350000px;}
.y4_c00074{bottom:587.445000px;}
.y3_c00074{bottom:659.265000px;}
.y2_c00074{bottom:698.865000px;}
.y1_c00074{bottom:738.465000px;}
.ha_c00074{height:95.245664px;}
.hb_c00074{height:95.388891px;}
.h9_c00074{height:98.051133px;}
.h6_c00074{height:119.594180px;}
.h7_c00074{height:119.737406px;}
.h5_c00074{height:123.116836px;}
.h4_c00074{height:123.264281px;}
.h3_c00074{height:131.052305px;}
.h2_c00074{height:134.912461px;}
.h1_c00074{height:135.059906px;}
.h8_c00074{height:147.445312px;}
.h0_c00074{height:810.000000px;}
.w0_c00074{width:1080.000000px;}
.x0_c00074{left:0.000000px;}
.x4_c00074{left:64.800000px;}
.x5_c00074{left:105.300000px;}
.x1_c00074{left:272.085000px;}
.x2_c00074{left:331.710000px;}
.x3_c00074{left:540.000000px;}
.x6_c00074{left:584.925000px;}
.x7_c00074{left:625.425000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls4_c00074{letter-spacing:0.000000pt;}
.ls3_c00074{letter-spacing:0.122880pt;}
.ls0_c00074{letter-spacing:106.547200pt;}
.ls1_c00074{letter-spacing:106.592000pt;}
.ls2_c00074{letter-spacing:114.208000pt;}
.ws0_c00074{word-spacing:-24.183808pt;}
.ws1_c00074{word-spacing:-24.154880pt;}
.ws2_c00074{word-spacing:-19.237120pt;}
.ws3_c00074{word-spacing:0.000000pt;}
._4_c00074{margin-left:-6.164480pt;}
._5_c00074{margin-left:-4.686037pt;}
._2_c00074{margin-left:-2.931200pt;}
._0_c00074{margin-left:-1.993216pt;}
._3_c00074{margin-left:-0.937984pt;}
._1_c00074{width:0.937984pt;}
._6_c00074{width:2.625664pt;}
.fs5_c00074{font-size:85.120000pt;}
.fs6_c00074{font-size:85.248000pt;}
.fs3_c00074{font-size:106.880000pt;}
.fs2_c00074{font-size:107.008000pt;}
.fs1_c00074{font-size:117.120000pt;}
.fs0_c00074{font-size:117.248000pt;}
.fs4_c00074{font-size:128.000000pt;}
.y0_c00074{bottom:0.000000pt;}
.y1f_c00074{bottom:34.464000pt;}
.y1e_c00074{bottom:65.184000pt;}
.y1d_c00074{bottom:90.784000pt;}
.y1c_c00074{bottom:121.536000pt;}
.y1b_c00074{bottom:147.133333pt;}
.y1a_c00074{bottom:172.733333pt;}
.y19_c00074{bottom:198.333333pt;}
.yc_c00074{bottom:221.466667pt;}
.y18_c00074{bottom:223.933333pt;}
.y17_c00074{bottom:249.573333pt;}
.yb_c00074{bottom:266.106667pt;}
.y16_c00074{bottom:275.173333pt;}
.ya_c00074{bottom:298.146667pt;}
.y15_c00074{bottom:300.773333pt;}
.y14_c00074{bottom:326.373333pt;}
.y9_c00074{bottom:336.546667pt;}
.y13_c00074{bottom:351.973333pt;}
.y8_c00074{bottom:374.946667pt;}
.y12_c00074{bottom:382.720000pt;}
.y11_c00074{bottom:408.320000pt;}
.y7_c00074{bottom:413.373333pt;}
.y10_c00074{bottom:433.920000pt;}
.y6_c00074{bottom:451.773333pt;}
.yf_c00074{bottom:459.520000pt;}
.ye_c00074{bottom:485.120000pt;}
.y5_c00074{bottom:490.173333pt;}
.yd_c00074{bottom:515.866667pt;}
.y4_c00074{bottom:522.173333pt;}
.y3_c00074{bottom:586.013333pt;}
.y2_c00074{bottom:621.213333pt;}
.y1_c00074{bottom:656.413333pt;}
.ha_c00074{height:84.662813pt;}
.hb_c00074{height:84.790125pt;}
.h9_c00074{height:87.156562pt;}
.h6_c00074{height:106.305937pt;}
.h7_c00074{height:106.433250pt;}
.h5_c00074{height:109.437187pt;}
.h4_c00074{height:109.568250pt;}
.h3_c00074{height:116.490937pt;}
.h2_c00074{height:119.922187pt;}
.h1_c00074{height:120.053250pt;}
.h8_c00074{height:131.062500pt;}
.h0_c00074{height:720.000000pt;}
.w0_c00074{width:960.000000pt;}
.x0_c00074{left:0.000000pt;}
.x4_c00074{left:57.600000pt;}
.x5_c00074{left:93.600000pt;}
.x1_c00074{left:241.853333pt;}
.x2_c00074{left:294.853333pt;}
.x3_c00074{left:480.000000pt;}
.x6_c00074{left:519.933333pt;}
.x7_c00074{left:555.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8268fd95208b7698de1bce05.woff')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00075;src:url('chunks/assets/font_236ac7662054fb5e07bfb5d4.woff')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00075;src:url('chunks/assets/font_d50922aa69412572cc82a836.woff')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00075;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00075;src:url('chunks/assets/font_e8604e691d07ff2c8135bc7d.woff')format("woff");}.ff5_c00075{font-family:ff5_c00075;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls2_c00075{letter-spacing:0.000000px;}
.ls0_c00075{letter-spacing:111.549600px;}
.ls1_c00075{letter-spacing:111.600000px;}
.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:-32.544000px;}
.ws1_c00075{word-spacing:0.000000px;}
._4_c00075{margin-left:-9.122496px;}
._6_c00075{margin-left:-6.203040px;}
._5_c00075{margin-left:-4.321728px;}
._2_c00075{margin-left:-3.297600px;}
._0_c00075{margin-left:-2.242368px;}
._3_c00075{margin-left:-1.055232px;}
._1_c00075{width:1.055232px;}
._7_c00075{width:2.108736px;}
.fc1_c00075{color:rgb(0,0,255);}
.fc0_c00075{color:rgb(0,0,0);}
.fs4_c00075{font-size:108.000000px;}
.fs5_c00075{font-size:108.144000px;}
.fs1_c00075{font-size:131.760000px;}
.fs0_c00075{font-size:131.904000px;}
.fs3_c00075{font-size:144.000000px;}
.fs2_c00075{font-size:144.144000px;}
.y0_c00075{bottom:0.000000px;}
.y11_c00075{bottom:242.640000px;}
.y10_c00075{bottom:275.040000px;}
.yf_c00075{bottom:307.440000px;}
.ye_c00075{bottom:339.870000px;}
.yd_c00075{bottom:372.270000px;}
.y8_c00075{bottom:400.395000px;}
.yc_c00075{bottom:404.670000px;}
.yb_c00075{bottom:437.070000px;}
.y7_c00075{bottom:443.625000px;}
.ya_c00075{bottom:469.470000px;}
.y6_c00075{bottom:486.825000px;}
.y9_c00075{bottom:501.915000px;}
.y5_c00075{bottom:538.665000px;}
.y4_c00075{bottom:581.865000px;}
.y3_c00075{bottom:659.265000px;}
.y2_c00075{bottom:698.865000px;}
.y1_c00075{bottom:738.465000px;}
.h7_c00075{height:107.419922px;}
.h8_c00075{height:107.563148px;}
.h3_c00075{height:131.052305px;}
.h2_c00075{height:134.912461px;}
.h1_c00075{height:135.059906px;}
.h6_c00075{height:143.226562px;}
.h5_c00075{height:147.445312px;}
.h4_c00075{height:147.592758px;}
.h0_c00075{height:810.000000px;}
.w0_c00075{width:1080.000000px;}
.x0_c00075{left:0.000000px;}
.x4_c00075{left:64.800000px;}
.x5_c00075{left:105.300000px;}
.x1_c00075{left:272.085000px;}
.x2_c00075{left:331.710000px;}
.x3_c00075{left:540.000000px;}
.x6_c00075{left:632.700000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls2_c00075{letter-spacing:0.000000pt;}
.ls0_c00075{letter-spacing:99.155200pt;}
.ls1_c00075{letter-spacing:99.200000pt;}
.ws0_c00075{word-spacing:-28.928000pt;}
.ws1_c00075{word-spacing:0.000000pt;}
._4_c00075{margin-left:-8.108885pt;}
._6_c00075{margin-left:-5.513813pt;}
._5_c00075{margin-left:-3.841536pt;}
._2_c00075{margin-left:-2.931200pt;}
._0_c00075{margin-left:-1.993216pt;}
._3_c00075{margin-left:-0.937984pt;}
._1_c00075{width:0.937984pt;}
._7_c00075{width:1.874432pt;}
.fs4_c00075{font-size:96.000000pt;}
.fs5_c00075{font-size:96.128000pt;}
.fs1_c00075{font-size:117.120000pt;}
.fs0_c00075{font-size:117.248000pt;}
.fs3_c00075{font-size:128.000000pt;}
.fs2_c00075{font-size:128.128000pt;}
.y0_c00075{bottom:0.000000pt;}
.y11_c00075{bottom:215.680000pt;}
.y10_c00075{bottom:244.480000pt;}
.yf_c00075{bottom:273.280000pt;}
.ye_c00075{bottom:302.106667pt;}
.yd_c00075{bottom:330.906667pt;}
.y8_c00075{bottom:355.906667pt;}
.yc_c00075{bottom:359.706667pt;}
.yb_c00075{bottom:388.506667pt;}
.y7_c00075{bottom:394.333333pt;}
.ya_c00075{bottom:417.306667pt;}
.y6_c00075{bottom:432.733333pt;}
.y9_c00075{bottom:446.146667pt;}
.y5_c00075{bottom:478.813333pt;}
.y4_c00075{bottom:517.213333pt;}
.y3_c00075{bottom:586.013333pt;}
.y2_c00075{bottom:621.213333pt;}
.y1_c00075{bottom:656.413333pt;}
.h7_c00075{height:95.484375pt;}
.h8_c00075{height:95.611688pt;}
.h3_c00075{height:116.490937pt;}
.h2_c00075{height:119.922187pt;}
.h1_c00075{height:120.053250pt;}
.h6_c00075{height:127.312500pt;}
.h5_c00075{height:131.062500pt;}
.h4_c00075{height:131.193562pt;}
.h0_c00075{height:720.000000pt;}
.w0_c00075{width:960.000000pt;}
.x0_c00075{left:0.000000pt;}
.x4_c00075{left:57.600000pt;}
.x5_c00075{left:93.600000pt;}
.x1_c00075{left:241.853333pt;}
.x2_c00075{left:294.853333pt;}
.x3_c00075{left:480.000000pt;}
.x6_c00075{left:562.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85bdd874f7aa3ee65c2a842f.woff')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.202148;font-style:normal;font-weight:normal;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_b618463afb032da3ee9763ca.woff')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00076;src:url('chunks/assets/font_4854ec2ff7849298a29cb7df.woff')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00076;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00076;src:url('chunks/assets/font_9a8d2f5b4bd48ac9e32874bb.woff')format("woff");}.ff5_c00076{font-family:ff5_c00076;line-height:1.172852;font-style: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;}
.ls3_c00076{letter-spacing:0.000000px;}
.ls1_c00076{letter-spacing:0.072000px;}
.ls2_c00076{letter-spacing:0.360000px;}
.ls0_c00076{letter-spacing:97.560000px;}
.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;}
._3_c00076{margin-left:-3.926880px;}
._1_c00076{margin-left:-2.160000px;}
._2_c00076{margin-left:-1.041120px;}
._0_c00076{width:1.509120px;}
.fc2_c00076{color:transparent;}
.fc1_c00076{color:rgb(255,255,255);}
.fc0_c00076{color:rgb(0,0,0);}
.fs2_c00076{font-size:108.000000px;}
.fs0_c00076{font-size:149.760000px;}
.fs1_c00076{font-size:149.904000px;}
.y0_c00076{bottom:0.000000px;}
.y8_c00076{bottom:311.115000px;}
.y7_c00076{bottom:343.515000px;}
.y6_c00076{bottom:375.915000px;}
.y5_c00076{bottom:408.315000px;}
.y4_c00076{bottom:643.755000px;}
.y3_c00076{bottom:669.705000px;}
.y2_c00076{bottom:714.750000px;}
.y1_c00076{bottom:759.750000px;}
.h3_c00076{height:107.419922px;}
.h2_c00076{height:149.098852px;}
.h1_c00076{height:153.343125px;}
.h0_c00076{height:810.000000px;}
.w0_c00076{width:1080.000000px;}
.x0_c00076{left:0.000000px;}
.x3_c00076{left:50.148000px;}
.x4_c00076{left:67.104000px;}
.x5_c00076{left:100.944000px;}
.x2_c00076{left:402.270000px;}
.x1_c00076{left:540.000000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls3_c00076{letter-spacing:0.000000pt;}
.ls1_c00076{letter-spacing:0.064000pt;}
.ls2_c00076{letter-spacing:0.320000pt;}
.ls0_c00076{letter-spacing:86.720000pt;}
.ws0_c00076{word-spacing:0.000000pt;}
._3_c00076{margin-left:-3.490560pt;}
._1_c00076{margin-left:-1.920000pt;}
._2_c00076{margin-left:-0.925440pt;}
._0_c00076{width:1.341440pt;}
.fs2_c00076{font-size:96.000000pt;}
.fs0_c00076{font-size:133.120000pt;}
.fs1_c00076{font-size:133.248000pt;}
.y0_c00076{bottom:0.000000pt;}
.y8_c00076{bottom:276.546667pt;}
.y7_c00076{bottom:305.346667pt;}
.y6_c00076{bottom:334.146667pt;}
.y5_c00076{bottom:362.946667pt;}
.y4_c00076{bottom:572.226667pt;}
.y3_c00076{bottom:595.293333pt;}
.y2_c00076{bottom:635.333333pt;}
.y1_c00076{bottom:675.333333pt;}
.h3_c00076{height:95.484375pt;}
.h2_c00076{height:132.532312pt;}
.h1_c00076{height:136.305000pt;}
.h0_c00076{height:720.000000pt;}
.w0_c00076{width:960.000000pt;}
.x0_c00076{left:0.000000pt;}
.x3_c00076{left:44.576000pt;}
.x4_c00076{left:59.648000pt;}
.x5_c00076{left:89.728000pt;}
.x2_c00076{left:357.573333pt;}
.x1_c00076{left:480.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_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_b36a862316f3173bb676ac23.woff')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00077;src:url('chunks/assets/font_6ca2cf88002d63cda41f12d1.woff')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00077;src:url('chunks/assets/font_c974ab8936704bed14511683.woff')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00077;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00077;src:url('chunks/assets/font_c3bc829df7038fdfeab341bb.woff')format("woff");}.ff5_c00077{font-family:ff5_c00077;line-height:1.172852;font-style: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;}
.ls5_c00077{letter-spacing:0.000000px;}
.ls2_c00077{letter-spacing:0.072000px;}
.ls1_c00077{letter-spacing:0.216000px;}
.ls3_c00077{letter-spacing:0.792000px;}
.ls4_c00077{letter-spacing:124.149600px;}
.ls0_c00077{letter-spacing:124.200000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00077{word-spacing:-24.440544px;}
.ws0_c00077{word-spacing:-24.408000px;}
.ws2_c00077{word-spacing:0.000000px;}
._2_c00077{margin-left:-3.297600px;}
._0_c00077{margin-left:-2.242368px;}
._3_c00077{margin-left:-1.055232px;}
._1_c00077{width:1.055232px;}
.fc0_c00077{color:rgb(0,0,0);}
.fs4_c00077{font-size:108.000000px;}
.fs5_c00077{font-size:108.144000px;}
.fs1_c00077{font-size:131.760000px;}
.fs0_c00077{font-size:131.904000px;}
.fs3_c00077{font-size:144.000000px;}
.fs2_c00077{font-size:144.144000px;}
.y0_c00077{bottom:0.000000px;}
.y14_c00077{bottom:90.540000px;}
.y13_c00077{bottom:122.940000px;}
.y12_c00077{bottom:155.370000px;}
.y11_c00077{bottom:187.770000px;}
.y10_c00077{bottom:213.690000px;}
.y1e_c00077{bottom:215.850000px;}
.yf_c00077{bottom:246.090000px;}
.y1d_c00077{bottom:248.250000px;}
.ye_c00077{bottom:272.010000px;}
.y1c_c00077{bottom:280.650000px;}
.yd_c00077{bottom:297.975000px;}
.y1b_c00077{bottom:313.095000px;}
.yc_c00077{bottom:330.375000px;}
.y1a_c00077{bottom:345.495000px;}
.yb_c00077{bottom:362.775000px;}
.y19_c00077{bottom:377.895000px;}
.ya_c00077{bottom:388.695000px;}
.y18_c00077{bottom:410.295000px;}
.y9_c00077{bottom:421.095000px;}
.y17_c00077{bottom:436.215000px;}
.y8_c00077{bottom:453.525000px;}
.y16_c00077{bottom:468.645000px;}
.y7_c00077{bottom:479.445000px;}
.y15_c00077{bottom:503.205000px;}
.y6_c00077{bottom:511.845000px;}
.y5_c00077{bottom:546.405000px;}
.y4_c00077{bottom:589.650000px;}
.y3_c00077{bottom:659.265000px;}
.y2_c00077{bottom:698.865000px;}
.y1_c00077{bottom:738.465000px;}
.h6_c00077{height:107.419922px;}
.h9_c00077{height:107.563148px;}
.h7_c00077{height:110.583984px;}
.h8_c00077{height:110.731430px;}
.h3_c00077{height:131.052305px;}
.h2_c00077{height:134.912461px;}
.h1_c00077{height:135.059906px;}
.h5_c00077{height:147.445312px;}
.h4_c00077{height:147.592758px;}
.h0_c00077{height:810.000000px;}
.w0_c00077{width:1080.000000px;}
.x0_c00077{left:0.000000px;}
.x4_c00077{left:64.800000px;}
.x5_c00077{left:105.300000px;}
.x1_c00077{left:272.085000px;}
.x2_c00077{left:331.710000px;}
.x3_c00077{left:540.000000px;}
.x6_c00077{left:559.905000px;}
.x7_c00077{left:600.405000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls5_c00077{letter-spacing:0.000000pt;}
.ls2_c00077{letter-spacing:0.064000pt;}
.ls1_c00077{letter-spacing:0.192000pt;}
.ls3_c00077{letter-spacing:0.704000pt;}
.ls4_c00077{letter-spacing:110.355200pt;}
.ls0_c00077{letter-spacing:110.400000pt;}
.ws1_c00077{word-spacing:-21.724928pt;}
.ws0_c00077{word-spacing:-21.696000pt;}
.ws2_c00077{word-spacing:0.000000pt;}
._2_c00077{margin-left:-2.931200pt;}
._0_c00077{margin-left:-1.993216pt;}
._3_c00077{margin-left:-0.937984pt;}
._1_c00077{width:0.937984pt;}
.fs4_c00077{font-size:96.000000pt;}
.fs5_c00077{font-size:96.128000pt;}
.fs1_c00077{font-size:117.120000pt;}
.fs0_c00077{font-size:117.248000pt;}
.fs3_c00077{font-size:128.000000pt;}
.fs2_c00077{font-size:128.128000pt;}
.y0_c00077{bottom:0.000000pt;}
.y14_c00077{bottom:80.480000pt;}
.y13_c00077{bottom:109.280000pt;}
.y12_c00077{bottom:138.106667pt;}
.y11_c00077{bottom:166.906667pt;}
.y10_c00077{bottom:189.946667pt;}
.y1e_c00077{bottom:191.866667pt;}
.yf_c00077{bottom:218.746667pt;}
.y1d_c00077{bottom:220.666667pt;}
.ye_c00077{bottom:241.786667pt;}
.y1c_c00077{bottom:249.466667pt;}
.yd_c00077{bottom:264.866667pt;}
.y1b_c00077{bottom:278.306667pt;}
.yc_c00077{bottom:293.666667pt;}
.y1a_c00077{bottom:307.106667pt;}
.yb_c00077{bottom:322.466667pt;}
.y19_c00077{bottom:335.906667pt;}
.ya_c00077{bottom:345.506667pt;}
.y18_c00077{bottom:364.706667pt;}
.y9_c00077{bottom:374.306667pt;}
.y17_c00077{bottom:387.746667pt;}
.y8_c00077{bottom:403.133333pt;}
.y16_c00077{bottom:416.573333pt;}
.y7_c00077{bottom:426.173333pt;}
.y15_c00077{bottom:447.293333pt;}
.y6_c00077{bottom:454.973333pt;}
.y5_c00077{bottom:485.693333pt;}
.y4_c00077{bottom:524.133333pt;}
.y3_c00077{bottom:586.013333pt;}
.y2_c00077{bottom:621.213333pt;}
.y1_c00077{bottom:656.413333pt;}
.h6_c00077{height:95.484375pt;}
.h9_c00077{height:95.611688pt;}
.h7_c00077{height:98.296875pt;}
.h8_c00077{height:98.427937pt;}
.h3_c00077{height:116.490937pt;}
.h2_c00077{height:119.922187pt;}
.h1_c00077{height:120.053250pt;}
.h5_c00077{height:131.062500pt;}
.h4_c00077{height:131.193562pt;}
.h0_c00077{height:720.000000pt;}
.w0_c00077{width:960.000000pt;}
.x0_c00077{left:0.000000pt;}
.x4_c00077{left:57.600000pt;}
.x5_c00077{left:93.600000pt;}
.x1_c00077{left:241.853333pt;}
.x2_c00077{left:294.853333pt;}
.x3_c00077{left:480.000000pt;}
.x6_c00077{left:497.693333pt;}
.x7_c00077{left:533.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6117e688a318d9da5744454d.woff')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00078;src:url('chunks/assets/font_6907708ad27cbbacd6b6a996.woff')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00078;src:url('chunks/assets/font_3dc4d6d93bca7b65cb8620a9.woff')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_bb97c556e8568772dc93e9bf.woff')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00078;src:url('chunks/assets/font_7023e29485c9b275e1e33463.woff')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:1.172852;font-style: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);}
.m1_c00078{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls3_c00078{letter-spacing:0.000000px;}
.ls0_c00078{letter-spacing:119.853600px;}
.ls1_c00078{letter-spacing:119.904000px;}
.ls2_c00078{letter-spacing:128.484000px;}
.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:-21.641760px;}
.ws1_c00078{word-spacing:0.000000px;}
._4_c00078{margin-left:-9.213840px;}
._5_c00078{margin-left:-6.749280px;}
._0_c00078{margin-left:-3.310560px;}
._2_c00078{margin-left:-2.265120px;}
._1_c00078{margin-left:-1.045440px;}
._3_c00078{width:1.386720px;}
._6_c00078{width:3.265680px;}
.fc1_c00078{color:rgb(0,0,255);}
.fc0_c00078{color:rgb(0,0,0);}
.fs1_c00078{font-size:77.760000px;}
.fs4_c00078{font-size:95.760000px;}
.fs2_c00078{font-size:120.240000px;}
.fs3_c00078{font-size:120.384000px;}
.fs0_c00078{font-size:174.240000px;}
.y0_c00078{bottom:0.000000px;}
.y12_c00078{bottom:175.110000px;}
.y11_c00078{bottom:203.940000px;}
.y10_c00078{bottom:232.740000px;}
.yf_c00078{bottom:260.460000px;}
.ye_c00078{bottom:286.380000px;}
.yd_c00078{bottom:322.380000px;}
.yc_c00078{bottom:351.210000px;}
.yb_c00078{bottom:387.210000px;}
.ya_c00078{bottom:423.210000px;}
.y9_c00078{bottom:452.010000px;}
.y8_c00078{bottom:480.810000px;}
.y7_c00078{bottom:516.855000px;}
.y6_c00078{bottom:552.855000px;}
.y5_c00078{bottom:581.655000px;}
.y4_c00078{bottom:615.135000px;}
.y3_c00078{bottom:643.245000px;}
.y2_c00078{bottom:695.445000px;}
.y1_c00078{bottom:747.690000px;}
.h2_c00078{height:77.342344px;}
.h5_c00078{height:95.245664px;}
.h3_c00078{height:123.116836px;}
.h4_c00078{height:123.264281px;}
.h1_c00078{height:178.408828px;}
.h0_c00078{height:810.000000px;}
.w0_c00078{width:1080.000000px;}
.x0_c00078{left:0.000000px;}
.x6_c00078{left:125.568000px;}
.x7_c00078{left:166.065000px;}
.x4_c00078{left:174.345000px;}
.x8_c00078{left:299.130000px;}
.x5_c00078{left:333.330000px;}
.x2_c00078{left:374.550000px;}
.x9_c00078{left:446.040000px;}
.xa_c00078{left:460.080000px;}
.x1_c00078{left:540.000000px;}
.x3_c00078{left:561.240000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls3_c00078{letter-spacing:0.000000pt;}
.ls0_c00078{letter-spacing:106.536533pt;}
.ls1_c00078{letter-spacing:106.581333pt;}
.ls2_c00078{letter-spacing:114.208000pt;}
.ws0_c00078{word-spacing:-19.237120pt;}
.ws1_c00078{word-spacing:0.000000pt;}
._4_c00078{margin-left:-8.190080pt;}
._5_c00078{margin-left:-5.999360pt;}
._0_c00078{margin-left:-2.942720pt;}
._2_c00078{margin-left:-2.013440pt;}
._1_c00078{margin-left:-0.929280pt;}
._3_c00078{width:1.232640pt;}
._6_c00078{width:2.902827pt;}
.fs1_c00078{font-size:69.120000pt;}
.fs4_c00078{font-size:85.120000pt;}
.fs2_c00078{font-size:106.880000pt;}
.fs3_c00078{font-size:107.008000pt;}
.fs0_c00078{font-size:154.880000pt;}
.y0_c00078{bottom:0.000000pt;}
.y12_c00078{bottom:155.653333pt;}
.y11_c00078{bottom:181.280000pt;}
.y10_c00078{bottom:206.880000pt;}
.yf_c00078{bottom:231.520000pt;}
.ye_c00078{bottom:254.560000pt;}
.yd_c00078{bottom:286.560000pt;}
.yc_c00078{bottom:312.186667pt;}
.yb_c00078{bottom:344.186667pt;}
.ya_c00078{bottom:376.186667pt;}
.y9_c00078{bottom:401.786667pt;}
.y8_c00078{bottom:427.386667pt;}
.y7_c00078{bottom:459.426667pt;}
.y6_c00078{bottom:491.426667pt;}
.y5_c00078{bottom:517.026667pt;}
.y4_c00078{bottom:546.786667pt;}
.y3_c00078{bottom:571.773333pt;}
.y2_c00078{bottom:618.173333pt;}
.y1_c00078{bottom:664.613333pt;}
.h2_c00078{height:68.748750pt;}
.h5_c00078{height:84.662813pt;}
.h3_c00078{height:109.437187pt;}
.h4_c00078{height:109.568250pt;}
.h1_c00078{height:158.585625pt;}
.h0_c00078{height:720.000000pt;}
.w0_c00078{width:960.000000pt;}
.x0_c00078{left:0.000000pt;}
.x6_c00078{left:111.616000pt;}
.x7_c00078{left:147.613333pt;}
.x4_c00078{left:154.973333pt;}
.x8_c00078{left:265.893333pt;}
.x5_c00078{left:296.293333pt;}
.x2_c00078{left:332.933333pt;}
.x9_c00078{left:396.480000pt;}
.xa_c00078{left:408.960000pt;}
.x1_c00078{left:480.000000pt;}
.x3_c00078{left:498.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e3b5bc6945ae609dc07f9c44.woff')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.130371;font-style:normal;font-weight:normal;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_e71a9a4bd91f1444ee4ca32e.woff')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00079;src:url('chunks/assets/font_727c9c69f770fe786071959a.woff')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00079;src:url('chunks/assets/font_1ba5dfc984448d56d5bd7cef.woff')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls0_c00079{letter-spacing:0.000000px;}
.ls1_c00079{letter-spacing:0.216000px;}
.sc__c00079{text-shadow:none;}
.sc1_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00079{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc1_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00079{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00079{word-spacing:0.000000px;}
._5_c00079{margin-left:-14.400000px;}
._4_c00079{margin-left:-12.967200px;}
._2_c00079{margin-left:-6.624000px;}
._3_c00079{margin-left:-4.320000px;}
._1_c00079{margin-left:-3.168000px;}
._0_c00079{margin-left:-1.440000px;}
.fc1_c00079{color:rgb(137,137,137);}
.fc0_c00079{color:rgb(0,0,0);}
.fs4_c00079{font-size:72.000000px;}
.fs2_c00079{font-size:144.000000px;}
.fs3_c00079{font-size:144.144000px;}
.fs0_c00079{font-size:288.000000px;}
.fs1_c00079{font-size:288.144000px;}
.y0_c00079{bottom:0.000000px;}
.y5_c00079{bottom:31.392000px;}
.y4_c00079{bottom:241.890000px;}
.y3_c00079{bottom:295.710000px;}
.y2_c00079{bottom:419.835000px;}
.y1_c00079{bottom:497.595000px;}
.h5_c00079{height:71.613281px;}
.h3_c00079{height:143.226562px;}
.h4_c00079{height:143.369789px;}
.h1_c00079{height:274.218750px;}
.h2_c00079{height:274.355859px;}
.h0_c00079{height:810.000000px;}
.w1_c00079{width:1439.999979px;}
.w0_c00079{width:1440.000000px;}
.x0_c00079{left:0.000000px;}
.x1_c00079{left:246.344979px;}
.x2_c00079{left:385.169979px;}
.x4_c00079{left:520.529979px;}
.x3_c00079{left:546.269979px;}
.x5_c00079{left:669.599979px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ls1_c00079{letter-spacing:0.192000pt;}
.ws0_c00079{word-spacing:0.000000pt;}
._5_c00079{margin-left:-12.800000pt;}
._4_c00079{margin-left:-11.526400pt;}
._2_c00079{margin-left:-5.888000pt;}
._3_c00079{margin-left:-3.840000pt;}
._1_c00079{margin-left:-2.816000pt;}
._0_c00079{margin-left:-1.280000pt;}
.fs4_c00079{font-size:64.000000pt;}
.fs2_c00079{font-size:128.000000pt;}
.fs3_c00079{font-size:128.128000pt;}
.fs0_c00079{font-size:256.000000pt;}
.fs1_c00079{font-size:256.128000pt;}
.y0_c00079{bottom:0.000000pt;}
.y5_c00079{bottom:27.904000pt;}
.y4_c00079{bottom:215.013333pt;}
.y3_c00079{bottom:262.853333pt;}
.y2_c00079{bottom:373.186667pt;}
.y1_c00079{bottom:442.306667pt;}
.h5_c00079{height:63.656250pt;}
.h3_c00079{height:127.312500pt;}
.h4_c00079{height:127.439813pt;}
.h1_c00079{height:243.750000pt;}
.h2_c00079{height:243.871875pt;}
.h0_c00079{height:720.000000pt;}
.w1_c00079{width:1279.999981pt;}
.w0_c00079{width:1280.000000pt;}
.x0_c00079{left:0.000000pt;}
.x1_c00079{left:218.973314pt;}
.x2_c00079{left:342.373314pt;}
.x4_c00079{left:462.693314pt;}
.x3_c00079{left:485.573314pt;}
.x5_c00079{left:595.199981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5fa682aa491c6adcb5c64200.woff')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_a33a5b093d2c63e070f8fc92.woff')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00080;src:url('chunks/assets/font_1ba5dfc984448d56d5bd7cef.woff')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.172852;font-style: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;}
.ls0_c00080{letter-spacing:0.000000px;}
.ls1_c00080{letter-spacing:0.216000px;}
.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:0.000000px;}
._0_c00080{margin-left:-8.724672px;}
._1_c00080{margin-left:-3.172608px;}
._3_c00080{margin-left:-1.440000px;}
._2_c00080{width:1.321920px;}
.fc1_c00080{color:rgb(137,137,137);}
.fc0_c00080{color:rgb(0,0,0);}
.fs1_c00080{font-size:72.000000px;}
.fs0_c00080{font-size:264.384000px;}
.y0_c00080{bottom:0.000000px;}
.y2_c00080{bottom:31.392000px;}
.y1_c00080{bottom:670.395000px;}
.h2_c00080{height:71.613281px;}
.h1_c00080{height:251.732813px;}
.h0_c00080{height:810.000000px;}
.w1_c00080{width:1439.999979px;}
.w0_c00080{width:1440.000000px;}
.x0_c00080{left:0.000000px;}
.x1_c00080{left:109.799979px;}
.x2_c00080{left:669.599979px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ls1_c00080{letter-spacing:0.192000pt;}
.ws0_c00080{word-spacing:0.000000pt;}
._0_c00080{margin-left:-7.755264pt;}
._1_c00080{margin-left:-2.820096pt;}
._3_c00080{margin-left:-1.280000pt;}
._2_c00080{width:1.175040pt;}
.fs1_c00080{font-size:64.000000pt;}
.fs0_c00080{font-size:235.008000pt;}
.y0_c00080{bottom:0.000000pt;}
.y2_c00080{bottom:27.904000pt;}
.y1_c00080{bottom:595.906667pt;}
.h2_c00080{height:63.656250pt;}
.h1_c00080{height:223.762500pt;}
.h0_c00080{height:720.000000pt;}
.w1_c00080{width:1279.999981pt;}
.w0_c00080{width:1280.000000pt;}
.x0_c00080{left:0.000000pt;}
.x1_c00080{left:97.599981pt;}
.x2_c00080{left:595.199981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d26df314832d4d976cdca4bc.woff')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00081;src:url('chunks/assets/font_b611783065ce1242fcc14d41.woff')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00081;src:url('chunks/assets/font_1ba5dfc984448d56d5bd7cef.woff')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00081;src:url('chunks/assets/font_ce0d94cdb6ee6ea39f1045fb.woff')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:0.739746;font-style: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;}
.ls2_c00081{letter-spacing:0.000000px;}
.ls3_c00081{letter-spacing:0.216000px;}
.ls1_c00081{letter-spacing:49.377600px;}
.ls0_c00081{letter-spacing:49.428000px;}
.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:-59.750784px;}
.ws1_c00081{word-spacing:-37.913760px;}
.ws2_c00081{word-spacing:0.000000px;}
._3_c00081{margin-left:-9.738432px;}
._0_c00081{margin-left:-5.023296px;}
._2_c00081{margin-left:-3.187440px;}
._1_c00081{margin-left:-1.440000px;}
._4_c00081{width:1.332576px;}
.fc1_c00081{color:rgb(137,137,137);}
.fc0_c00081{color:rgb(0,0,0);}
.fs1_c00081{font-size:72.000000px;}
.fs2_c00081{font-size:167.760000px;}
.fs3_c00081{font-size:167.904000px;}
.fs0_c00081{font-size:264.384000px;}
.y0_c00081{bottom:0.000000px;}
.y2_c00081{bottom:31.392000px;}
.yb_c00081{bottom:115.956000px;}
.ya_c00081{bottom:171.390000px;}
.y9_c00081{bottom:226.695000px;}
.y8_c00081{bottom:281.955000px;}
.y7_c00081{bottom:337.395000px;}
.y6_c00081{bottom:392.685000px;}
.y5_c00081{bottom:447.945000px;}
.y4_c00081{bottom:503.385000px;}
.y3_c00081{bottom:558.690000px;}
.y1_c00081{bottom:670.395000px;}
.h2_c00081{height:71.613281px;}
.h3_c00081{height:166.858945px;}
.h4_c00081{height:167.002172px;}
.h1_c00081{height:251.732813px;}
.h0_c00081{height:810.000000px;}
.w1_c00081{width:1439.999979px;}
.w0_c00081{width:1440.000000px;}
.x0_c00081{left:0.000000px;}
.x1_c00081{left:109.799979px;}
.x2_c00081{left:669.599979px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls2_c00081{letter-spacing:0.000000pt;}
.ls3_c00081{letter-spacing:0.192000pt;}
.ls1_c00081{letter-spacing:43.891200pt;}
.ls0_c00081{letter-spacing:43.936000pt;}
.ws0_c00081{word-spacing:-53.111808pt;}
.ws1_c00081{word-spacing:-33.701120pt;}
.ws2_c00081{word-spacing:0.000000pt;}
._3_c00081{margin-left:-8.656384pt;}
._0_c00081{margin-left:-4.465152pt;}
._2_c00081{margin-left:-2.833280pt;}
._1_c00081{margin-left:-1.280000pt;}
._4_c00081{width:1.184512pt;}
.fs1_c00081{font-size:64.000000pt;}
.fs2_c00081{font-size:149.120000pt;}
.fs3_c00081{font-size:149.248000pt;}
.fs0_c00081{font-size:235.008000pt;}
.y0_c00081{bottom:0.000000pt;}
.y2_c00081{bottom:27.904000pt;}
.yb_c00081{bottom:103.072000pt;}
.ya_c00081{bottom:152.346667pt;}
.y9_c00081{bottom:201.506667pt;}
.y8_c00081{bottom:250.626667pt;}
.y7_c00081{bottom:299.906667pt;}
.y6_c00081{bottom:349.053333pt;}
.y5_c00081{bottom:398.173333pt;}
.y4_c00081{bottom:447.453333pt;}
.y3_c00081{bottom:496.613333pt;}
.y1_c00081{bottom:595.906667pt;}
.h2_c00081{height:63.656250pt;}
.h3_c00081{height:148.319063pt;}
.h4_c00081{height:148.446375pt;}
.h1_c00081{height:223.762500pt;}
.h0_c00081{height:720.000000pt;}
.w1_c00081{width:1279.999981pt;}
.w0_c00081{width:1280.000000pt;}
.x0_c00081{left:0.000000pt;}
.x1_c00081{left:97.599981pt;}
.x2_c00081{left:595.199981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c1ec6f2873a1c8758e9e752.woff')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00082;src:url('chunks/assets/font_39b5b3fb4aaa6bb32c13c2f3.woff')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00082;src:url('chunks/assets/font_0d9c947d63e87c8b6cb478e2.woff')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00082;src:url('chunks/assets/font_8379a84dc1593532193a30f5.woff')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00082;src:url('chunks/assets/font_484a796b97f934f1a2732757.woff')format("woff");}.ff5_c00082{font-family:ff5_c00082;line-height:1.202148;font-style: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;}
.ls1_c00082{letter-spacing:0.216000px;}
.ls2_c00082{letter-spacing:0.238200px;}
.ls3_c00082{letter-spacing:0.382200px;}
.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;}
}
.ws3_c00082{word-spacing:-27.206784px;}
.ws0_c00082{word-spacing:-27.174240px;}
.ws2_c00082{word-spacing:-0.144144px;}
.ws1_c00082{word-spacing:-0.144000px;}
.ws4_c00082{word-spacing:0.000000px;}
._6_c00082{margin-left:-6.922368px;}
._4_c00082{margin-left:-5.552064px;}
._0_c00082{margin-left:-4.230144px;}
._1_c00082{margin-left:-3.172608px;}
._5_c00082{margin-left:-2.112912px;}
._2_c00082{margin-left:-1.057536px;}
._3_c00082{width:1.321920px;}
.fc2_c00082{color:rgb(255,0,0);}
.fc3_c00082{color:rgb(0,176,80);}
.fc1_c00082{color:rgb(137,137,137);}
.fc0_c00082{color:rgb(0,0,0);}
.fs1_c00082{font-size:72.000000px;}
.fs4_c00082{font-size:84.240000px;}
.fs3_c00082{font-size:120.240000px;}
.fs7_c00082{font-size:120.384000px;}
.fs5_c00082{font-size:144.000000px;}
.fs6_c00082{font-size:144.144000px;}
.fs2_c00082{font-size:192.240000px;}
.fs0_c00082{font-size:264.384000px;}
.y0_c00082{bottom:0.000000px;}
.y1e_c00082{bottom:12.960000px;}
.y2_c00082{bottom:31.392000px;}
.y20_c00082{bottom:45.360000px;}
.y1c_c00082{bottom:58.860000px;}
.y17_c00082{bottom:80.460000px;}
.y21_c00082{bottom:80.892000px;}
.y1a_c00082{bottom:80.925000px;}
.y14_c00082{bottom:80.970000px;}
.yd_c00082{bottom:81.000000px;}
.y19_c00082{bottom:112.860000px;}
.y1f_c00082{bottom:115.812000px;}
.y18_c00082{bottom:115.845000px;}
.y12_c00082{bottom:115.890000px;}
.yb_c00082{bottom:115.920000px;}
.y5_c00082{bottom:115.950000px;}
.y15_c00082{bottom:126.360000px;}
.y22_c00082{bottom:130.572000px;}
.y1d_c00082{bottom:139.245000px;}
.y16_c00082{bottom:139.290000px;}
.y10_c00082{bottom:139.320000px;}
.y11_c00082{bottom:147.960000px;}
.y6_c00082{bottom:174.960000px;}
.y13_c00082{bottom:180.360000px;}
.yf_c00082{bottom:193.860000px;}
.y1b_c00082{bottom:198.105000px;}
.ya_c00082{bottom:215.460000px;}
.y9_c00082{bottom:223.950000px;}
.yc_c00082{bottom:247.860000px;}
.y7_c00082{bottom:259.950000px;}
.y4_c00082{bottom:282.960000px;}
.ye_c00082{bottom:333.180000px;}
.y8_c00082{bottom:434.910000px;}
.y3_c00082{bottom:476.670000px;}
.y1_c00082{bottom:670.395000px;}
.h2_c00082{height:71.613281px;}
.h8_c00082{height:83.787539px;}
.h5_c00082{height:123.116836px;}
.hc_c00082{height:123.264281px;}
.h9_c00082{height:147.445312px;}
.hb_c00082{height:147.592758px;}
.h7_c00082{height:176.580000px;}
.h3_c00082{height:196.839492px;}
.h1_c00082{height:251.732813px;}
.h4_c00082{height:252.180000px;}
.hd_c00082{height:293.940000px;}
.ha_c00082{height:302.580000px;}
.h6_c00082{height:504.180000px;}
.h0_c00082{height:810.000000px;}
.w3_c00082{width:99.000000px;}
.w2_c00082{width:99.180000px;}
.w5_c00082{width:123.120000px;}
.w4_c00082{width:147.060000px;}
.w1_c00082{width:1439.999979px;}
.w0_c00082{width:1440.000000px;}
.x0_c00082{left:0.000000px;}
.x10_c00082{left:1.155000px;}
.x13_c00082{left:14.190000px;}
.x15_c00082{left:29.805000px;}
.x5_c00082{left:37.050000px;}
.x12_c00082{left:81.180000px;}
.x1_c00082{left:109.799979px;}
.x4_c00082{left:204.120000px;}
.x6_c00082{left:303.120000px;}
.x7_c00082{left:402.120000px;}
.x8_c00082{left:501.120000px;}
.x3_c00082{left:519.989979px;}
.x9_c00082{left:600.120000px;}
.x2_c00082{left:669.599979px;}
.xa_c00082{left:699.120000px;}
.xb_c00082{left:797.940000px;}
.xc_c00082{left:896.940000px;}
.xd_c00082{left:995.940000px;}
.xe_c00082{left:1094.940000px;}
.xf_c00082{left:1193.940000px;}
.x14_c00082{left:1220.834979px;}
.x11_c00082{left:1276.454979px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ls1_c00082{letter-spacing:0.192000pt;}
.ls2_c00082{letter-spacing:0.211733pt;}
.ls3_c00082{letter-spacing:0.339733pt;}
.ws3_c00082{word-spacing:-24.183808pt;}
.ws0_c00082{word-spacing:-24.154880pt;}
.ws2_c00082{word-spacing:-0.128128pt;}
.ws1_c00082{word-spacing:-0.128000pt;}
.ws4_c00082{word-spacing:0.000000pt;}
._6_c00082{margin-left:-6.153216pt;}
._4_c00082{margin-left:-4.935168pt;}
._0_c00082{margin-left:-3.760128pt;}
._1_c00082{margin-left:-2.820096pt;}
._5_c00082{margin-left:-1.878144pt;}
._2_c00082{margin-left:-0.940032pt;}
._3_c00082{width:1.175040pt;}
.fs1_c00082{font-size:64.000000pt;}
.fs4_c00082{font-size:74.880000pt;}
.fs3_c00082{font-size:106.880000pt;}
.fs7_c00082{font-size:107.008000pt;}
.fs5_c00082{font-size:128.000000pt;}
.fs6_c00082{font-size:128.128000pt;}
.fs2_c00082{font-size:170.880000pt;}
.fs0_c00082{font-size:235.008000pt;}
.y0_c00082{bottom:0.000000pt;}
.y1e_c00082{bottom:11.520000pt;}
.y2_c00082{bottom:27.904000pt;}
.y20_c00082{bottom:40.320000pt;}
.y1c_c00082{bottom:52.320000pt;}
.y17_c00082{bottom:71.520000pt;}
.y21_c00082{bottom:71.904000pt;}
.y1a_c00082{bottom:71.933333pt;}
.y14_c00082{bottom:71.973333pt;}
.yd_c00082{bottom:72.000000pt;}
.y19_c00082{bottom:100.320000pt;}
.y1f_c00082{bottom:102.944000pt;}
.y18_c00082{bottom:102.973333pt;}
.y12_c00082{bottom:103.013333pt;}
.yb_c00082{bottom:103.040000pt;}
.y5_c00082{bottom:103.066667pt;}
.y15_c00082{bottom:112.320000pt;}
.y22_c00082{bottom:116.064000pt;}
.y1d_c00082{bottom:123.773333pt;}
.y16_c00082{bottom:123.813333pt;}
.y10_c00082{bottom:123.840000pt;}
.y11_c00082{bottom:131.520000pt;}
.y6_c00082{bottom:155.520000pt;}
.y13_c00082{bottom:160.320000pt;}
.yf_c00082{bottom:172.320000pt;}
.y1b_c00082{bottom:176.093333pt;}
.ya_c00082{bottom:191.520000pt;}
.y9_c00082{bottom:199.066667pt;}
.yc_c00082{bottom:220.320000pt;}
.y7_c00082{bottom:231.066667pt;}
.y4_c00082{bottom:251.520000pt;}
.ye_c00082{bottom:296.160000pt;}
.y8_c00082{bottom:386.586667pt;}
.y3_c00082{bottom:423.706667pt;}
.y1_c00082{bottom:595.906667pt;}
.h2_c00082{height:63.656250pt;}
.h8_c00082{height:74.477812pt;}
.h5_c00082{height:109.437187pt;}
.hc_c00082{height:109.568250pt;}
.h9_c00082{height:131.062500pt;}
.hb_c00082{height:131.193562pt;}
.h7_c00082{height:156.960000pt;}
.h3_c00082{height:174.968437pt;}
.h1_c00082{height:223.762500pt;}
.h4_c00082{height:224.160000pt;}
.hd_c00082{height:261.280000pt;}
.ha_c00082{height:268.960000pt;}
.h6_c00082{height:448.160000pt;}
.h0_c00082{height:720.000000pt;}
.w3_c00082{width:88.000000pt;}
.w2_c00082{width:88.160000pt;}
.w5_c00082{width:109.440000pt;}
.w4_c00082{width:130.720000pt;}
.w1_c00082{width:1279.999981pt;}
.w0_c00082{width:1280.000000pt;}
.x0_c00082{left:0.000000pt;}
.x10_c00082{left:1.026667pt;}
.x13_c00082{left:12.613333pt;}
.x15_c00082{left:26.493333pt;}
.x5_c00082{left:32.933333pt;}
.x12_c00082{left:72.160000pt;}
.x1_c00082{left:97.599981pt;}
.x4_c00082{left:181.440000pt;}
.x6_c00082{left:269.440000pt;}
.x7_c00082{left:357.440000pt;}
.x8_c00082{left:445.440000pt;}
.x3_c00082{left:462.213314pt;}
.x9_c00082{left:533.440000pt;}
.x2_c00082{left:595.199981pt;}
.xa_c00082{left:621.440000pt;}
.xb_c00082{left:709.280000pt;}
.xc_c00082{left:797.280000pt;}
.xd_c00082{left:885.280000pt;}
.xe_c00082{left:973.280000pt;}
.xf_c00082{left:1061.280000pt;}
.x14_c00082{left:1085.186648pt;}
.x11_c00082{left:1134.626648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4d9b9f7d3e04d92440124df.woff')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00083;src:url('chunks/assets/font_6ae7faa3b5ce71b24b71c792.woff')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00083;src:url('chunks/assets/font_0d9c947d63e87c8b6cb478e2.woff')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00083;src:url('chunks/assets/font_9e3d353a75749c38ae0a9753.woff')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00083;src:url('chunks/assets/font_4148d760d20277add5f408df.woff')format("woff");}.ff5_c00083{font-family:ff5_c00083;line-height:1.202148;font-style: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;}
.ls4_c00083{letter-spacing:-0.229800px;}
.ls5_c00083{letter-spacing:-0.085800px;}
.ls0_c00083{letter-spacing:0.000000px;}
.ls1_c00083{letter-spacing:0.216000px;}
.ls2_c00083{letter-spacing:0.238200px;}
.ls3_c00083{letter-spacing:0.382200px;}
.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;}
}
.ws2_c00083{word-spacing:-27.206784px;}
.ws0_c00083{word-spacing:-27.174240px;}
.ws3_c00083{word-spacing:-0.144144px;}
.ws1_c00083{word-spacing:-0.144000px;}
.ws4_c00083{word-spacing:0.000000px;}
._0_c00083{margin-left:-5.023296px;}
._3_c00083{margin-left:-3.756672px;}
._1_c00083{margin-left:-2.379456px;}
._4_c00083{margin-left:-1.293408px;}
._2_c00083{width:1.227456px;}
.fc2_c00083{color:rgb(255,0,0);}
.fc3_c00083{color:rgb(0,176,80);}
.fc1_c00083{color:rgb(137,137,137);}
.fc0_c00083{color:rgb(0,0,0);}
.fs1_c00083{font-size:72.000000px;}
.fs4_c00083{font-size:84.240000px;}
.fs3_c00083{font-size:120.240000px;}
.fs6_c00083{font-size:120.384000px;}
.fs5_c00083{font-size:144.000000px;}
.fs7_c00083{font-size:144.144000px;}
.fs2_c00083{font-size:192.240000px;}
.fs0_c00083{font-size:264.384000px;}
.y0_c00083{bottom:0.000000px;}
.y2_c00083{bottom:31.392000px;}
.y1f_c00083{bottom:64.620000px;}
.y1e_c00083{bottom:80.925000px;}
.y19_c00083{bottom:80.970000px;}
.y13_c00083{bottom:81.000000px;}
.yd_c00083{bottom:81.030000px;}
.y1c_c00083{bottom:86.220000px;}
.y5_c00083{bottom:115.845000px;}
.y17_c00083{bottom:115.890000px;}
.y11_c00083{bottom:115.920000px;}
.yb_c00083{bottom:115.950000px;}
.y1d_c00083{bottom:118.620000px;}
.y1a_c00083{bottom:123.480000px;}
.y20_c00083{bottom:139.245000px;}
.y1b_c00083{bottom:139.290000px;}
.y15_c00083{bottom:139.320000px;}
.yf_c00083{bottom:139.350000px;}
.y16_c00083{bottom:145.080000px;}
.y18_c00083{bottom:177.480000px;}
.y14_c00083{bottom:182.340000px;}
.y10_c00083{bottom:203.940000px;}
.y6_c00083{bottom:213.840000px;}
.y9_c00083{bottom:223.845000px;}
.y12_c00083{bottom:236.340000px;}
.ye_c00083{bottom:241.200000px;}
.y7_c00083{bottom:259.845000px;}
.ya_c00083{bottom:262.800000px;}
.yc_c00083{bottom:295.200000px;}
.y4_c00083{bottom:321.840000px;}
.y8_c00083{bottom:473.685000px;}
.y3_c00083{bottom:515.445000px;}
.y1_c00083{bottom:670.395000px;}
.h2_c00083{height:71.613281px;}
.h8_c00083{height:83.787539px;}
.h5_c00083{height:123.116836px;}
.hb_c00083{height:123.264281px;}
.ha_c00083{height:147.445312px;}
.hc_c00083{height:147.592758px;}
.h7_c00083{height:176.580000px;}
.h3_c00083{height:196.839492px;}
.h1_c00083{height:251.732813px;}
.h4_c00083{height:252.180000px;}
.h9_c00083{height:302.580000px;}
.h6_c00083{height:504.180000px;}
.h0_c00083{height:810.000000px;}
.w2_c00083{width:92.340000px;}
.w3_c00083{width:92.520000px;}
.w5_c00083{width:114.660000px;}
.w4_c00083{width:136.980000px;}
.w1_c00083{width:1439.999979px;}
.w0_c00083{width:1440.000000px;}
.x0_c00083{left:0.000000px;}
.x10_c00083{left:1.110000px;}
.x17_c00083{left:9.570000px;}
.x14_c00083{left:16.770000px;}
.x18_c00083{left:27.750000px;}
.x5_c00083{left:30.135000px;}
.x13_c00083{left:44.175000px;}
.x16_c00083{left:59.655000px;}
.x15_c00083{left:70.095000px;}
.x12_c00083{left:99.000000px;}
.x1_c00083{left:109.799979px;}
.x4_c00083{left:213.480000px;}
.x6_c00083{left:305.640000px;}
.x7_c00083{left:397.800000px;}
.x3_c00083{left:427.424979px;}
.x8_c00083{left:489.960000px;}
.x9_c00083{left:582.120000px;}
.x2_c00083{left:669.599979px;}
.xa_c00083{left:674.280000px;}
.xb_c00083{left:766.440000px;}
.xc_c00083{left:858.600000px;}
.xd_c00083{left:950.940000px;}
.xe_c00083{left:1043.100000px;}
.xf_c00083{left:1135.260000px;}
.x11_c00083{left:1217.729979px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls4_c00083{letter-spacing:-0.204267pt;}
.ls5_c00083{letter-spacing:-0.076267pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ls1_c00083{letter-spacing:0.192000pt;}
.ls2_c00083{letter-spacing:0.211733pt;}
.ls3_c00083{letter-spacing:0.339733pt;}
.ws2_c00083{word-spacing:-24.183808pt;}
.ws0_c00083{word-spacing:-24.154880pt;}
.ws3_c00083{word-spacing:-0.128128pt;}
.ws1_c00083{word-spacing:-0.128000pt;}
.ws4_c00083{word-spacing:0.000000pt;}
._0_c00083{margin-left:-4.465152pt;}
._3_c00083{margin-left:-3.339264pt;}
._1_c00083{margin-left:-2.115072pt;}
._4_c00083{margin-left:-1.149696pt;}
._2_c00083{width:1.091072pt;}
.fs1_c00083{font-size:64.000000pt;}
.fs4_c00083{font-size:74.880000pt;}
.fs3_c00083{font-size:106.880000pt;}
.fs6_c00083{font-size:107.008000pt;}
.fs5_c00083{font-size:128.000000pt;}
.fs7_c00083{font-size:128.128000pt;}
.fs2_c00083{font-size:170.880000pt;}
.fs0_c00083{font-size:235.008000pt;}
.y0_c00083{bottom:0.000000pt;}
.y2_c00083{bottom:27.904000pt;}
.y1f_c00083{bottom:57.440000pt;}
.y1e_c00083{bottom:71.933333pt;}
.y19_c00083{bottom:71.973333pt;}
.y13_c00083{bottom:72.000000pt;}
.yd_c00083{bottom:72.026667pt;}
.y1c_c00083{bottom:76.640000pt;}
.y5_c00083{bottom:102.973333pt;}
.y17_c00083{bottom:103.013333pt;}
.y11_c00083{bottom:103.040000pt;}
.yb_c00083{bottom:103.066667pt;}
.y1d_c00083{bottom:105.440000pt;}
.y1a_c00083{bottom:109.760000pt;}
.y20_c00083{bottom:123.773333pt;}
.y1b_c00083{bottom:123.813333pt;}
.y15_c00083{bottom:123.840000pt;}
.yf_c00083{bottom:123.866667pt;}
.y16_c00083{bottom:128.960000pt;}
.y18_c00083{bottom:157.760000pt;}
.y14_c00083{bottom:162.080000pt;}
.y10_c00083{bottom:181.280000pt;}
.y6_c00083{bottom:190.080000pt;}
.y9_c00083{bottom:198.973333pt;}
.y12_c00083{bottom:210.080000pt;}
.ye_c00083{bottom:214.400000pt;}
.y7_c00083{bottom:230.973333pt;}
.ya_c00083{bottom:233.600000pt;}
.yc_c00083{bottom:262.400000pt;}
.y4_c00083{bottom:286.080000pt;}
.y8_c00083{bottom:421.053333pt;}
.y3_c00083{bottom:458.173333pt;}
.y1_c00083{bottom:595.906667pt;}
.h2_c00083{height:63.656250pt;}
.h8_c00083{height:74.477812pt;}
.h5_c00083{height:109.437187pt;}
.hb_c00083{height:109.568250pt;}
.ha_c00083{height:131.062500pt;}
.hc_c00083{height:131.193562pt;}
.h7_c00083{height:156.960000pt;}
.h3_c00083{height:174.968437pt;}
.h1_c00083{height:223.762500pt;}
.h4_c00083{height:224.160000pt;}
.h9_c00083{height:268.960000pt;}
.h6_c00083{height:448.160000pt;}
.h0_c00083{height:720.000000pt;}
.w2_c00083{width:82.080000pt;}
.w3_c00083{width:82.240000pt;}
.w5_c00083{width:101.920000pt;}
.w4_c00083{width:121.760000pt;}
.w1_c00083{width:1279.999981pt;}
.w0_c00083{width:1280.000000pt;}
.x0_c00083{left:0.000000pt;}
.x10_c00083{left:0.986667pt;}
.x17_c00083{left:8.506667pt;}
.x14_c00083{left:14.906667pt;}
.x18_c00083{left:24.666667pt;}
.x5_c00083{left:26.786667pt;}
.x13_c00083{left:39.266667pt;}
.x16_c00083{left:53.026667pt;}
.x15_c00083{left:62.306667pt;}
.x12_c00083{left:88.000000pt;}
.x1_c00083{left:97.599981pt;}
.x4_c00083{left:189.760000pt;}
.x6_c00083{left:271.680000pt;}
.x7_c00083{left:353.600000pt;}
.x3_c00083{left:379.933314pt;}
.x8_c00083{left:435.520000pt;}
.x9_c00083{left:517.440000pt;}
.x2_c00083{left:595.199981pt;}
.xa_c00083{left:599.360000pt;}
.xb_c00083{left:681.280000pt;}
.xc_c00083{left:763.200000pt;}
.xd_c00083{left:845.280000pt;}
.xe_c00083{left:927.200000pt;}
.xf_c00083{left:1009.120000pt;}
.x11_c00083{left:1082.426648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b61d178311da258ce841322.woff')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00084;src:url('chunks/assets/font_e88e8969b56e82a14aa76d0f.woff')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00084;src:url('chunks/assets/font_0d9c947d63e87c8b6cb478e2.woff')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00084;src:url('chunks/assets/font_3052bc6488efa2778e136f85.woff')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00084;src:url('chunks/assets/font_609154d40bc0e990b2e14979.woff')format("woff");}.ff5_c00084{font-family:ff5_c00084;line-height:1.202148;font-style: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;}
.ls4_c00084{letter-spacing:-0.302400px;}
.ls5_c00084{letter-spacing:-0.229800px;}
.ls6_c00084{letter-spacing:-0.085800px;}
.ls1_c00084{letter-spacing:0.000000px;}
.ls2_c00084{letter-spacing:0.216000px;}
.ls3_c00084{letter-spacing:0.238200px;}
.ls0_c00084{letter-spacing:42.650496px;}
.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:-264.384000px;}
.ws1_c00084{word-spacing:-43.478784px;}
.ws4_c00084{word-spacing:-27.206784px;}
.ws2_c00084{word-spacing:-27.174240px;}
.ws5_c00084{word-spacing:-0.120384px;}
.ws3_c00084{word-spacing:-0.120240px;}
.ws6_c00084{word-spacing:0.000000px;}
._0_c00084{margin-left:-5.023296px;}
._2_c00084{margin-left:-3.078144px;}
._1_c00084{margin-left:-1.440000px;}
.fc2_c00084{color:rgb(255,0,0);}
.fc3_c00084{color:rgb(0,176,80);}
.fc1_c00084{color:rgb(137,137,137);}
.fc0_c00084{color:rgb(0,0,0);}
.fs1_c00084{font-size:72.000000px;}
.fs6_c00084{font-size:84.240000px;}
.fs5_c00084{font-size:84.384000px;}
.fs3_c00084{font-size:120.240000px;}
.fs4_c00084{font-size:120.384000px;}
.fs2_c00084{font-size:192.384000px;}
.fs0_c00084{font-size:264.384000px;}
.y0_c00084{bottom:0.000000px;}
.y1c_c00084{bottom:7.200000px;}
.y2_c00084{bottom:31.392000px;}
.y1e_c00084{bottom:39.600000px;}
.y19_c00084{bottom:57.060000px;}
.y1f_c00084{bottom:80.856000px;}
.yd_c00084{bottom:80.970000px;}
.y18_c00084{bottom:81.000000px;}
.y1a_c00084{bottom:89.460000px;}
.y15_c00084{bottom:107.100000px;}
.y1d_c00084{bottom:115.776000px;}
.y5_c00084{bottom:115.845000px;}
.yb_c00084{bottom:115.890000px;}
.y16_c00084{bottom:115.920000px;}
.y20_c00084{bottom:122.976000px;}
.y17_c00084{bottom:139.500000px;}
.y12_c00084{bottom:157.140000px;}
.y1b_c00084{bottom:172.980000px;}
.y13_c00084{bottom:189.540000px;}
.y6_c00084{bottom:199.260000px;}
.yf_c00084{bottom:207.180000px;}
.y9_c00084{bottom:223.845000px;}
.y10_c00084{bottom:239.580000px;}
.ya_c00084{bottom:257.220000px;}
.y7_c00084{bottom:259.845000px;}
.y14_c00084{bottom:273.030000px;}
.yc_c00084{bottom:289.620000px;}
.y4_c00084{bottom:307.260000px;}
.y11_c00084{bottom:323.070000px;}
.ye_c00084{bottom:373.110000px;}
.y8_c00084{bottom:459.105000px;}
.y3_c00084{bottom:500.910000px;}
.y1_c00084{bottom:670.395000px;}
.h2_c00084{height:71.613281px;}
.ha_c00084{height:83.787539px;}
.h9_c00084{height:83.930766px;}
.h5_c00084{height:123.116836px;}
.h7_c00084{height:123.264281px;}
.hc_c00084{height:176.400000px;}
.h8_c00084{height:176.580000px;}
.h3_c00084{height:196.986938px;}
.h1_c00084{height:251.732813px;}
.hb_c00084{height:252.000000px;}
.h4_c00084{height:252.180000px;}
.h6_c00084{height:504.180000px;}
.h0_c00084{height:810.000000px;}
.w5_c00084{width:76.140000px;}
.w2_c00084{width:82.440000px;}
.w3_c00084{width:82.620000px;}
.w4_c00084{width:85.500000px;}
.w6_c00084{width:88.920000px;}
.w7_c00084{width:132.120000px;}
.w8_c00084{width:150.300000px;}
.w1_c00084{width:1439.999979px;}
.w0_c00084{width:1440.000000px;}
.x0_c00084{left:0.000000px;}
.x14_c00084{left:1.230000px;}
.xa_c00084{left:13.830000px;}
.x5_c00084{left:20.340000px;}
.x8_c00084{left:23.295000px;}
.xc_c00084{left:26.610000px;}
.x19_c00084{left:27.870000px;}
.x17_c00084{left:34.380000px;}
.x18_c00084{left:37.335000px;}
.x1a_c00084{left:40.650000px;}
.x22_c00084{left:43.170000px;}
.x20_c00084{left:49.680000px;}
.x21_c00084{left:52.635000px;}
.x26_c00084{left:53.790000px;}
.x23_c00084{left:55.950000px;}
.x24_c00084{left:60.300000px;}
.x25_c00084{left:63.285000px;}
.x1e_c00084{left:64.410000px;}
.x27_c00084{left:66.570000px;}
.x1c_c00084{left:70.920000px;}
.x1d_c00084{left:73.905000px;}
.x1f_c00084{left:77.190000px;}
.x16_c00084{left:84.240000px;}
.x1_c00084{left:109.799979px;}
.x4_c00084{left:234.360000px;}
.x3_c00084{left:287.129979px;}
.x6_c00084{left:316.620000px;}
.x7_c00084{left:399.060000px;}
.x9_c00084{left:484.380000px;}
.xb_c00084{left:560.340000px;}
.xd_c00084{left:649.080000px;}
.x2_c00084{left:669.599979px;}
.xe_c00084{left:737.820000px;}
.xf_c00084{left:826.560000px;}
.x10_c00084{left:915.300000px;}
.x11_c00084{left:1004.040000px;}
.x12_c00084{left:1092.780000px;}
.x13_c00084{left:1181.520000px;}
.x1b_c00084{left:1212.659979px;}
.x28_c00084{left:1227.959979px;}
.x15_c00084{left:1264.139979px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls4_c00084{letter-spacing:-0.268800pt;}
.ls5_c00084{letter-spacing:-0.204267pt;}
.ls6_c00084{letter-spacing:-0.076267pt;}
.ls1_c00084{letter-spacing:0.000000pt;}
.ls2_c00084{letter-spacing:0.192000pt;}
.ls3_c00084{letter-spacing:0.211733pt;}
.ls0_c00084{letter-spacing:37.911552pt;}
.ws0_c00084{word-spacing:-235.008000pt;}
.ws1_c00084{word-spacing:-38.647808pt;}
.ws4_c00084{word-spacing:-24.183808pt;}
.ws2_c00084{word-spacing:-24.154880pt;}
.ws5_c00084{word-spacing:-0.107008pt;}
.ws3_c00084{word-spacing:-0.106880pt;}
.ws6_c00084{word-spacing:0.000000pt;}
._0_c00084{margin-left:-4.465152pt;}
._2_c00084{margin-left:-2.736128pt;}
._1_c00084{margin-left:-1.280000pt;}
.fs1_c00084{font-size:64.000000pt;}
.fs6_c00084{font-size:74.880000pt;}
.fs5_c00084{font-size:75.008000pt;}
.fs3_c00084{font-size:106.880000pt;}
.fs4_c00084{font-size:107.008000pt;}
.fs2_c00084{font-size:171.008000pt;}
.fs0_c00084{font-size:235.008000pt;}
.y0_c00084{bottom:0.000000pt;}
.y1c_c00084{bottom:6.400000pt;}
.y2_c00084{bottom:27.904000pt;}
.y1e_c00084{bottom:35.200000pt;}
.y19_c00084{bottom:50.720000pt;}
.y1f_c00084{bottom:71.872000pt;}
.yd_c00084{bottom:71.973333pt;}
.y18_c00084{bottom:72.000000pt;}
.y1a_c00084{bottom:79.520000pt;}
.y15_c00084{bottom:95.200000pt;}
.y1d_c00084{bottom:102.912000pt;}
.y5_c00084{bottom:102.973333pt;}
.yb_c00084{bottom:103.013333pt;}
.y16_c00084{bottom:103.040000pt;}
.y20_c00084{bottom:109.312000pt;}
.y17_c00084{bottom:124.000000pt;}
.y12_c00084{bottom:139.680000pt;}
.y1b_c00084{bottom:153.760000pt;}
.y13_c00084{bottom:168.480000pt;}
.y6_c00084{bottom:177.120000pt;}
.yf_c00084{bottom:184.160000pt;}
.y9_c00084{bottom:198.973333pt;}
.y10_c00084{bottom:212.960000pt;}
.ya_c00084{bottom:228.640000pt;}
.y7_c00084{bottom:230.973333pt;}
.y14_c00084{bottom:242.693333pt;}
.yc_c00084{bottom:257.440000pt;}
.y4_c00084{bottom:273.120000pt;}
.y11_c00084{bottom:287.173333pt;}
.ye_c00084{bottom:331.653333pt;}
.y8_c00084{bottom:408.093333pt;}
.y3_c00084{bottom:445.253333pt;}
.y1_c00084{bottom:595.906667pt;}
.h2_c00084{height:63.656250pt;}
.ha_c00084{height:74.477812pt;}
.h9_c00084{height:74.605125pt;}
.h5_c00084{height:109.437187pt;}
.h7_c00084{height:109.568250pt;}
.hc_c00084{height:156.800000pt;}
.h8_c00084{height:156.960000pt;}
.h3_c00084{height:175.099500pt;}
.h1_c00084{height:223.762500pt;}
.hb_c00084{height:224.000000pt;}
.h4_c00084{height:224.160000pt;}
.h6_c00084{height:448.160000pt;}
.h0_c00084{height:720.000000pt;}
.w5_c00084{width:67.680000pt;}
.w2_c00084{width:73.280000pt;}
.w3_c00084{width:73.440000pt;}
.w4_c00084{width:76.000000pt;}
.w6_c00084{width:79.040000pt;}
.w7_c00084{width:117.440000pt;}
.w8_c00084{width:133.600000pt;}
.w1_c00084{width:1279.999981pt;}
.w0_c00084{width:1280.000000pt;}
.x0_c00084{left:0.000000pt;}
.x14_c00084{left:1.093333pt;}
.xa_c00084{left:12.293333pt;}
.x5_c00084{left:18.080000pt;}
.x8_c00084{left:20.706667pt;}
.xc_c00084{left:23.653333pt;}
.x19_c00084{left:24.773333pt;}
.x17_c00084{left:30.560000pt;}
.x18_c00084{left:33.186667pt;}
.x1a_c00084{left:36.133333pt;}
.x22_c00084{left:38.373333pt;}
.x20_c00084{left:44.160000pt;}
.x21_c00084{left:46.786667pt;}
.x26_c00084{left:47.813333pt;}
.x23_c00084{left:49.733333pt;}
.x24_c00084{left:53.600000pt;}
.x25_c00084{left:56.253333pt;}
.x1e_c00084{left:57.253333pt;}
.x27_c00084{left:59.173333pt;}
.x1c_c00084{left:63.040000pt;}
.x1d_c00084{left:65.693333pt;}
.x1f_c00084{left:68.613333pt;}
.x16_c00084{left:74.880000pt;}
.x1_c00084{left:97.599981pt;}
.x4_c00084{left:208.320000pt;}
.x3_c00084{left:255.226648pt;}
.x6_c00084{left:281.440000pt;}
.x7_c00084{left:354.720000pt;}
.x9_c00084{left:430.560000pt;}
.xb_c00084{left:498.080000pt;}
.xd_c00084{left:576.960000pt;}
.x2_c00084{left:595.199981pt;}
.xe_c00084{left:655.840000pt;}
.xf_c00084{left:734.720000pt;}
.x10_c00084{left:813.600000pt;}
.x11_c00084{left:892.480000pt;}
.x12_c00084{left:971.360000pt;}
.x13_c00084{left:1050.240000pt;}
.x1b_c00084{left:1077.919981pt;}
.x28_c00084{left:1091.519981pt;}
.x15_c00084{left:1123.679981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca24e5526d2867c0ea333664.woff')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.130371;font-style:normal;font-weight:normal;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_ce0d94cdb6ee6ea39f1045fb.woff')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00085;src:url('chunks/assets/font_aec4026182aece4222aa8dfe.woff')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00085;src:url('chunks/assets/font_fa52e0a2e701b48df90d5883.woff')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:1.172852;font-style: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.000000px;}
.ls3_c00085{letter-spacing:0.216000px;}
.ls1_c00085{letter-spacing:49.377600px;}
.ls0_c00085{letter-spacing:49.428000px;}
.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;}
._0_c00085{margin-left:-5.023296px;}
._1_c00085{margin-left:-3.701376px;}
._6_c00085{margin-left:-2.673504px;}
._4_c00085{margin-left:-1.321920px;}
._3_c00085{width:1.321920px;}
._2_c00085{width:2.379456px;}
._7_c00085{width:4.004928px;}
._8_c00085{width:1096.869984px;}
._5_c00085{width:1205.925792px;}
._a_c00085{width:1241.767968px;}
._b_c00085{width:1711.741200px;}
._9_c00085{width:1897.106496px;}
.fc1_c00085{color:rgb(137,137,137);}
.fc0_c00085{color:rgb(0,0,0);}
.fs3_c00085{font-size:72.000000px;}
.fs1_c00085{font-size:167.760000px;}
.fs2_c00085{font-size:167.904000px;}
.fs0_c00085{font-size:264.384000px;}
.y0_c00085{bottom:0.000000px;}
.y7_c00085{bottom:31.392000px;}
.y6_c00085{bottom:313.095000px;}
.y5_c00085{bottom:373.605000px;}
.y4_c00085{bottom:433.905000px;}
.y3_c00085{bottom:494.205000px;}
.y2_c00085{bottom:554.730000px;}
.y1_c00085{bottom:670.395000px;}
.h4_c00085{height:71.613281px;}
.h2_c00085{height:166.858945px;}
.h3_c00085{height:167.002172px;}
.h1_c00085{height:251.732813px;}
.h0_c00085{height:810.000000px;}
.w1_c00085{width:1439.999979px;}
.w0_c00085{width:1440.000000px;}
.x0_c00085{left:0.000000px;}
.x1_c00085{left:109.799979px;}
.x2_c00085{left:669.599979px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls2_c00085{letter-spacing:0.000000pt;}
.ls3_c00085{letter-spacing:0.192000pt;}
.ls1_c00085{letter-spacing:43.891200pt;}
.ls0_c00085{letter-spacing:43.936000pt;}
.ws0_c00085{word-spacing:0.000000pt;}
._0_c00085{margin-left:-4.465152pt;}
._1_c00085{margin-left:-3.290112pt;}
._6_c00085{margin-left:-2.376448pt;}
._4_c00085{margin-left:-1.175040pt;}
._3_c00085{width:1.175040pt;}
._2_c00085{width:2.115072pt;}
._7_c00085{width:3.559936pt;}
._8_c00085{width:974.995541pt;}
._5_c00085{width:1071.934037pt;}
._a_c00085{width:1103.793749pt;}
._b_c00085{width:1521.547733pt;}
._9_c00085{width:1686.316885pt;}
.fs3_c00085{font-size:64.000000pt;}
.fs1_c00085{font-size:149.120000pt;}
.fs2_c00085{font-size:149.248000pt;}
.fs0_c00085{font-size:235.008000pt;}
.y0_c00085{bottom:0.000000pt;}
.y7_c00085{bottom:27.904000pt;}
.y6_c00085{bottom:278.306667pt;}
.y5_c00085{bottom:332.093333pt;}
.y4_c00085{bottom:385.693333pt;}
.y3_c00085{bottom:439.293333pt;}
.y2_c00085{bottom:493.093333pt;}
.y1_c00085{bottom:595.906667pt;}
.h4_c00085{height:63.656250pt;}
.h2_c00085{height:148.319063pt;}
.h3_c00085{height:148.446375pt;}
.h1_c00085{height:223.762500pt;}
.h0_c00085{height:720.000000pt;}
.w1_c00085{width:1279.999981pt;}
.w0_c00085{width:1280.000000pt;}
.x0_c00085{left:0.000000pt;}
.x1_c00085{left:97.599981pt;}
.x2_c00085{left:595.199981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed8df27b2067b71c07ff9a0e.woff')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00086;src:url('chunks/assets/font_ce0d94cdb6ee6ea39f1045fb.woff')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00086;src:url('chunks/assets/font_f273b68cae11d7d878c8d45c.woff')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00086;src:url('chunks/assets/font_1ba5dfc984448d56d5bd7cef.woff')format("woff");}.ff4_c00086{font-family:ff4_c00086;line-height:1.172852;font-style: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.000000px;}
.ls3_c00086{letter-spacing:0.216000px;}
.ls1_c00086{letter-spacing:49.377600px;}
.ls0_c00086{letter-spacing:49.428000px;}
.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;}
}
.ws1_c00086{word-spacing:-37.946304px;}
.ws0_c00086{word-spacing:-37.913760px;}
.ws2_c00086{word-spacing:0.000000px;}
._4_c00086{margin-left:-12.246480px;}
._0_c00086{margin-left:-8.724672px;}
._7_c00086{margin-left:-6.750720px;}
._6_c00086{margin-left:-4.865040px;}
._3_c00086{margin-left:-3.858480px;}
._1_c00086{margin-left:-2.643840px;}
._5_c00086{margin-left:-1.134000px;}
._2_c00086{width:1.972800px;}
._8_c00086{width:3.608640px;}
.fc1_c00086{color:rgb(137,137,137);}
.fc0_c00086{color:rgb(0,0,0);}
.fs3_c00086{font-size:72.000000px;}
.fs1_c00086{font-size:167.760000px;}
.fs2_c00086{font-size:167.904000px;}
.fs0_c00086{font-size:264.384000px;}
.y0_c00086{bottom:0.000000px;}
.y9_c00086{bottom:31.392000px;}
.y8_c00086{bottom:207.435000px;}
.y7_c00086{bottom:252.795000px;}
.y6_c00086{bottom:313.095000px;}
.y5_c00086{bottom:373.605000px;}
.y4_c00086{bottom:433.905000px;}
.y3_c00086{bottom:494.205000px;}
.y2_c00086{bottom:554.730000px;}
.y1_c00086{bottom:670.395000px;}
.h4_c00086{height:71.613281px;}
.h2_c00086{height:166.858945px;}
.h3_c00086{height:167.002172px;}
.h1_c00086{height:251.732813px;}
.h0_c00086{height:810.000000px;}
.w1_c00086{width:1439.999979px;}
.w0_c00086{width:1440.000000px;}
.x0_c00086{left:0.000000px;}
.x1_c00086{left:109.799979px;}
.x2_c00086{left:136.835979px;}
.x3_c00086{left:669.599979px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls2_c00086{letter-spacing:0.000000pt;}
.ls3_c00086{letter-spacing:0.192000pt;}
.ls1_c00086{letter-spacing:43.891200pt;}
.ls0_c00086{letter-spacing:43.936000pt;}
.ws1_c00086{word-spacing:-33.730048pt;}
.ws0_c00086{word-spacing:-33.701120pt;}
.ws2_c00086{word-spacing:0.000000pt;}
._4_c00086{margin-left:-10.885760pt;}
._0_c00086{margin-left:-7.755264pt;}
._7_c00086{margin-left:-6.000640pt;}
._6_c00086{margin-left:-4.324480pt;}
._3_c00086{margin-left:-3.429760pt;}
._1_c00086{margin-left:-2.350080pt;}
._5_c00086{margin-left:-1.008000pt;}
._2_c00086{width:1.753600pt;}
._8_c00086{width:3.207680pt;}
.fs3_c00086{font-size:64.000000pt;}
.fs1_c00086{font-size:149.120000pt;}
.fs2_c00086{font-size:149.248000pt;}
.fs0_c00086{font-size:235.008000pt;}
.y0_c00086{bottom:0.000000pt;}
.y9_c00086{bottom:27.904000pt;}
.y8_c00086{bottom:184.386667pt;}
.y7_c00086{bottom:224.706667pt;}
.y6_c00086{bottom:278.306667pt;}
.y5_c00086{bottom:332.093333pt;}
.y4_c00086{bottom:385.693333pt;}
.y3_c00086{bottom:439.293333pt;}
.y2_c00086{bottom:493.093333pt;}
.y1_c00086{bottom:595.906667pt;}
.h4_c00086{height:63.656250pt;}
.h2_c00086{height:148.319063pt;}
.h3_c00086{height:148.446375pt;}
.h1_c00086{height:223.762500pt;}
.h0_c00086{height:720.000000pt;}
.w1_c00086{width:1279.999981pt;}
.w0_c00086{width:1280.000000pt;}
.x0_c00086{left:0.000000pt;}
.x1_c00086{left:97.599981pt;}
.x2_c00086{left:121.631981pt;}
.x3_c00086{left:595.199981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b880396f800cad6ecd498b7d.woff')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00087;src:url('chunks/assets/font_ce0d94cdb6ee6ea39f1045fb.woff')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00087;src:url('chunks/assets/font_9dd3cef3ffd755db6e42097b.woff')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00087;src:url('chunks/assets/font_d3578cb15253af0078bfe6ea.woff')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls3_c00087{letter-spacing:0.000000px;}
.ls4_c00087{letter-spacing:0.216000px;}
.ls2_c00087{letter-spacing:49.377600px;}
.ls0_c00087{letter-spacing:49.428000px;}
.ls1_c00087{letter-spacing:57.600000px;}
.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:-32.544000px;}
.ws1_c00087{word-spacing:0.000000px;}
._4_c00087{margin-left:-16.830000px;}
._0_c00087{margin-left:-5.023296px;}
._1_c00087{margin-left:-3.172608px;}
._6_c00087{margin-left:-2.161440px;}
._3_c00087{margin-left:-1.006560px;}
._2_c00087{width:1.342080px;}
._5_c00087{width:2.348640px;}
.fc1_c00087{color:rgb(137,137,137);}
.fc0_c00087{color:rgb(0,0,0);}
.fs4_c00087{font-size:72.000000px;}
.fs2_c00087{font-size:144.000000px;}
.fs1_c00087{font-size:167.760000px;}
.fs3_c00087{font-size:167.904000px;}
.fs0_c00087{font-size:264.384000px;}
.y0_c00087{bottom:0.000000px;}
.ya_c00087{bottom:31.392000px;}
.y9_c00087{bottom:202.035000px;}
.y8_c00087{bottom:260.715000px;}
.y7_c00087{bottom:307.155000px;}
.y6_c00087{bottom:353.415000px;}
.y5_c00087{bottom:401.505000px;}
.y4_c00087{bottom:460.185000px;}
.y3_c00087{bottom:506.625000px;}
.y2_c00087{bottom:554.730000px;}
.y1_c00087{bottom:670.395000px;}
.h5_c00087{height:71.613281px;}
.h3_c00087{height:143.226562px;}
.h2_c00087{height:166.858945px;}
.h4_c00087{height:167.002172px;}
.h1_c00087{height:251.732813px;}
.h0_c00087{height:810.000000px;}
.w1_c00087{width:1439.999979px;}
.w0_c00087{width:1440.000000px;}
.x0_c00087{left:0.000000px;}
.x1_c00087{left:109.799979px;}
.x2_c00087{left:163.829979px;}
.x3_c00087{left:669.599979px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls3_c00087{letter-spacing:0.000000pt;}
.ls4_c00087{letter-spacing:0.192000pt;}
.ls2_c00087{letter-spacing:43.891200pt;}
.ls0_c00087{letter-spacing:43.936000pt;}
.ls1_c00087{letter-spacing:51.200000pt;}
.ws0_c00087{word-spacing:-28.928000pt;}
.ws1_c00087{word-spacing:0.000000pt;}
._4_c00087{margin-left:-14.960000pt;}
._0_c00087{margin-left:-4.465152pt;}
._1_c00087{margin-left:-2.820096pt;}
._6_c00087{margin-left:-1.921280pt;}
._3_c00087{margin-left:-0.894720pt;}
._2_c00087{width:1.192960pt;}
._5_c00087{width:2.087680pt;}
.fs4_c00087{font-size:64.000000pt;}
.fs2_c00087{font-size:128.000000pt;}
.fs1_c00087{font-size:149.120000pt;}
.fs3_c00087{font-size:149.248000pt;}
.fs0_c00087{font-size:235.008000pt;}
.y0_c00087{bottom:0.000000pt;}
.ya_c00087{bottom:27.904000pt;}
.y9_c00087{bottom:179.586667pt;}
.y8_c00087{bottom:231.746667pt;}
.y7_c00087{bottom:273.026667pt;}
.y6_c00087{bottom:314.146667pt;}
.y5_c00087{bottom:356.893333pt;}
.y4_c00087{bottom:409.053333pt;}
.y3_c00087{bottom:450.333333pt;}
.y2_c00087{bottom:493.093333pt;}
.y1_c00087{bottom:595.906667pt;}
.h5_c00087{height:63.656250pt;}
.h3_c00087{height:127.312500pt;}
.h2_c00087{height:148.319063pt;}
.h4_c00087{height:148.446375pt;}
.h1_c00087{height:223.762500pt;}
.h0_c00087{height:720.000000pt;}
.w1_c00087{width:1279.999981pt;}
.w0_c00087{width:1280.000000pt;}
.x0_c00087{left:0.000000pt;}
.x1_c00087{left:97.599981pt;}
.x2_c00087{left:145.626648pt;}
.x3_c00087{left:595.199981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32f9520a76e81d9afba225d2.woff')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00088;src:url('chunks/assets/font_5cc193fd72dc2dc21ca88694.woff')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00088;src:url('chunks/assets/font_0d9c947d63e87c8b6cb478e2.woff')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00088;src:url('chunks/assets/font_6474373d577241819f1b78f3.woff')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:1.202148;font-style: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;}
.ls3_c00088{letter-spacing:-0.091200px;}
.ls2_c00088{letter-spacing:-0.018000px;}
.ls0_c00088{letter-spacing:0.000000px;}
.ls1_c00088{letter-spacing:0.216000px;}
.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;}
}
.ws1_c00088{word-spacing:0.000000px;}
.ws0_c00088{word-spacing:77.135424px;}
._0_c00088{margin-left:-5.023296px;}
._1_c00088{margin-left:-3.172608px;}
._2_c00088{margin-left:-1.057536px;}
._3_c00088{width:1.321920px;}
._4_c00088{width:88.260768px;}
.fc2_c00088{color:rgb(89,89,89);}
.fc1_c00088{color:rgb(137,137,137);}
.fc0_c00088{color:rgb(0,0,0);}
.fs2_c00088{font-size:54.000000px;}
.fs3_c00088{font-size:54.144000px;}
.fs1_c00088{font-size:72.000000px;}
.fs4_c00088{font-size:95.760000px;}
.fs0_c00088{font-size:264.384000px;}
.y0_c00088{bottom:0.000000px;}
.yc_c00088{bottom:16.128000px;}
.y2_c00088{bottom:31.392000px;}
.y4_c00088{bottom:33.084000px;}
.y3_c00088{bottom:80.460000px;}
.y5_c00088{bottom:90.105000px;}
.y6_c00088{bottom:147.135000px;}
.y7_c00088{bottom:204.150000px;}
.y8_c00088{bottom:261.180000px;}
.y9_c00088{bottom:318.165000px;}
.ya_c00088{bottom:375.195000px;}
.yb_c00088{bottom:432.210000px;}
.yd_c00088{bottom:479.730000px;}
.y1_c00088{bottom:670.395000px;}
.h4_c00088{height:53.709961px;}
.h5_c00088{height:53.853187px;}
.h2_c00088{height:71.613281px;}
.h6_c00088{height:98.051133px;}
.h1_c00088{height:251.732813px;}
.h3_c00088{height:514.080000px;}
.h0_c00088{height:810.000000px;}
.w2_c00088{width:1242.000000px;}
.w1_c00088{width:1439.999979px;}
.w0_c00088{width:1440.000000px;}
.x0_c00088{left:0.000000px;}
.x6_c00088{left:28.260000px;}
.x5_c00088{left:38.160000px;}
.x4_c00088{left:75.420000px;}
.x3_c00088{left:99.000000px;}
.x7_c00088{left:106.095000px;}
.x1_c00088{left:109.799979px;}
.x8_c00088{left:475.995000px;}
.x2_c00088{left:669.599979px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls3_c00088{letter-spacing:-0.081067pt;}
.ls2_c00088{letter-spacing:-0.016000pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ls1_c00088{letter-spacing:0.192000pt;}
.ws1_c00088{word-spacing:0.000000pt;}
.ws0_c00088{word-spacing:68.564821pt;}
._0_c00088{margin-left:-4.465152pt;}
._1_c00088{margin-left:-2.820096pt;}
._2_c00088{margin-left:-0.940032pt;}
._3_c00088{width:1.175040pt;}
._4_c00088{width:78.454016pt;}
.fs2_c00088{font-size:48.000000pt;}
.fs3_c00088{font-size:48.128000pt;}
.fs1_c00088{font-size:64.000000pt;}
.fs4_c00088{font-size:85.120000pt;}
.fs0_c00088{font-size:235.008000pt;}
.y0_c00088{bottom:0.000000pt;}
.yc_c00088{bottom:14.336000pt;}
.y2_c00088{bottom:27.904000pt;}
.y4_c00088{bottom:29.408000pt;}
.y3_c00088{bottom:71.520000pt;}
.y5_c00088{bottom:80.093333pt;}
.y6_c00088{bottom:130.786667pt;}
.y7_c00088{bottom:181.466667pt;}
.y8_c00088{bottom:232.160000pt;}
.y9_c00088{bottom:282.813333pt;}
.ya_c00088{bottom:333.506667pt;}
.yb_c00088{bottom:384.186667pt;}
.yd_c00088{bottom:426.426667pt;}
.y1_c00088{bottom:595.906667pt;}
.h4_c00088{height:47.742188pt;}
.h5_c00088{height:47.869500pt;}
.h2_c00088{height:63.656250pt;}
.h6_c00088{height:87.156562pt;}
.h1_c00088{height:223.762500pt;}
.h3_c00088{height:456.960000pt;}
.h0_c00088{height:720.000000pt;}
.w2_c00088{width:1104.000000pt;}
.w1_c00088{width:1279.999981pt;}
.w0_c00088{width:1280.000000pt;}
.x0_c00088{left:0.000000pt;}
.x6_c00088{left:25.120000pt;}
.x5_c00088{left:33.920000pt;}
.x4_c00088{left:67.040000pt;}
.x3_c00088{left:88.000000pt;}
.x7_c00088{left:94.306667pt;}
.x1_c00088{left:97.599981pt;}
.x8_c00088{left:423.106667pt;}
.x2_c00088{left:595.199981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6bc57b723817bc495f4b71a.woff')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.130371;font-style:normal;font-weight:normal;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_3b719f6a8eab53d28b168284.woff')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.172852;font-style:normal;font-weight:normal;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_0d9c947d63e87c8b6cb478e2.woff')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00089;src:url('chunks/assets/font_4916092b9891ae9604f0161b.woff')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.202148;font-style: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;}
.ls2_c00089{letter-spacing:-0.018000px;}
.ls0_c00089{letter-spacing:0.000000px;}
.ls1_c00089{letter-spacing:0.216000px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00089{word-spacing:0.000000px;}
.ws0_c00089{word-spacing:68.154000px;}
._0_c00089{margin-left:-5.023296px;}
._1_c00089{margin-left:-3.172608px;}
._2_c00089{margin-left:-1.057536px;}
._3_c00089{width:1.321920px;}
.fc2_c00089{color:rgb(89,89,89);}
.fc1_c00089{color:rgb(137,137,137);}
.fc0_c00089{color:rgb(0,0,0);}
.fs2_c00089{font-size:54.000000px;}
.fs1_c00089{font-size:72.000000px;}
.fs3_c00089{font-size:95.760000px;}
.fs0_c00089{font-size:264.384000px;}
.y0_c00089{bottom:0.000000px;}
.yc_c00089{bottom:16.020000px;}
.y2_c00089{bottom:31.392000px;}
.y4_c00089{bottom:32.970000px;}
.y5_c00089{bottom:81.975000px;}
.y3_c00089{bottom:120.960000px;}
.y6_c00089{bottom:131.010000px;}
.y7_c00089{bottom:180.000000px;}
.y8_c00089{bottom:228.990000px;}
.y9_c00089{bottom:278.025000px;}
.ya_c00089{bottom:327.030000px;}
.yb_c00089{bottom:376.020000px;}
.yd_c00089{bottom:422.925000px;}
.y1_c00089{bottom:670.395000px;}
.h4_c00089{height:53.709961px;}
.h2_c00089{height:71.613281px;}
.h5_c00089{height:98.051133px;}
.h1_c00089{height:251.732813px;}
.h3_c00089{height:457.200000px;}
.h0_c00089{height:810.000000px;}
.w2_c00089{width:1204.560000px;}
.w1_c00089{width:1439.999979px;}
.w0_c00089{width:1440.000000px;}
.x0_c00089{left:0.000000px;}
.x6_c00089{left:31.032000px;}
.x5_c00089{left:37.872000px;}
.x3_c00089{left:75.960000px;}
.x4_c00089{left:84.990000px;}
.x1_c00089{left:109.799979px;}
.x7_c00089{left:114.555000px;}
.x8_c00089{left:520.095000px;}
.x2_c00089{left:669.599979px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls2_c00089{letter-spacing:-0.016000pt;}
.ls0_c00089{letter-spacing:0.000000pt;}
.ls1_c00089{letter-spacing:0.192000pt;}
.ws1_c00089{word-spacing:0.000000pt;}
.ws0_c00089{word-spacing:60.581333pt;}
._0_c00089{margin-left:-4.465152pt;}
._1_c00089{margin-left:-2.820096pt;}
._2_c00089{margin-left:-0.940032pt;}
._3_c00089{width:1.175040pt;}
.fs2_c00089{font-size:48.000000pt;}
.fs1_c00089{font-size:64.000000pt;}
.fs3_c00089{font-size:85.120000pt;}
.fs0_c00089{font-size:235.008000pt;}
.y0_c00089{bottom:0.000000pt;}
.yc_c00089{bottom:14.240000pt;}
.y2_c00089{bottom:27.904000pt;}
.y4_c00089{bottom:29.306667pt;}
.y5_c00089{bottom:72.866667pt;}
.y3_c00089{bottom:107.520000pt;}
.y6_c00089{bottom:116.453333pt;}
.y7_c00089{bottom:160.000000pt;}
.y8_c00089{bottom:203.546667pt;}
.y9_c00089{bottom:247.133333pt;}
.ya_c00089{bottom:290.693333pt;}
.yb_c00089{bottom:334.240000pt;}
.yd_c00089{bottom:375.933333pt;}
.y1_c00089{bottom:595.906667pt;}
.h4_c00089{height:47.742188pt;}
.h2_c00089{height:63.656250pt;}
.h5_c00089{height:87.156562pt;}
.h1_c00089{height:223.762500pt;}
.h3_c00089{height:406.400000pt;}
.h0_c00089{height:720.000000pt;}
.w2_c00089{width:1070.720000pt;}
.w1_c00089{width:1279.999981pt;}
.w0_c00089{width:1280.000000pt;}
.x0_c00089{left:0.000000pt;}
.x6_c00089{left:27.584000pt;}
.x5_c00089{left:33.664000pt;}
.x3_c00089{left:67.520000pt;}
.x4_c00089{left:75.546667pt;}
.x1_c00089{left:97.599981pt;}
.x7_c00089{left:101.826667pt;}
.x8_c00089{left:462.306667pt;}
.x2_c00089{left:595.199981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7dc2b94eb9a9d8ab3a7a0ac6.woff')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00090;src:url('chunks/assets/font_0808a29ad40e88db9b978d65.woff')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00090;src:url('chunks/assets/font_99e6a83bc8a4d8cdcd696c20.woff')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.172852;font-style: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;}
.ls0_c00090{letter-spacing:0.000000px;}
.ls1_c00090{letter-spacing:0.216000px;}
.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:-24.408000px;}
.ws1_c00090{word-spacing:0.000000px;}
._1_c00090{margin-left:-5.023296px;}
._3_c00090{margin-left:-3.965760px;}
._0_c00090{margin-left:-2.643840px;}
._2_c00090{margin-left:-1.057536px;}
._4_c00090{width:1.023840px;}
.fc1_c00090{color:rgb(137,137,137);}
.fc0_c00090{color:rgb(0,0,0);}
.fs3_c00090{font-size:72.000000px;}
.fs1_c00090{font-size:108.000000px;}
.fs2_c00090{font-size:108.144000px;}
.fs0_c00090{font-size:264.384000px;}
.y0_c00090{bottom:0.000000px;}
.ye_c00090{bottom:31.392000px;}
.y9_c00090{bottom:93.708000px;}
.y6_c00090{bottom:123.444000px;}
.y5_c00090{bottom:153.000000px;}
.y8_c00090{bottom:153.150000px;}
.y7_c00090{bottom:182.670000px;}
.yd_c00090{bottom:317.340000px;}
.yc_c00090{bottom:347.040000px;}
.y4_c00090{bottom:347.070000px;}
.y3_c00090{bottom:376.590000px;}
.yb_c00090{bottom:376.740000px;}
.ya_c00090{bottom:406.260000px;}
.y2_c00090{bottom:526.245000px;}
.y1_c00090{bottom:670.395000px;}
.h4_c00090{height:71.613281px;}
.h2_c00090{height:107.419922px;}
.h3_c00090{height:107.563148px;}
.h1_c00090{height:251.732813px;}
.h0_c00090{height:810.000000px;}
.w1_c00090{width:1439.999979px;}
.w0_c00090{width:1440.000000px;}
.x0_c00090{left:0.000000px;}
.x1_c00090{left:109.799979px;}
.xc_c00090{left:363.704979px;}
.xe_c00090{left:384.404979px;}
.xd_c00090{left:386.564979px;}
.xb_c00090{left:397.544979px;}
.x8_c00090{left:407.624979px;}
.xa_c00090{left:420.224979px;}
.x9_c00090{left:425.084979px;}
.x7_c00090{left:453.164979px;}
.x2_c00090{left:635.189979px;}
.xf_c00090{left:669.599979px;}
.x5_c00090{left:901.289979px;}
.x3_c00090{left:906.659979px;}
.x6_c00090{left:915.149979px;}
.x4_c00090{left:916.739979px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls0_c00090{letter-spacing:0.000000pt;}
.ls1_c00090{letter-spacing:0.192000pt;}
.ws0_c00090{word-spacing:-21.696000pt;}
.ws1_c00090{word-spacing:0.000000pt;}
._1_c00090{margin-left:-4.465152pt;}
._3_c00090{margin-left:-3.525120pt;}
._0_c00090{margin-left:-2.350080pt;}
._2_c00090{margin-left:-0.940032pt;}
._4_c00090{width:0.910080pt;}
.fs3_c00090{font-size:64.000000pt;}
.fs1_c00090{font-size:96.000000pt;}
.fs2_c00090{font-size:96.128000pt;}
.fs0_c00090{font-size:235.008000pt;}
.y0_c00090{bottom:0.000000pt;}
.ye_c00090{bottom:27.904000pt;}
.y9_c00090{bottom:83.296000pt;}
.y6_c00090{bottom:109.728000pt;}
.y5_c00090{bottom:136.000000pt;}
.y8_c00090{bottom:136.133333pt;}
.y7_c00090{bottom:162.373333pt;}
.yd_c00090{bottom:282.080000pt;}
.yc_c00090{bottom:308.480000pt;}
.y4_c00090{bottom:308.506667pt;}
.y3_c00090{bottom:334.746667pt;}
.yb_c00090{bottom:334.880000pt;}
.ya_c00090{bottom:361.120000pt;}
.y2_c00090{bottom:467.773333pt;}
.y1_c00090{bottom:595.906667pt;}
.h4_c00090{height:63.656250pt;}
.h2_c00090{height:95.484375pt;}
.h3_c00090{height:95.611688pt;}
.h1_c00090{height:223.762500pt;}
.h0_c00090{height:720.000000pt;}
.w1_c00090{width:1279.999981pt;}
.w0_c00090{width:1280.000000pt;}
.x0_c00090{left:0.000000pt;}
.x1_c00090{left:97.599981pt;}
.xc_c00090{left:323.293314pt;}
.xe_c00090{left:341.693314pt;}
.xd_c00090{left:343.613314pt;}
.xb_c00090{left:353.373314pt;}
.x8_c00090{left:362.333314pt;}
.xa_c00090{left:373.533314pt;}
.x9_c00090{left:377.853314pt;}
.x7_c00090{left:402.813314pt;}
.x2_c00090{left:564.613314pt;}
.xf_c00090{left:595.199981pt;}
.x5_c00090{left:801.146648pt;}
.x3_c00090{left:805.919981pt;}
.x6_c00090{left:813.466648pt;}
.x4_c00090{left:814.879981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d528182b20d9e9fdf36ddba8.woff')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.130371;font-style:normal;font-weight:normal;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_ce0d94cdb6ee6ea39f1045fb.woff')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00091;src:url('chunks/assets/font_ba9e4ca57a6c18dd47f79663.woff')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00091;src:url('chunks/assets/font_089f7bc5525f99f6d0e05c0a.woff')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.172852;font-style: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;}
.ls3_c00091{letter-spacing:-0.065400px;}
.ls2_c00091{letter-spacing:0.000000px;}
.ls4_c00091{letter-spacing:0.216000px;}
.ls1_c00091{letter-spacing:57.693600px;}
.ls0_c00091{letter-spacing:57.744000px;}
.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:-32.544000px;}
.ws1_c00091{word-spacing:0.000000px;}
._0_c00091{margin-left:-6.080832px;}
._6_c00091{margin-left:-4.874784px;}
._5_c00091{margin-left:-3.401856px;}
._1_c00091{margin-left:-2.115072px;}
._4_c00091{margin-left:-1.097856px;}
._2_c00091{width:1.321920px;}
._3_c00091{width:33.627360px;}
.fc1_c00091{color:rgb(137,137,137);}
.fc0_c00091{color:rgb(0,0,0);}
.fs3_c00091{font-size:72.000000px;}
.fs1_c00091{font-size:144.000000px;}
.fs2_c00091{font-size:144.144000px;}
.fs0_c00091{font-size:264.384000px;}
.y0_c00091{bottom:0.000000px;}
.yc_c00091{bottom:31.392000px;}
.yb_c00091{bottom:116.856000px;}
.ya_c00091{bottom:166.350000px;}
.y9_c00091{bottom:216.075000px;}
.y8_c00091{bottom:265.575000px;}
.y7_c00091{bottom:315.075000px;}
.y6_c00091{bottom:364.785000px;}
.y5_c00091{bottom:414.285000px;}
.y4_c00091{bottom:463.785000px;}
.y3_c00091{bottom:513.465000px;}
.y2_c00091{bottom:563.010000px;}
.y1_c00091{bottom:670.395000px;}
.h4_c00091{height:71.613281px;}
.h2_c00091{height:143.226562px;}
.h3_c00091{height:143.369789px;}
.h1_c00091{height:251.732813px;}
.h0_c00091{height:810.000000px;}
.w1_c00091{width:1439.999979px;}
.w0_c00091{width:1440.000000px;}
.x0_c00091{left:0.000000px;}
.x1_c00091{left:109.799979px;}
.x2_c00091{left:669.599979px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls3_c00091{letter-spacing:-0.058133pt;}
.ls2_c00091{letter-spacing:0.000000pt;}
.ls4_c00091{letter-spacing:0.192000pt;}
.ls1_c00091{letter-spacing:51.283200pt;}
.ls0_c00091{letter-spacing:51.328000pt;}
.ws0_c00091{word-spacing:-28.928000pt;}
.ws1_c00091{word-spacing:0.000000pt;}
._0_c00091{margin-left:-5.405184pt;}
._6_c00091{margin-left:-4.333141pt;}
._5_c00091{margin-left:-3.023872pt;}
._1_c00091{margin-left:-1.880064pt;}
._4_c00091{margin-left:-0.975872pt;}
._2_c00091{width:1.175040pt;}
._3_c00091{width:29.890987pt;}
.fs3_c00091{font-size:64.000000pt;}
.fs1_c00091{font-size:128.000000pt;}
.fs2_c00091{font-size:128.128000pt;}
.fs0_c00091{font-size:235.008000pt;}
.y0_c00091{bottom:0.000000pt;}
.yc_c00091{bottom:27.904000pt;}
.yb_c00091{bottom:103.872000pt;}
.ya_c00091{bottom:147.866667pt;}
.y9_c00091{bottom:192.066667pt;}
.y8_c00091{bottom:236.066667pt;}
.y7_c00091{bottom:280.066667pt;}
.y6_c00091{bottom:324.253333pt;}
.y5_c00091{bottom:368.253333pt;}
.y4_c00091{bottom:412.253333pt;}
.y3_c00091{bottom:456.413333pt;}
.y2_c00091{bottom:500.453333pt;}
.y1_c00091{bottom:595.906667pt;}
.h4_c00091{height:63.656250pt;}
.h2_c00091{height:127.312500pt;}
.h3_c00091{height:127.439813pt;}
.h1_c00091{height:223.762500pt;}
.h0_c00091{height:720.000000pt;}
.w1_c00091{width:1279.999981pt;}
.w0_c00091{width:1280.000000pt;}
.x0_c00091{left:0.000000pt;}
.x1_c00091{left:97.599981pt;}
.x2_c00091{left:595.199981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_56e935c6ede47ba235e40dda.woff')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00092;src:url('chunks/assets/font_444359470fac007dc8d99c02.woff')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_253ded20f4535586d1feb61c.woff')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.172852;font-style: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;}
.ls1_c00092{letter-spacing:0.216000px;}
.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:-28.476000px;}
.ws1_c00092{word-spacing:0.000000px;}
._3_c00092{margin-left:-3.654000px;}
._0_c00092{margin-left:-2.643840px;}
._2_c00092{margin-left:-1.321920px;}
._1_c00092{width:1.321920px;}
.fc1_c00092{color:rgb(137,137,137);}
.fc0_c00092{color:rgb(0,0,0);}
.fs3_c00092{font-size:72.000000px;}
.fs1_c00092{font-size:126.000000px;}
.fs2_c00092{font-size:126.144000px;}
.fs0_c00092{font-size:264.384000px;}
.y0_c00092{bottom:0.000000px;}
.yf_c00092{bottom:31.392000px;}
.yb_c00092{bottom:108.000000px;}
.ya_c00092{bottom:142.740000px;}
.y9_c00092{bottom:205.635000px;}
.y8_c00092{bottom:240.195000px;}
.y7_c00092{bottom:274.935000px;}
.ye_c00092{bottom:381.960000px;}
.y6_c00092{bottom:406.155000px;}
.yd_c00092{bottom:416.520000px;}
.y5_c00092{bottom:440.895000px;}
.yc_c00092{bottom:451.260000px;}
.y4_c00092{bottom:496.830000px;}
.y3_c00092{bottom:531.435000px;}
.y2_c00092{bottom:566.175000px;}
.y1_c00092{bottom:670.395000px;}
.h4_c00092{height:71.613281px;}
.h2_c00092{height:125.323242px;}
.h3_c00092{height:125.466469px;}
.h1_c00092{height:251.732813px;}
.h0_c00092{height:810.000000px;}
.w1_c00092{width:1439.999979px;}
.w0_c00092{width:1440.000000px;}
.x0_c00092{left:0.000000px;}
.x1_c00092{left:109.799979px;}
.x10_c00092{left:395.969979px;}
.xc_c00092{left:403.169979px;}
.xf_c00092{left:413.609979px;}
.xd_c00092{left:420.629979px;}
.xe_c00092{left:433.589979px;}
.x11_c00092{left:451.589979px;}
.xb_c00092{left:632.909979px;}
.xa_c00092{left:655.049979px;}
.x2_c00092{left:660.629979px;}
.x4_c00092{left:662.249979px;}
.x3_c00092{left:665.849979px;}
.x12_c00092{left:669.599979px;}
.x6_c00092{left:875.879979px;}
.x7_c00092{left:881.459979px;}
.x9_c00092{left:899.849979px;}
.x5_c00092{left:908.489979px;}
.x8_c00092{left:910.109979px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls0_c00092{letter-spacing:0.000000pt;}
.ls1_c00092{letter-spacing:0.192000pt;}
.ws0_c00092{word-spacing:-25.312000pt;}
.ws1_c00092{word-spacing:0.000000pt;}
._3_c00092{margin-left:-3.248000pt;}
._0_c00092{margin-left:-2.350080pt;}
._2_c00092{margin-left:-1.175040pt;}
._1_c00092{width:1.175040pt;}
.fs3_c00092{font-size:64.000000pt;}
.fs1_c00092{font-size:112.000000pt;}
.fs2_c00092{font-size:112.128000pt;}
.fs0_c00092{font-size:235.008000pt;}
.y0_c00092{bottom:0.000000pt;}
.yf_c00092{bottom:27.904000pt;}
.yb_c00092{bottom:96.000000pt;}
.ya_c00092{bottom:126.880000pt;}
.y9_c00092{bottom:182.786667pt;}
.y8_c00092{bottom:213.506667pt;}
.y7_c00092{bottom:244.386667pt;}
.ye_c00092{bottom:339.520000pt;}
.y6_c00092{bottom:361.026667pt;}
.yd_c00092{bottom:370.240000pt;}
.y5_c00092{bottom:391.906667pt;}
.yc_c00092{bottom:401.120000pt;}
.y4_c00092{bottom:441.626667pt;}
.y3_c00092{bottom:472.386667pt;}
.y2_c00092{bottom:503.266667pt;}
.y1_c00092{bottom:595.906667pt;}
.h4_c00092{height:63.656250pt;}
.h2_c00092{height:111.398438pt;}
.h3_c00092{height:111.525750pt;}
.h1_c00092{height:223.762500pt;}
.h0_c00092{height:720.000000pt;}
.w1_c00092{width:1279.999981pt;}
.w0_c00092{width:1280.000000pt;}
.x0_c00092{left:0.000000pt;}
.x1_c00092{left:97.599981pt;}
.x10_c00092{left:351.973314pt;}
.xc_c00092{left:358.373314pt;}
.xf_c00092{left:367.653314pt;}
.xd_c00092{left:373.893314pt;}
.xe_c00092{left:385.413314pt;}
.x11_c00092{left:401.413314pt;}
.xb_c00092{left:562.586648pt;}
.xa_c00092{left:582.266648pt;}
.x2_c00092{left:587.226648pt;}
.x4_c00092{left:588.666648pt;}
.x3_c00092{left:591.866648pt;}
.x12_c00092{left:595.199981pt;}
.x6_c00092{left:778.559981pt;}
.x7_c00092{left:783.519981pt;}
.x9_c00092{left:799.866648pt;}
.x5_c00092{left:807.546648pt;}
.x8_c00092{left:808.986648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_41390cdedc2c4a70fbf5d19c.woff')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.202148;font-style:normal;font-weight:normal;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_4b51738bac6f47c0d882912a.woff')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.172852;font-style:normal;font-weight:normal;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_1ba5dfc984448d56d5bd7cef.woff')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.172852;font-style: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;}
.ls1_c00093{letter-spacing:0.216000px;}
.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;}
._2_c00093{margin-left:-4.748976px;}
._1_c00093{margin-left:-3.026016px;}
._0_c00093{margin-left:-1.513008px;}
._3_c00093{width:1.728000px;}
.fc1_c00093{color:rgb(137,137,137);}
.fc0_c00093{color:rgb(0,0,0);}
.fs2_c00093{font-size:72.000000px;}
.fs1_c00093{font-size:216.000000px;}
.fs0_c00093{font-size:216.144000px;}
.y0_c00093{bottom:0.000000px;}
.y4_c00093{bottom:31.392000px;}
.y3_c00093{bottom:328.530000px;}
.y2_c00093{bottom:386.850000px;}
.y1_c00093{bottom:445.215000px;}
.h3_c00093{height:71.613281px;}
.h2_c00093{height:221.167969px;}
.h1_c00093{height:221.315414px;}
.h0_c00093{height:810.000000px;}
.w1_c00093{width:1439.999979px;}
.w0_c00093{width:1440.000000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:110.555979px;}
.x2_c00093{left:167.069979px;}
.x3_c00093{left:455.684979px;}
.x4_c00093{left:669.599979px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ls1_c00093{letter-spacing:0.192000pt;}
.ws0_c00093{word-spacing:0.000000pt;}
._2_c00093{margin-left:-4.221312pt;}
._1_c00093{margin-left:-2.689792pt;}
._0_c00093{margin-left:-1.344896pt;}
._3_c00093{width:1.536000pt;}
.fs2_c00093{font-size:64.000000pt;}
.fs1_c00093{font-size:192.000000pt;}
.fs0_c00093{font-size:192.128000pt;}
.y0_c00093{bottom:0.000000pt;}
.y4_c00093{bottom:27.904000pt;}
.y3_c00093{bottom:292.026667pt;}
.y2_c00093{bottom:343.866667pt;}
.y1_c00093{bottom:395.746667pt;}
.h3_c00093{height:63.656250pt;}
.h2_c00093{height:196.593750pt;}
.h1_c00093{height:196.724812pt;}
.h0_c00093{height:720.000000pt;}
.w1_c00093{width:1279.999981pt;}
.w0_c00093{width:1280.000000pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:98.271981pt;}
.x2_c00093{left:148.506648pt;}
.x3_c00093{left:405.053314pt;}
.x4_c00093{left:595.199981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9847f2d3709bcbc4009095dc.woff')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.172852;font-style:normal;font-weight:normal;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_322f92360d2fc3e0abe6e010.woff')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.172852;font-style: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);}
.m1_c00094{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls0_c00094{letter-spacing:0.000000px;}
.ls1_c00094{letter-spacing:0.216000px;}
.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:-37.913760px;}
.ws1_c00094{word-spacing:0.000000px;}
._0_c00094{margin-left:-16.776000px;}
._5_c00094{margin-left:-4.361760px;}
._2_c00094{margin-left:-3.187440px;}
._6_c00094{margin-left:-2.180880px;}
._3_c00094{margin-left:-1.175328px;}
._1_c00094{width:1.006560px;}
._4_c00094{width:2.013120px;}
.fc1_c00094{color:rgb(5,99,193);}
.fc2_c00094{color:rgb(137,137,137);}
.fc0_c00094{color:rgb(0,0,0);}
.fs2_c00094{font-size:72.000000px;}
.fs0_c00094{font-size:167.760000px;}
.fs1_c00094{font-size:167.904000px;}
.y0_c00094{bottom:0.000000px;}
.y5_c00094{bottom:31.392000px;}
.y4_c00094{bottom:252.795000px;}
.y3_c00094{bottom:313.095000px;}
.y2_c00094{bottom:373.605000px;}
.y1_c00094{bottom:433.905000px;}
.h3_c00094{height:71.613281px;}
.h1_c00094{height:166.858945px;}
.h2_c00094{height:167.002172px;}
.h0_c00094{height:810.000000px;}
.w1_c00094{width:1439.999979px;}
.w0_c00094{width:1440.000000px;}
.x0_c00094{left:0.000000px;}
.x5_c00094{left:669.599979px;}
.x2_c00094{left:865.004979px;}
.x4_c00094{left:872.024979px;}
.x1_c00094{left:924.629979px;}
.x3_c00094{left:1097.789979px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ls1_c00094{letter-spacing:0.192000pt;}
.ws0_c00094{word-spacing:-33.701120pt;}
.ws1_c00094{word-spacing:0.000000pt;}
._0_c00094{margin-left:-14.912000pt;}
._5_c00094{margin-left:-3.877120pt;}
._2_c00094{margin-left:-2.833280pt;}
._6_c00094{margin-left:-1.938560pt;}
._3_c00094{margin-left:-1.044736pt;}
._1_c00094{width:0.894720pt;}
._4_c00094{width:1.789440pt;}
.fs2_c00094{font-size:64.000000pt;}
.fs0_c00094{font-size:149.120000pt;}
.fs1_c00094{font-size:149.248000pt;}
.y0_c00094{bottom:0.000000pt;}
.y5_c00094{bottom:27.904000pt;}
.y4_c00094{bottom:224.706667pt;}
.y3_c00094{bottom:278.306667pt;}
.y2_c00094{bottom:332.093333pt;}
.y1_c00094{bottom:385.693333pt;}
.h3_c00094{height:63.656250pt;}
.h1_c00094{height:148.319063pt;}
.h2_c00094{height:148.446375pt;}
.h0_c00094{height:720.000000pt;}
.w1_c00094{width:1279.999981pt;}
.w0_c00094{width:1280.000000pt;}
.x0_c00094{left:0.000000pt;}
.x5_c00094{left:595.199981pt;}
.x2_c00094{left:768.893314pt;}
.x4_c00094{left:775.133314pt;}
.x1_c00094{left:821.893314pt;}
.x3_c00094{left:975.813314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b91dd19be0e2b8f2a9eea844.woff')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.146484;font-style: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;}
.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;}
._1_c00095{margin-left:-4.104000px;}
._0_c00095{margin-left:-1.944000px;}
._2_c00095{width:850.307498px;}
.fc0_c00095{color:rgb(255,255,255);}
.fs1_c00095{font-size:97.649999px;}
.fs0_c00095{font-size:216.000007px;}
.y0_c00095{bottom:0.000000px;}
.y3_c00095{bottom:99.540379px;}
.y2_c00095{bottom:295.660115px;}
.y1_c00095{bottom:360.460114px;}
.h2_c00095{height:89.544286px;}
.h1_c00095{height:198.070319px;}
.h0_c00095{height:607.500000px;}
.w0_c00095{width:1080.000000px;}
.x0_c00095{left:0.000000px;}
.x2_c00095{left:72.097442px;}
.x1_c00095{left:80.766736px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls0_c00095{letter-spacing:0.000000pt;}
.ws0_c00095{word-spacing:0.000000pt;}
._1_c00095{margin-left:-3.648000pt;}
._0_c00095{margin-left:-1.728000pt;}
._2_c00095{width:755.828887pt;}
.fs1_c00095{font-size:86.799999pt;}
.fs0_c00095{font-size:192.000006pt;}
.y0_c00095{bottom:0.000000pt;}
.y3_c00095{bottom:88.480337pt;}
.y2_c00095{bottom:262.808991pt;}
.y1_c00095{bottom:320.408990pt;}
.h2_c00095{height:79.594921pt;}
.h1_c00095{height:176.062506pt;}
.h0_c00095{height:540.000000pt;}
.w0_c00095{width:960.000000pt;}
.x0_c00095{left:0.000000pt;}
.x2_c00095{left:64.086615pt;}
.x1_c00095{left:71.792654pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc9bdee62a83dc82d7222352.woff')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.146484;font-style: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;}
.ls0_c00096{letter-spacing:0.000000px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00096{word-spacing:-56.246400px;}
.ws1_c00096{word-spacing:0.000000px;}
._0_c00096{margin-left:-2.041200px;}
.fc0_c00096{color:rgb(255,255,255);}
.fs1_c00096{font-size:108.000003px;}
.fs0_c00096{font-size:226.799998px;}
.y0_c00096{bottom:0.000000px;}
.y5_c00096{bottom:189.332379px;}
.y4_c00096{bottom:257.372353px;}
.y3_c00096{bottom:325.412350px;}
.y2_c00096{bottom:359.432351px;}
.y1_c00096{bottom:461.913115px;}
.h2_c00096{height:99.035159px;}
.h1_c00096{height:207.973827px;}
.h0_c00096{height:607.500000px;}
.w0_c00096{width:1080.000000px;}
.x0_c00096{left:0.000000px;}
.x1_c00096{left:33.847443px;}
.x2_c00096{left:46.939963px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls0_c00096{letter-spacing:0.000000pt;}
.ws0_c00096{word-spacing:-49.996800pt;}
.ws1_c00096{word-spacing:0.000000pt;}
._0_c00096{margin-left:-1.814400pt;}
.fs1_c00096{font-size:96.000003pt;}
.fs0_c00096{font-size:201.599998pt;}
.y0_c00096{bottom:0.000000pt;}
.y5_c00096{bottom:168.295448pt;}
.y4_c00096{bottom:228.775425pt;}
.y3_c00096{bottom:289.255422pt;}
.y2_c00096{bottom:319.495423pt;}
.y1_c00096{bottom:410.589436pt;}
.h2_c00096{height:88.031253pt;}
.h1_c00096{height:184.865624pt;}
.h0_c00096{height:540.000000pt;}
.w0_c00096{width:960.000000pt;}
.x0_c00096{left:0.000000pt;}
.x1_c00096{left:30.086616pt;}
.x2_c00096{left:41.724411pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_103c723da2f42940796126e6.woff')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.146484;font-style: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;}
.ls0_c00097{letter-spacing:0.000000px;}
.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;}
._0_c00097{margin-left:-1.680000px;}
.fc0_c00097{color:rgb(67,67,67);}
.fs0_c00097{font-size:60.000000px;}
.y0_c00097{bottom:0.000000px;}
.y1_c00097{bottom:15.478912px;}
.h1_c00097{height:55.019532px;}
.h0_c00097{height:607.500000px;}
.w0_c00097{width:1080.000000px;}
.x0_c00097{left:0.000000px;}
.x1_c00097{left:841.071908px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ws0_c00097{word-spacing:0.000000pt;}
._0_c00097{margin-left:-1.493333pt;}
.fs0_c00097{font-size:53.333334pt;}
.y0_c00097{bottom:0.000000pt;}
.y1_c00097{bottom:13.759033pt;}
.h1_c00097{height:48.906250pt;}
.h0_c00097{height:540.000000pt;}
.w0_c00097{width:960.000000pt;}
.x0_c00097{left:0.000000pt;}
.x1_c00097{left:747.619474pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_13399619c75c2c386fa50692.woff')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.146484;font-style:normal;font-weight:normal;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_dac35dfeffb444b0c5bc8816.woff')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls1_c00098{letter-spacing:0.000000px;}
.ls0_c00098{letter-spacing:108.000354px;}
.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;}
._0_c00098{margin-left:-1.587600px;}
.fc0_c00098{color:rgb(255,255,255);}
.fs1_c00098{font-size:90.000003px;}
.fs0_c00098{font-size:226.799998px;}
.y0_c00098{bottom:0.000000px;}
.y8_c00098{bottom:112.202354px;}
.y7_c00098{bottom:152.702355px;}
.y6_c00098{bottom:193.202357px;}
.y5_c00098{bottom:233.702358px;}
.y4_c00098{bottom:274.202359px;}
.y3_c00098{bottom:314.702355px;}
.y2_c00098{bottom:363.752352px;}
.y1_c00098{bottom:461.913115px;}
.h2_c00098{height:82.529300px;}
.h1_c00098{height:207.973827px;}
.h0_c00098{height:607.500000px;}
.w0_c00098{width:1080.000000px;}
.x0_c00098{left:0.000000px;}
.x1_c00098{left:33.847443px;}
.x2_c00098{left:46.939963px;}
.x3_c00098{left:60.349875px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls1_c00098{letter-spacing:0.000000pt;}
.ls0_c00098{letter-spacing:96.000315pt;}
.ws0_c00098{word-spacing:0.000000pt;}
._0_c00098{margin-left:-1.411200pt;}
.fs1_c00098{font-size:80.000003pt;}
.fs0_c00098{font-size:201.599998pt;}
.y0_c00098{bottom:0.000000pt;}
.y8_c00098{bottom:99.735426pt;}
.y7_c00098{bottom:135.735427pt;}
.y6_c00098{bottom:171.735428pt;}
.y5_c00098{bottom:207.735429pt;}
.y4_c00098{bottom:243.735431pt;}
.y3_c00098{bottom:279.735427pt;}
.y2_c00098{bottom:323.335424pt;}
.y1_c00098{bottom:410.589436pt;}
.h2_c00098{height:73.359377pt;}
.h1_c00098{height:184.865624pt;}
.h0_c00098{height:540.000000pt;}
.w0_c00098{width:960.000000pt;}
.x0_c00098{left:0.000000pt;}
.x1_c00098{left:30.086616pt;}
.x2_c00098{left:41.724411pt;}
.x3_c00098{left:53.644334pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c32f5b106ab2483401a3c2d3.woff')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.146484;font-style: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;}
.ls0_c00099{letter-spacing:0.000000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00099{word-spacing:0.000000px;}
._2_c00099{margin-left:-5.310000px;}
._1_c00099{margin-left:-3.420000px;}
._0_c00099{margin-left:-1.080000px;}
.fc0_c00099{color:rgb(255,255,255);}
.fs1_c00099{font-size:90.000003px;}
.fs0_c00099{font-size:180.000006px;}
.y0_c00099{bottom:0.000000px;}
.y8_c00099{bottom:105.452388px;}
.y7_c00099{bottom:136.502377px;}
.y6_c00099{bottom:185.552368px;}
.y5_c00099{bottom:234.602369px;}
.y4_c00099{bottom:283.652355px;}
.y3_c00099{bottom:332.702356px;}
.y2_c00099{bottom:363.752352px;}
.y1_c00099{bottom:459.105119px;}
.h2_c00099{height:82.529300px;}
.h1_c00099{height:165.058599px;}
.h0_c00099{height:607.500000px;}
.w0_c00099{width:1080.000000px;}
.x0_c00099{left:0.000000px;}
.x1_c00099{left:33.847443px;}
.x2_c00099{left:46.939963px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.ws0_c00099{word-spacing:0.000000pt;}
._2_c00099{margin-left:-4.720000pt;}
._1_c00099{margin-left:-3.040000pt;}
._0_c00099{margin-left:-0.960000pt;}
.fs1_c00099{font-size:80.000003pt;}
.fs0_c00099{font-size:160.000005pt;}
.y0_c00099{bottom:0.000000pt;}
.y8_c00099{bottom:93.735456pt;}
.y7_c00099{bottom:121.335447pt;}
.y6_c00099{bottom:164.935438pt;}
.y5_c00099{bottom:208.535439pt;}
.y4_c00099{bottom:252.135427pt;}
.y3_c00099{bottom:295.735427pt;}
.y2_c00099{bottom:323.335424pt;}
.y1_c00099{bottom:408.093439pt;}
.h2_c00099{height:73.359377pt;}
.h1_c00099{height:146.718755pt;}
.h0_c00099{height:540.000000pt;}
.w0_c00099{width:960.000000pt;}
.x0_c00099{left:0.000000pt;}
.x1_c00099{left:30.086616pt;}
.x2_c00099{left:41.724411pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef268f8cf50ba51c498027ba.woff')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.146484;font-style: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;}
._1_c00100{margin-left:-4.770000px;}
._2_c00100{margin-left:-2.340000px;}
._0_c00100{margin-left:-1.260000px;}
.fc0_c00100{color:rgb(255,255,255);}
.fs1_c00100{font-size:90.000003px;}
.fs0_c00100{font-size:226.799998px;}
.y0_c00100{bottom:0.000000px;}
.y6_c00100{bottom:82.952342px;}
.y5_c00100{bottom:153.152367px;}
.y4_c00100{bottom:223.352369px;}
.y3_c00100{bottom:293.552360px;}
.y2_c00100{bottom:363.752352px;}
.y1_c00100{bottom:461.913115px;}
.h2_c00100{height:82.529300px;}
.h1_c00100{height:207.973827px;}
.h0_c00100{height:607.500000px;}
.w0_c00100{width:1080.000000px;}
.x0_c00100{left:0.000000px;}
.x1_c00100{left:33.847443px;}
.x2_c00100{left:46.939963px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:0.000000pt;}
._1_c00100{margin-left:-4.240000pt;}
._2_c00100{margin-left:-2.080000pt;}
._0_c00100{margin-left:-1.120000pt;}
.fs1_c00100{font-size:80.000003pt;}
.fs0_c00100{font-size:201.599998pt;}
.y0_c00100{bottom:0.000000pt;}
.y6_c00100{bottom:73.735415pt;}
.y5_c00100{bottom:136.135437pt;}
.y4_c00100{bottom:198.535439pt;}
.y3_c00100{bottom:260.935431pt;}
.y2_c00100{bottom:323.335424pt;}
.y1_c00100{bottom:410.589436pt;}
.h2_c00100{height:73.359377pt;}
.h1_c00100{height:184.865624pt;}
.h0_c00100{height:540.000000pt;}
.w0_c00100{width:960.000000pt;}
.x0_c00100{left:0.000000pt;}
.x1_c00100{left:30.086616pt;}
.x2_c00100{left:41.724411pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4020951bd2c8b31c0fb20199.woff')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.146484;font-style: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;}
.ls0_c00101{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00101{margin-left:-4.320000px;}
._0_c00101{margin-left:-1.620000px;}
.fc0_c00101{color:rgb(255,255,255);}
.fs1_c00101{font-size:90.000003px;}
.fs0_c00101{font-size:226.799998px;}
.y0_c00101{bottom:0.000000px;}
.y4_c00101{bottom:208.052368px;}
.y3_c00101{bottom:239.102364px;}
.y2_c00101{bottom:332.252351px;}
.y1_c00101{bottom:461.913115px;}
.h2_c00101{height:82.529300px;}
.h1_c00101{height:207.973827px;}
.h0_c00101{height:607.500000px;}
.w0_c00101{width:1080.000000px;}
.x0_c00101{left:0.000000px;}
.x1_c00101{left:33.847443px;}
.x2_c00101{left:46.939963px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ws0_c00101{word-spacing:0.000000pt;}
._1_c00101{margin-left:-3.840000pt;}
._0_c00101{margin-left:-1.440000pt;}
.fs1_c00101{font-size:80.000003pt;}
.fs0_c00101{font-size:201.599998pt;}
.y0_c00101{bottom:0.000000pt;}
.y4_c00101{bottom:184.935439pt;}
.y3_c00101{bottom:212.535435pt;}
.y2_c00101{bottom:295.335423pt;}
.y1_c00101{bottom:410.589436pt;}
.h2_c00101{height:73.359377pt;}
.h1_c00101{height:184.865624pt;}
.h0_c00101{height:540.000000pt;}
.w0_c00101{width:960.000000pt;}
.x0_c00101{left:0.000000pt;}
.x1_c00101{left:30.086616pt;}
.x2_c00101{left:41.724411pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ddac840f02219f3e9e4edadc.woff')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.146484;font-style: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;}
.ls0_c00102{letter-spacing:0.000000px;}
.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;}
._1_c00102{margin-left:-846.300006px;}
._0_c00102{margin-left:-1.680000px;}
.fc1_c00102{color:transparent;}
.fc0_c00102{color:rgb(120,144,205);}
.fs0_c00102{font-size:60.000000px;}
.y0_c00102{bottom:0.000000px;}
.y1_c00102{bottom:15.478912px;}
.h1_c00102{height:55.019532px;}
.h0_c00102{height:607.500000px;}
.w0_c00102{width:1080.000000px;}
.x0_c00102{left:0.000000px;}
.x1_c00102{left:841.071908px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ws0_c00102{word-spacing:0.000000pt;}
._1_c00102{margin-left:-752.266672pt;}
._0_c00102{margin-left:-1.493333pt;}
.fs0_c00102{font-size:53.333334pt;}
.y0_c00102{bottom:0.000000pt;}
.y1_c00102{bottom:13.759033pt;}
.h1_c00102{height:48.906250pt;}
.h0_c00102{height:540.000000pt;}
.w0_c00102{width:960.000000pt;}
.x0_c00102{left:0.000000pt;}
.x1_c00102{left:747.619474pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_25028986c4a5396a31c1f86b.woff')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.146484;font-style:normal;font-weight:normal;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_74d8a217d730086207eefe8b.woff')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:0.746094;font-style:normal;font-weight:normal;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_34c531513fc75f87e78a2498.woff')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:0.965379;font-style: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);}
.m1_c00103{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls4_c00103{letter-spacing:0.000000px;}
.ls1_c00103{letter-spacing:0.011697px;}
.ls2_c00103{letter-spacing:0.011787px;}
.ls3_c00103{letter-spacing:0.011877px;}
.ls0_c00103{letter-spacing:106.199994px;}
.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;}
._2_c00103{margin-left:-6.334201px;}
._3_c00103{margin-left:-4.692904px;}
._0_c00103{margin-left:-2.386800px;}
._1_c00103{margin-left:-1.274097px;}
.fc2_c00103{color:rgb(201,218,248);}
.fc1_c00103{color:rgb(240,98,146);}
.fc0_c00103{color:rgb(255,255,255);}
.fs1_c00103{font-size:91.800012px;}
.fs0_c00103{font-size:226.799998px;}
.y0_c00103{bottom:0.000000px;}
.y8_c00103{bottom:128.954977px;}
.y7_c00103{bottom:155.117978px;}
.y6_c00103{bottom:207.443968px;}
.y5_c00103{bottom:233.606969px;}
.y4_c00103{bottom:285.932960px;}
.y3_c00103{bottom:312.095961px;}
.y2_c00103{bottom:364.421950px;}
.y1_c00103{bottom:461.913115px;}
.h2_c00103{height:84.179894px;}
.h1_c00103{height:207.973827px;}
.h0_c00103{height:607.500000px;}
.w0_c00103{width:1080.000000px;}
.x0_c00103{left:0.000000px;}
.x1_c00103{left:33.847443px;}
.x2_c00103{left:51.439963px;}
.x3_c00103{left:100.939964px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls4_c00103{letter-spacing:0.000000pt;}
.ls1_c00103{letter-spacing:0.010397pt;}
.ls2_c00103{letter-spacing:0.010477pt;}
.ls3_c00103{letter-spacing:0.010557pt;}
.ls0_c00103{letter-spacing:94.399995pt;}
.ws0_c00103{word-spacing:0.000000pt;}
._2_c00103{margin-left:-5.630401pt;}
._3_c00103{margin-left:-4.171470pt;}
._0_c00103{margin-left:-2.121600pt;}
._1_c00103{margin-left:-1.132531pt;}
.fs1_c00103{font-size:81.600011pt;}
.fs0_c00103{font-size:201.599998pt;}
.y0_c00103{bottom:0.000000pt;}
.y8_c00103{bottom:114.626646pt;}
.y7_c00103{bottom:137.882647pt;}
.y6_c00103{bottom:184.394639pt;}
.y5_c00103{bottom:207.650639pt;}
.y4_c00103{bottom:254.162631pt;}
.y3_c00103{bottom:277.418632pt;}
.y2_c00103{bottom:323.930622pt;}
.y1_c00103{bottom:410.589436pt;}
.h2_c00103{height:74.826572pt;}
.h1_c00103{height:184.865624pt;}
.h0_c00103{height:540.000000pt;}
.w0_c00103{width:960.000000pt;}
.x0_c00103{left:0.000000pt;}
.x1_c00103{left:30.086616pt;}
.x2_c00103{left:45.724411pt;}
.x3_c00103{left:89.724413pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3530ca468ed513b29833ff6.woff')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.146484;font-style:normal;font-weight:normal;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_74d8a217d730086207eefe8b.woff')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:0.746094;font-style: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;}
.ls1_c00104{letter-spacing:0.000000px;}
.ls0_c00104{letter-spacing:108.000003px;}
.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;}
._2_c00104{margin-left:-5.760000px;}
._1_c00104{margin-left:-3.600000px;}
._3_c00104{margin-left:-2.340000px;}
._0_c00104{margin-left:-1.260000px;}
._4_c00104{width:1.350000px;}
.fc0_c00104{color:rgb(255,255,255);}
.fs1_c00104{font-size:90.000003px;}
.fs0_c00104{font-size:226.799998px;}
.y0_c00104{bottom:0.000000px;}
.y6_c00104{bottom:165.302367px;}
.y5_c00104{bottom:222.002369px;}
.y4_c00104{bottom:278.702359px;}
.y3_c00104{bottom:307.052360px;}
.y2_c00104{bottom:363.752352px;}
.y1_c00104{bottom:461.913115px;}
.h2_c00104{height:82.529300px;}
.h1_c00104{height:207.973827px;}
.h0_c00104{height:607.500000px;}
.w0_c00104{width:1080.000000px;}
.x0_c00104{left:0.000000px;}
.x1_c00104{left:33.847443px;}
.x2_c00104{left:51.439963px;}
.x3_c00104{left:100.939964px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls1_c00104{letter-spacing:0.000000pt;}
.ls0_c00104{letter-spacing:96.000003pt;}
.ws0_c00104{word-spacing:0.000000pt;}
._2_c00104{margin-left:-5.120000pt;}
._1_c00104{margin-left:-3.200000pt;}
._3_c00104{margin-left:-2.080000pt;}
._0_c00104{margin-left:-1.120000pt;}
._4_c00104{width:1.200000pt;}
.fs1_c00104{font-size:80.000003pt;}
.fs0_c00104{font-size:201.599998pt;}
.y0_c00104{bottom:0.000000pt;}
.y6_c00104{bottom:146.935437pt;}
.y5_c00104{bottom:197.335439pt;}
.y4_c00104{bottom:247.735431pt;}
.y3_c00104{bottom:272.935431pt;}
.y2_c00104{bottom:323.335424pt;}
.y1_c00104{bottom:410.589436pt;}
.h2_c00104{height:73.359377pt;}
.h1_c00104{height:184.865624pt;}
.h0_c00104{height:540.000000pt;}
.w0_c00104{width:960.000000pt;}
.x0_c00104{left:0.000000pt;}
.x1_c00104{left:30.086616pt;}
.x2_c00104{left:45.724411pt;}
.x3_c00104{left:89.724413pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_06cda22fdf7f03ae02f71c09.woff')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.146484;font-style:normal;font-weight:normal;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_74d8a217d730086207eefe8b.woff')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:0.746094;font-style: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;}
.ls1_c00105{letter-spacing:0.000000px;}
.ls0_c00105{letter-spacing:108.000003px;}
.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:0.000000px;}
._1_c00105{margin-left:-5.220000px;}
._2_c00105{margin-left:-2.340000px;}
._0_c00105{margin-left:-1.170000px;}
.fc0_c00105{color:rgb(255,255,255);}
.fs1_c00105{font-size:90.000003px;}
.fs0_c00105{font-size:226.799998px;}
.y0_c00105{bottom:0.000000px;}
.y8_c00105{bottom:100.014014px;}
.y7_c00105{bottom:131.064026px;}
.y6_c00105{bottom:162.114016px;}
.y5_c00105{bottom:224.213995px;}
.y4_c00105{bottom:286.313980px;}
.y3_c00105{bottom:317.363971px;}
.y2_c00105{bottom:379.463968px;}
.y1_c00105{bottom:461.913115px;}
.h2_c00105{height:82.529300px;}
.h1_c00105{height:207.973827px;}
.h0_c00105{height:607.500000px;}
.w0_c00105{width:1080.000000px;}
.x0_c00105{left:0.000000px;}
.x1_c00105{left:33.847443px;}
.x2_c00105{left:51.439963px;}
.x3_c00105{left:100.939964px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls1_c00105{letter-spacing:0.000000pt;}
.ls0_c00105{letter-spacing:96.000003pt;}
.ws0_c00105{word-spacing:0.000000pt;}
._1_c00105{margin-left:-4.640000pt;}
._2_c00105{margin-left:-2.080000pt;}
._0_c00105{margin-left:-1.040000pt;}
.fs1_c00105{font-size:80.000003pt;}
.fs0_c00105{font-size:201.599998pt;}
.y0_c00105{bottom:0.000000pt;}
.y8_c00105{bottom:88.901346pt;}
.y7_c00105{bottom:116.501356pt;}
.y6_c00105{bottom:144.101347pt;}
.y5_c00105{bottom:199.301329pt;}
.y4_c00105{bottom:254.501316pt;}
.y3_c00105{bottom:282.101308pt;}
.y2_c00105{bottom:337.301305pt;}
.y1_c00105{bottom:410.589436pt;}
.h2_c00105{height:73.359377pt;}
.h1_c00105{height:184.865624pt;}
.h0_c00105{height:540.000000pt;}
.w0_c00105{width:960.000000pt;}
.x0_c00105{left:0.000000pt;}
.x1_c00105{left:30.086616pt;}
.x2_c00105{left:45.724411pt;}
.x3_c00105{left:89.724413pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4320df64beb8826517998e2a.woff')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.146484;font-style:normal;font-weight:normal;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_74d8a217d730086207eefe8b.woff')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:0.746094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls1_c00106{letter-spacing:0.000000px;}
.ls0_c00106{letter-spacing:108.000003px;}
.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;}
._1_c00106{margin-left:-2.430000px;}
._0_c00106{margin-left:-1.170000px;}
._2_c00106{width:3.150000px;}
.fc0_c00106{color:rgb(255,255,255);}
.fs1_c00106{font-size:90.000003px;}
.fs0_c00106{font-size:226.799998px;}
.y0_c00106{bottom:0.000000px;}
.y6_c00106{bottom:146.402400px;}
.y5_c00106{bottom:208.502380px;}
.y4_c00106{bottom:270.602365px;}
.y3_c00106{bottom:301.652356px;}
.y2_c00106{bottom:363.752352px;}
.y1_c00106{bottom:461.913115px;}
.h2_c00106{height:82.529300px;}
.h1_c00106{height:207.973827px;}
.h0_c00106{height:607.500000px;}
.w0_c00106{width:1080.000000px;}
.x0_c00106{left:0.000000px;}
.x1_c00106{left:33.847443px;}
.x2_c00106{left:51.439963px;}
.x3_c00106{left:100.939964px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls1_c00106{letter-spacing:0.000000pt;}
.ls0_c00106{letter-spacing:96.000003pt;}
.ws0_c00106{word-spacing:0.000000pt;}
._1_c00106{margin-left:-2.160000pt;}
._0_c00106{margin-left:-1.040000pt;}
._2_c00106{width:2.800000pt;}
.fs1_c00106{font-size:80.000003pt;}
.fs0_c00106{font-size:201.599998pt;}
.y0_c00106{bottom:0.000000pt;}
.y6_c00106{bottom:130.135467pt;}
.y5_c00106{bottom:185.335449pt;}
.y4_c00106{bottom:240.535435pt;}
.y3_c00106{bottom:268.135427pt;}
.y2_c00106{bottom:323.335424pt;}
.y1_c00106{bottom:410.589436pt;}
.h2_c00106{height:73.359377pt;}
.h1_c00106{height:184.865624pt;}
.h0_c00106{height:540.000000pt;}
.w0_c00106{width:960.000000pt;}
.x0_c00106{left:0.000000pt;}
.x1_c00106{left:30.086616pt;}
.x2_c00106{left:45.724411pt;}
.x3_c00106{left:89.724413pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4632fdc01a6e6e28c7a5dd38.woff')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.146484;font-style:normal;font-weight:normal;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_74d8a217d730086207eefe8b.woff')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:0.746094;font-style: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;}
.ls1_c00107{letter-spacing:0.000000px;}
.ls0_c00107{letter-spacing:108.000003px;}
.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:0.000000px;}
._1_c00107{margin-left:-2.520000px;}
._0_c00107{margin-left:-1.440000px;}
.fc0_c00107{color:rgb(255,255,255);}
.fs1_c00107{font-size:90.000003px;}
.fs0_c00107{font-size:226.799998px;}
.y0_c00107{bottom:0.000000px;}
.y5_c00107{bottom:136.952377px;}
.y4_c00107{bottom:212.552357px;}
.y3_c00107{bottom:288.152355px;}
.y2_c00107{bottom:363.752352px;}
.y1_c00107{bottom:461.913115px;}
.h2_c00107{height:82.529300px;}
.h1_c00107{height:207.973827px;}
.h0_c00107{height:607.500000px;}
.w0_c00107{width:1080.000000px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:33.847443px;}
.x2_c00107{left:51.439963px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls1_c00107{letter-spacing:0.000000pt;}
.ls0_c00107{letter-spacing:96.000003pt;}
.ws0_c00107{word-spacing:0.000000pt;}
._1_c00107{margin-left:-2.240000pt;}
._0_c00107{margin-left:-1.280000pt;}
.fs1_c00107{font-size:80.000003pt;}
.fs0_c00107{font-size:201.599998pt;}
.y0_c00107{bottom:0.000000pt;}
.y5_c00107{bottom:121.735447pt;}
.y4_c00107{bottom:188.935429pt;}
.y3_c00107{bottom:256.135427pt;}
.y2_c00107{bottom:323.335424pt;}
.y1_c00107{bottom:410.589436pt;}
.h2_c00107{height:73.359377pt;}
.h1_c00107{height:184.865624pt;}
.h0_c00107{height:540.000000pt;}
.w0_c00107{width:960.000000pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:30.086616pt;}
.x2_c00107{left:45.724411pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b372f23d34fcbae610c5569.woff')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.146484;font-style:normal;font-weight:normal;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_74d8a217d730086207eefe8b.woff')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:0.746094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00108;src:url('chunks/assets/font_fae7fcdeb6b22c6c13f2fb28.woff')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:0.965379;font-style: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);}
.m1_c00108{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls2_c00108{letter-spacing:0.000000px;}
.ls1_c00108{letter-spacing:0.019345px;}
.ls0_c00108{letter-spacing:108.000003px;}
.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;}
._1_c00108{margin-left:-2.340000px;}
._0_c00108{margin-left:-1.260000px;}
._2_c00108{width:1.036035px;}
.fc2_c00108{color:rgb(201,218,248);}
.fc1_c00108{color:rgb(240,98,146);}
.fc0_c00108{color:rgb(255,255,255);}
.fs2_c00108{font-size:88.540806px;}
.fs1_c00108{font-size:90.000003px;}
.fs0_c00108{font-size:226.799998px;}
.y0_c00108{bottom:0.000000px;}
.y7_c00108{bottom:120.752366px;}
.y6_c00108{bottom:169.352367px;}
.y5_c00108{bottom:217.952358px;}
.y4_c00108{bottom:266.552359px;}
.y3_c00108{bottom:315.152356px;}
.y2_c00108{bottom:363.752352px;}
.y1_c00108{bottom:461.913115px;}
.h2_c00108{height:82.529300px;}
.h1_c00108{height:207.973827px;}
.h0_c00108{height:607.500000px;}
.w0_c00108{width:1080.000000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:33.847443px;}
.x2_c00108{left:51.439963px;}
.x3_c00108{left:100.939964px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls2_c00108{letter-spacing:0.000000pt;}
.ls1_c00108{letter-spacing:0.017196pt;}
.ls0_c00108{letter-spacing:96.000003pt;}
.ws0_c00108{word-spacing:0.000000pt;}
._1_c00108{margin-left:-2.080000pt;}
._0_c00108{margin-left:-1.120000pt;}
._2_c00108{width:0.920920pt;}
.fs2_c00108{font-size:78.702939pt;}
.fs1_c00108{font-size:80.000003pt;}
.fs0_c00108{font-size:201.599998pt;}
.y0_c00108{bottom:0.000000pt;}
.y7_c00108{bottom:107.335436pt;}
.y6_c00108{bottom:150.535438pt;}
.y5_c00108{bottom:193.735429pt;}
.y4_c00108{bottom:236.935430pt;}
.y3_c00108{bottom:280.135428pt;}
.y2_c00108{bottom:323.335424pt;}
.y1_c00108{bottom:410.589436pt;}
.h2_c00108{height:73.359377pt;}
.h1_c00108{height:184.865624pt;}
.h0_c00108{height:540.000000pt;}
.w0_c00108{width:960.000000pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:30.086616pt;}
.x2_c00108{left:45.724411pt;}
.x3_c00108{left:89.724413pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e0c3789a96a6691ca02f0ccb.woff')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.146484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00109;src:url('chunks/assets/font_74d8a217d730086207eefe8b.woff')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:0.746094;font-style: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;}
.ls1_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:106.500000px;}
.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;}
._1_c00109{margin-left:-2.418000px;}
._0_c00109{margin-left:-1.092000px;}
._2_c00109{width:1.248000px;}
.fc0_c00109{color:rgb(255,255,255);}
.fs1_c00109{font-size:78.000005px;}
.fs0_c00109{font-size:226.799998px;}
.y0_c00109{bottom:0.000000px;}
.y8_c00109{bottom:99.346810px;}
.y7_c00109{bottom:153.166778px;}
.y6_c00109{bottom:206.986768px;}
.y5_c00109{bottom:233.896769px;}
.y4_c00109{bottom:287.716771px;}
.y3_c00109{bottom:341.536766px;}
.y2_c00109{bottom:395.356763px;}
.y1_c00109{bottom:461.913115px;}
.h2_c00109{height:71.525396px;}
.h1_c00109{height:207.973827px;}
.h0_c00109{height:607.500000px;}
.w0_c00109{width:1080.000000px;}
.x0_c00109{left:0.000000px;}
.x1_c00109{left:33.847443px;}
.x2_c00109{left:53.069885px;}
.x3_c00109{left:99.194887px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls1_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:94.666667pt;}
.ws0_c00109{word-spacing:0.000000pt;}
._1_c00109{margin-left:-2.149333pt;}
._0_c00109{margin-left:-0.970667pt;}
._2_c00109{width:1.109333pt;}
.fs1_c00109{font-size:69.333338pt;}
.fs0_c00109{font-size:201.599998pt;}
.y0_c00109{bottom:0.000000pt;}
.y8_c00109{bottom:88.308276pt;}
.y7_c00109{bottom:136.148247pt;}
.y6_c00109{bottom:183.988239pt;}
.y5_c00109{bottom:207.908239pt;}
.y4_c00109{bottom:255.748241pt;}
.y3_c00109{bottom:303.588236pt;}
.y2_c00109{bottom:351.428234pt;}
.y1_c00109{bottom:410.589436pt;}
.h2_c00109{height:63.578129pt;}
.h1_c00109{height:184.865624pt;}
.h0_c00109{height:540.000000pt;}
.w0_c00109{width:960.000000pt;}
.x0_c00109{left:0.000000pt;}
.x1_c00109{left:30.086616pt;}
.x2_c00109{left:47.173232pt;}
.x3_c00109{left:88.173233pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e5273961018273a5b3099ee.woff')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.146484;font-style: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;}
.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;}
._1_c00110{margin-left:-846.300006px;}
._0_c00110{margin-left:-1.680000px;}
.fc1_c00110{color:transparent;}
.fc0_c00110{color:rgb(120,144,205);}
.fs0_c00110{font-size:60.000000px;}
.y0_c00110{bottom:0.000000px;}
.y1_c00110{bottom:15.478912px;}
.h1_c00110{height:55.019532px;}
.h0_c00110{height:607.500000px;}
.w0_c00110{width:1080.000000px;}
.x0_c00110{left:0.000000px;}
.x1_c00110{left:841.071908px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.ws0_c00110{word-spacing:0.000000pt;}
._1_c00110{margin-left:-752.266672pt;}
._0_c00110{margin-left:-1.493333pt;}
.fs0_c00110{font-size:53.333334pt;}
.y0_c00110{bottom:0.000000pt;}
.y1_c00110{bottom:13.759033pt;}
.h1_c00110{height:48.906250pt;}
.h0_c00110{height:540.000000pt;}
.w0_c00110{width:960.000000pt;}
.x0_c00110{left:0.000000pt;}
.x1_c00110{left:747.619474pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e1a036b4b3857260d45310c7.woff')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.146484;font-style:normal;font-weight:normal;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_74d8a217d730086207eefe8b.woff')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:0.746094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls1_c00111{letter-spacing:0.000000px;}
.ls0_c00111{letter-spacing:108.000003px;}
.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:-4.309200px;}
._2_c00111{margin-left:-2.520000px;}
._0_c00111{margin-left:-1.360800px;}
.fc0_c00111{color:rgb(255,255,255);}
.fs1_c00111{font-size:90.000003px;}
.fs0_c00111{font-size:226.799998px;}
.y0_c00111{bottom:0.000000px;}
.y5_c00111{bottom:173.822251px;}
.y4_c00111{bottom:227.822242px;}
.y3_c00111{bottom:281.822232px;}
.y2_c00111{bottom:335.822235px;}
.y1_c00111{bottom:461.913115px;}
.h2_c00111{height:82.529300px;}
.h1_c00111{height:207.973827px;}
.h0_c00111{height:607.500000px;}
.w0_c00111{width:1080.000000px;}
.x0_c00111{left:0.000000px;}
.x1_c00111{left:33.847443px;}
.x2_c00111{left:51.439963px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls1_c00111{letter-spacing:0.000000pt;}
.ls0_c00111{letter-spacing:96.000003pt;}
.ws0_c00111{word-spacing:0.000000pt;}
._1_c00111{margin-left:-3.830400pt;}
._2_c00111{margin-left:-2.240000pt;}
._0_c00111{margin-left:-1.209600pt;}
.fs1_c00111{font-size:80.000003pt;}
.fs0_c00111{font-size:201.599998pt;}
.y0_c00111{bottom:0.000000pt;}
.y5_c00111{bottom:154.508668pt;}
.y4_c00111{bottom:202.508659pt;}
.y3_c00111{bottom:250.508651pt;}
.y2_c00111{bottom:298.508653pt;}
.y1_c00111{bottom:410.589436pt;}
.h2_c00111{height:73.359377pt;}
.h1_c00111{height:184.865624pt;}
.h0_c00111{height:540.000000pt;}
.w0_c00111{width:960.000000pt;}
.x0_c00111{left:0.000000pt;}
.x1_c00111{left:30.086616pt;}
.x2_c00111{left:45.724411pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c04b2b71e51d984b9ac83cd0.woff')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.146484;font-style: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;}
.ls0_c00112{letter-spacing:0.000000px;}
.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{margin-left:-5.040000px;}
._0_c00112{margin-left:-1.587600px;}
.fc0_c00112{color:rgb(255,255,255);}
.fs1_c00112{font-size:84.000000px;}
.fs0_c00112{font-size:226.799998px;}
.y0_c00112{bottom:0.000000px;}
.yc_c00112{bottom:64.571754px;}
.yb_c00112{bottom:97.331744px;}
.ya_c00112{bottom:130.091745px;}
.y9_c00112{bottom:162.851723px;}
.y8_c00112{bottom:195.611713px;}
.y7_c00112{bottom:228.371714px;}
.y6_c00112{bottom:261.131704px;}
.y5_c00112{bottom:293.891705px;}
.y4_c00112{bottom:326.651695px;}
.y3_c00112{bottom:359.411692px;}
.y2_c00112{bottom:392.171688px;}
.y1_c00112{bottom:461.913115px;}
.h2_c00112{height:77.027343px;}
.h1_c00112{height:207.973827px;}
.h0_c00112{height:607.500000px;}
.w0_c00112{width:1080.000000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:33.847443px;}
.x2_c00112{left:46.939963px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls0_c00112{letter-spacing:0.000000pt;}
.ws0_c00112{word-spacing:0.000000pt;}
._1_c00112{margin-left:-4.480000pt;}
._0_c00112{margin-left:-1.411200pt;}
.fs1_c00112{font-size:74.666666pt;}
.fs0_c00112{font-size:201.599998pt;}
.y0_c00112{bottom:0.000000pt;}
.yc_c00112{bottom:57.397115pt;}
.yb_c00112{bottom:86.517105pt;}
.ya_c00112{bottom:115.637106pt;}
.y9_c00112{bottom:144.757087pt;}
.y8_c00112{bottom:173.877078pt;}
.y7_c00112{bottom:202.997079pt;}
.y6_c00112{bottom:232.117070pt;}
.y5_c00112{bottom:261.237071pt;}
.y4_c00112{bottom:290.357062pt;}
.y3_c00112{bottom:319.477060pt;}
.y2_c00112{bottom:348.597056pt;}
.y1_c00112{bottom:410.589436pt;}
.h2_c00112{height:68.468750pt;}
.h1_c00112{height:184.865624pt;}
.h0_c00112{height:540.000000pt;}
.w0_c00112{width:960.000000pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:30.086616pt;}
.x2_c00112{left:41.724411pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ccee287d67eb8ab5990262d.woff')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.146484;font-style: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;}
.ls0_c00113{letter-spacing:0.000000px;}
.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;}
._0_c00113{margin-left:-1.680000px;}
.fc0_c00113{color:rgb(120,144,205);}
.fs0_c00113{font-size:60.000000px;}
.y0_c00113{bottom:0.000000px;}
.y1_c00113{bottom:15.478912px;}
.h1_c00113{height:55.019532px;}
.h0_c00113{height:607.500000px;}
.w0_c00113{width:1080.000000px;}
.x0_c00113{left:0.000000px;}
.x1_c00113{left:841.071908px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls0_c00113{letter-spacing:0.000000pt;}
.ws0_c00113{word-spacing:0.000000pt;}
._0_c00113{margin-left:-1.493333pt;}
.fs0_c00113{font-size:53.333334pt;}
.y0_c00113{bottom:0.000000pt;}
.y1_c00113{bottom:13.759033pt;}
.h1_c00113{height:48.906250pt;}
.h0_c00113{height:540.000000pt;}
.w0_c00113{width:960.000000pt;}
.x0_c00113{left:0.000000pt;}
.x1_c00113{left:747.619474pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_34bba8e6ae13d99ebec458c9.woff')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.090332;font-style:normal;font-weight:normal;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_9b3987118cd0ad24ebbd66db.woff')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00114;src:url('chunks/assets/font_99914466131490be084e54de.woff')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.091797;font-style: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;}
.ls1_c00114{letter-spacing:-0.352800px;}
.ls0_c00114{letter-spacing:0.000000px;}
.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:-258.779856px;}
.ws1_c00114{word-spacing:-65.801232px;}
.ws2_c00114{word-spacing:-24.408720px;}
.ws3_c00114{word-spacing:0.000000px;}
._1_c00114{margin-left:-8.424000px;}
._3_c00114{margin-left:-7.312320px;}
._4_c00114{margin-left:-6.159312px;}
._0_c00114{margin-left:-3.564000px;}
._2_c00114{margin-left:-1.296000px;}
._5_c00114{width:1.528272px;}
.fc0_c00114{color:rgb(0,0,0);}
.fs2_c00114{font-size:120.240000px;}
.fs0_c00114{font-size:324.000000px;}
.fs1_c00114{font-size:324.144000px;}
.y0_c00114{bottom:0.000000px;}
.y3_c00114{bottom:252.900000px;}
.y2_c00114{bottom:424.260000px;}
.y1_c00114{bottom:511.740000px;}
.h3_c00114{height:104.211914px;}
.h1_c00114{height:280.810547px;}
.h2_c00114{height:281.410172px;}
.h0_c00114{height:810.000000px;}
.w1_c00114{width:1439.999979px;}
.w0_c00114{width:1440.000000px;}
.x0_c00114{left:0.000000px;}
.x2_c00114{left:221.684979px;}
.x1_c00114{left:404.969979px;}
.x3_c00114{left:587.309979px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls1_c00114{letter-spacing:-0.313600pt;}
.ls0_c00114{letter-spacing:0.000000pt;}
.ws0_c00114{word-spacing:-230.026539pt;}
.ws1_c00114{word-spacing:-58.489984pt;}
.ws2_c00114{word-spacing:-21.696640pt;}
.ws3_c00114{word-spacing:0.000000pt;}
._1_c00114{margin-left:-7.488000pt;}
._3_c00114{margin-left:-6.499840pt;}
._4_c00114{margin-left:-5.474944pt;}
._0_c00114{margin-left:-3.168000pt;}
._2_c00114{margin-left:-1.152000pt;}
._5_c00114{width:1.358464pt;}
.fs2_c00114{font-size:106.880000pt;}
.fs0_c00114{font-size:288.000000pt;}
.fs1_c00114{font-size:288.128000pt;}
.y0_c00114{bottom:0.000000pt;}
.y3_c00114{bottom:224.800000pt;}
.y2_c00114{bottom:377.120000pt;}
.y1_c00114{bottom:454.880000pt;}
.h3_c00114{height:92.632812pt;}
.h1_c00114{height:249.609375pt;}
.h2_c00114{height:250.142375pt;}
.h0_c00114{height:720.000000pt;}
.w1_c00114{width:1279.999981pt;}
.w0_c00114{width:1280.000000pt;}
.x0_c00114{left:0.000000pt;}
.x2_c00114{left:197.053314pt;}
.x1_c00114{left:359.973314pt;}
.x3_c00114{left:522.053314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00115{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
}
.y0_c00115{bottom:0.000000px;}
.h0_c00115{height:810.000000px;}
.w0_c00115{width:1440.000000px;}
.x0_c00115{left:0.000000px;}
@media print{
.y0_c00115{bottom:0.000000pt;}
.h0_c00115{height:720.000000pt;}
.w0_c00115{width:1280.000000pt;}
.x0_c00115{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_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_2245170b82408cc392350c32.woff')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.091797;font-style:normal;font-weight:normal;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_6b82286b0dec2cffb3686f2f.woff')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.090332;font-style: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;}
.ls1_c00116{letter-spacing:-0.205200px;}
.ls0_c00116{letter-spacing:0.000000px;}
.ls2_c00116{letter-spacing:0.128400px;}
.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:-121.780512px;}
.ws1_c00116{word-spacing:0.000000px;}
._2_c00116{margin-left:-3.840000px;}
._1_c00116{margin-left:-1.404000px;}
._4_c00116{width:1.188000px;}
._3_c00116{width:2.220000px;}
._0_c00116{width:8.998560px;}
.fc2_c00116{color:rgb(255,255,255);}
.fc1_c00116{color:rgb(0,0,0);}
.fc0_c00116{color:rgb(0,88,54);}
.fs1_c00116{font-size:108.000000px;}
.fs3_c00116{font-size:239.760000px;}
.fs2_c00116{font-size:480.384000px;}
.fs0_c00116{font-size:599.904000px;}
.y0_c00116{bottom:0.000000px;}
.y4_c00116{bottom:90.756000px;}
.y3_c00116{bottom:285.915000px;}
.y2_c00116{bottom:555.150000px;}
.y1_c00116{bottom:608.250000px;}
.h2_c00116{height:93.603516px;}
.h4_c00116{height:208.151016px;}
.h3_c00116{height:417.052125px;}
.h1_c00116{height:520.815094px;}
.h0_c00116{height:810.000000px;}
.w1_c00116{width:1439.999979px;}
.w0_c00116{width:1440.000000px;}
.x0_c00116{left:0.000000px;}
.x3_c00116{left:163.409979px;}
.x2_c00116{left:352.439979px;}
.x1_c00116{left:571.649979px;}
.x4_c00116{left:655.889979px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls1_c00116{letter-spacing:-0.182400pt;}
.ls0_c00116{letter-spacing:0.000000pt;}
.ls2_c00116{letter-spacing:0.114133pt;}
.ws0_c00116{word-spacing:-108.249344pt;}
.ws1_c00116{word-spacing:0.000000pt;}
._2_c00116{margin-left:-3.413333pt;}
._1_c00116{margin-left:-1.248000pt;}
._4_c00116{width:1.056000pt;}
._3_c00116{width:1.973333pt;}
._0_c00116{width:7.998720pt;}
.fs1_c00116{font-size:96.000000pt;}
.fs3_c00116{font-size:213.120000pt;}
.fs2_c00116{font-size:427.008000pt;}
.fs0_c00116{font-size:533.248000pt;}
.y0_c00116{bottom:0.000000pt;}
.y4_c00116{bottom:80.672000pt;}
.y3_c00116{bottom:254.146667pt;}
.y2_c00116{bottom:493.466667pt;}
.y1_c00116{bottom:540.666667pt;}
.h2_c00116{height:83.203125pt;}
.h4_c00116{height:185.023125pt;}
.h3_c00116{height:370.713000pt;}
.h1_c00116{height:462.946750pt;}
.h0_c00116{height:720.000000pt;}
.w1_c00116{width:1279.999981pt;}
.w0_c00116{width:1280.000000pt;}
.x0_c00116{left:0.000000pt;}
.x3_c00116{left:145.253314pt;}
.x2_c00116{left:313.279981pt;}
.x1_c00116{left:508.133314pt;}
.x4_c00116{left:583.013314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7649a028074095e50ce15684.woff')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00117;src:url('chunks/assets/font_660d1d49d084b3ab87310f91.woff')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00117;src:url('chunks/assets/font_2c3d8fbaba545f1712f0ae98.woff')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00117;src:url('chunks/assets/font_506754ff6ee64cb03d7ce9a8.woff')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls2_c00117{letter-spacing:0.000000px;}
.ls3_c00117{letter-spacing:0.207600px;}
.ls0_c00117{letter-spacing:187.913280px;}
.ls1_c00117{letter-spacing:398.064720px;}
.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:-34.055280px;}
.ws1_c00117{word-spacing:-28.062720px;}
.ws2_c00117{word-spacing:0.000000px;}
._7_c00117{margin-left:-11.137200px;}
._6_c00117{margin-left:-8.255280px;}
._2_c00117{margin-left:-4.529520px;}
._1_c00117{margin-left:-2.684160px;}
._4_c00117{margin-left:-1.054080px;}
._0_c00117{width:1.859520px;}
._5_c00117{width:3.522960px;}
._8_c00117{width:32.731920px;}
._3_c00117{width:404.057280px;}
.fc1_c00117{color:rgb(0,0,0);}
.fc0_c00117{color:rgb(0,88,54);}
.fs1_c00117{font-size:138.240000px;}
.fs0_c00117{font-size:167.760000px;}
.fs2_c00117{font-size:167.904000px;}
.y0_c00117{bottom:0.000000px;}
.yb_c00117{bottom:162.210000px;}
.ya_c00117{bottom:205.815000px;}
.y9_c00117{bottom:254.055000px;}
.y8_c00117{bottom:295.455000px;}
.y7_c00117{bottom:339.045000px;}
.y6_c00117{bottom:389.445000px;}
.y5_c00117{bottom:439.845000px;}
.y4_c00117{bottom:488.085000px;}
.y3_c00117{bottom:531.690000px;}
.y2_c00117{bottom:579.930000px;}
.y1_c00117{bottom:623.490000px;}
.h2_c00117{height:119.812500px;}
.h1_c00117{height:145.643203px;}
.h3_c00117{height:145.768219px;}
.h0_c00117{height:810.000000px;}
.w1_c00117{width:1439.999979px;}
.w0_c00117{width:1440.000000px;}
.x0_c00117{left:0.000000px;}
.x1_c00117{left:70.019979px;}
.x2_c00117{left:124.055979px;}
.x3_c00117{left:178.049979px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls2_c00117{letter-spacing:0.000000pt;}
.ls3_c00117{letter-spacing:0.184533pt;}
.ls0_c00117{letter-spacing:167.034027pt;}
.ls1_c00117{letter-spacing:353.835307pt;}
.ws0_c00117{word-spacing:-30.271360pt;}
.ws1_c00117{word-spacing:-24.944640pt;}
.ws2_c00117{word-spacing:0.000000pt;}
._7_c00117{margin-left:-9.899733pt;}
._6_c00117{margin-left:-7.338027pt;}
._2_c00117{margin-left:-4.026240pt;}
._1_c00117{margin-left:-2.385920pt;}
._4_c00117{margin-left:-0.936960pt;}
._0_c00117{width:1.652907pt;}
._5_c00117{width:3.131520pt;}
._8_c00117{width:29.095040pt;}
._3_c00117{width:359.162027pt;}
.fs1_c00117{font-size:122.880000pt;}
.fs0_c00117{font-size:149.120000pt;}
.fs2_c00117{font-size:149.248000pt;}
.y0_c00117{bottom:0.000000pt;}
.yb_c00117{bottom:144.186667pt;}
.ya_c00117{bottom:182.946667pt;}
.y9_c00117{bottom:225.826667pt;}
.y8_c00117{bottom:262.626667pt;}
.y7_c00117{bottom:301.373333pt;}
.y6_c00117{bottom:346.173333pt;}
.y5_c00117{bottom:390.973333pt;}
.y4_c00117{bottom:433.853333pt;}
.y3_c00117{bottom:472.613333pt;}
.y2_c00117{bottom:515.493333pt;}
.y1_c00117{bottom:554.213333pt;}
.h2_c00117{height:106.500000pt;}
.h1_c00117{height:129.460625pt;}
.h3_c00117{height:129.571750pt;}
.h0_c00117{height:720.000000pt;}
.w1_c00117{width:1279.999981pt;}
.w0_c00117{width:1280.000000pt;}
.x0_c00117{left:0.000000pt;}
.x1_c00117{left:62.239981pt;}
.x2_c00117{left:110.271981pt;}
.x3_c00117{left:158.266648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00118{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
}
.y0_c00118{bottom:0.000000px;}
.h0_c00118{height:810.000000px;}
.w0_c00118{width:1440.000000px;}
.x0_c00118{left:0.000000px;}
@media print{
.y0_c00118{bottom:0.000000pt;}
.h0_c00118{height:720.000000pt;}
.w0_c00118{width:1280.000000pt;}
.x0_c00118{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_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_5ad3a4c6f588e5b9325eca6c.woff')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00119;src:url('chunks/assets/font_6fd830118bf57a157db969c6.woff')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.090332;font-style: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:-121.780512px;}
.ws1_c00119{word-spacing:0.000000px;}
._1_c00119{margin-left:-1.728000px;}
._0_c00119{width:8.998560px;}
.fc1_c00119{color:rgb(0,0,0);}
.fc0_c00119{color:rgb(0,88,54);}
.fs1_c00119{font-size:108.000000px;}
.fs0_c00119{font-size:599.904000px;}
.y0_c00119{bottom:0.000000px;}
.y2_c00119{bottom:597.390000px;}
.y1_c00119{bottom:629.070000px;}
.h2_c00119{height:93.603516px;}
.h1_c00119{height:520.815094px;}
.h0_c00119{height:810.000000px;}
.w1_c00119{width:1439.999979px;}
.w0_c00119{width:1440.000000px;}
.x0_c00119{left:0.000000px;}
.x1_c00119{left:58.427979px;}
.x2_c00119{left:68.867979px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls0_c00119{letter-spacing:0.000000pt;}
.ws0_c00119{word-spacing:-108.249344pt;}
.ws1_c00119{word-spacing:0.000000pt;}
._1_c00119{margin-left:-1.536000pt;}
._0_c00119{width:7.998720pt;}
.fs1_c00119{font-size:96.000000pt;}
.fs0_c00119{font-size:533.248000pt;}
.y0_c00119{bottom:0.000000pt;}
.y2_c00119{bottom:531.013333pt;}
.y1_c00119{bottom:559.173333pt;}
.h2_c00119{height:83.203125pt;}
.h1_c00119{height:462.946750pt;}
.h0_c00119{height:720.000000pt;}
.w1_c00119{width:1279.999981pt;}
.w0_c00119{width:1280.000000pt;}
.x0_c00119{left:0.000000pt;}
.x1_c00119{left:51.935981pt;}
.x2_c00119{left:61.215981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fed16fd878ad005cabda9901.woff')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.091797;font-style:normal;font-weight:normal;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_2fd6acfccd58d64dcb0d4359.woff')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.091797;font-style: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:-180.000000px;}
.ws2_c00120{word-spacing:-36.569232px;}
.ws1_c00120{word-spacing:-36.540000px;}
._1_c00120{margin-left:-3.780000px;}
._0_c00120{margin-left:-2.700000px;}
._2_c00120{margin-left:-1.440000px;}
.fc0_c00120{color:rgb(255,255,255);}
.fs0_c00120{font-size:180.000000px;}
.fs1_c00120{font-size:180.144000px;}
.y0_c00120{bottom:0.000000px;}
.y2_c00120{bottom:182.730000px;}
.y4_c00120{bottom:200.190000px;}
.y1_c00120{bottom:494.025000px;}
.y3_c00120{bottom:602.310000px;}
.h1_c00120{height:156.269531px;}
.h2_c00120{height:156.394547px;}
.h0_c00120{height:810.000000px;}
.w1_c00120{width:1439.999979px;}
.w0_c00120{width:1440.000000px;}
.x0_c00120{left:0.000000px;}
.x1_c00120{left:129.707979px;}
.x2_c00120{left:211.754979px;}
.x3_c00120{left:656.129979px;}
.x4_c00120{left:693.869979px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws0_c00120{word-spacing:-160.000000pt;}
.ws2_c00120{word-spacing:-32.505984pt;}
.ws1_c00120{word-spacing:-32.480000pt;}
._1_c00120{margin-left:-3.360000pt;}
._0_c00120{margin-left:-2.400000pt;}
._2_c00120{margin-left:-1.280000pt;}
.fs0_c00120{font-size:160.000000pt;}
.fs1_c00120{font-size:160.128000pt;}
.y0_c00120{bottom:0.000000pt;}
.y2_c00120{bottom:162.426667pt;}
.y4_c00120{bottom:177.946667pt;}
.y1_c00120{bottom:439.133333pt;}
.y3_c00120{bottom:535.386667pt;}
.h1_c00120{height:138.906250pt;}
.h2_c00120{height:139.017375pt;}
.h0_c00120{height:720.000000pt;}
.w1_c00120{width:1279.999981pt;}
.w0_c00120{width:1280.000000pt;}
.x0_c00120{left:0.000000pt;}
.x1_c00120{left:115.295981pt;}
.x2_c00120{left:188.226648pt;}
.x3_c00120{left:583.226648pt;}
.x4_c00120{left:616.773314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7bca0197ee52d5bb565e0f8.woff')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.091797;font-style: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;}
._0_c00121{margin-left:-1.799712px;}
.fc0_c00121{color:rgb(0,88,54);}
.fs0_c00121{font-size:599.904000px;}
.y0_c00121{bottom:0.000000px;}
.y2_c00121{bottom:259.560000px;}
.y1_c00121{bottom:421.590000px;}
.h1_c00121{height:520.815094px;}
.h0_c00121{height:810.000000px;}
.w1_c00121{width:1439.999979px;}
.w0_c00121{width:1440.000000px;}
.x0_c00121{left:0.000000px;}
.x1_c00121{left:178.814979px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls0_c00121{letter-spacing:0.000000pt;}
.ws0_c00121{word-spacing:0.000000pt;}
._0_c00121{margin-left:-1.599744pt;}
.fs0_c00121{font-size:533.248000pt;}
.y0_c00121{bottom:0.000000pt;}
.y2_c00121{bottom:230.720000pt;}
.y1_c00121{bottom:374.746667pt;}
.h1_c00121{height:462.946750pt;}
.h0_c00121{height:720.000000pt;}
.w1_c00121{width:1279.999981pt;}
.w0_c00121{width:1280.000000pt;}
.x0_c00121{left:0.000000pt;}
.x1_c00121{left:158.946648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d8209d465ba878af1e0569f.woff')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.091797;font-style:normal;font-weight:normal;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_629c5e32ade6c2f233556f53.woff')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.091797;font-style:normal;font-weight:normal;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_9794d7a5568e22a0479838ff.woff')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls1_c00122{letter-spacing:-0.403200px;}
.ls0_c00122{letter-spacing:0.000000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00122{word-spacing:0.000000px;}
._4_c00122{margin-left:-16.398720px;}
._5_c00122{margin-left:-6.585840px;}
._3_c00122{margin-left:-4.322304px;}
._2_c00122{margin-left:-2.970000px;}
._0_c00122{margin-left:-1.350000px;}
._1_c00122{width:1.326000px;}
.fc0_c00122{color:rgb(0,88,54);}
.fs2_c00122{font-size:210.240000px;}
.fs0_c00122{font-size:270.000000px;}
.fs1_c00122{font-size:270.144000px;}
.y0_c00122{bottom:0.000000px;}
.y5_c00122{bottom:115.056000px;}
.y4_c00122{bottom:263.235000px;}
.y3_c00122{bottom:344.235000px;}
.y2_c00122{bottom:425.265000px;}
.y1_c00122{bottom:506.265000px;}
.h3_c00122{height:182.214844px;}
.h1_c00122{height:234.404297px;}
.h2_c00122{height:234.529313px;}
.h0_c00122{height:810.000000px;}
.w1_c00122{width:1439.999979px;}
.w0_c00122{width:1440.000000px;}
.x0_c00122{left:0.000000px;}
.x1_c00122{left:54.935979px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls1_c00122{letter-spacing:-0.358400pt;}
.ls0_c00122{letter-spacing:0.000000pt;}
.ws0_c00122{word-spacing:0.000000pt;}
._4_c00122{margin-left:-14.576640pt;}
._5_c00122{margin-left:-5.854080pt;}
._3_c00122{margin-left:-3.842048pt;}
._2_c00122{margin-left:-2.640000pt;}
._0_c00122{margin-left:-1.200000pt;}
._1_c00122{width:1.178667pt;}
.fs2_c00122{font-size:186.880000pt;}
.fs0_c00122{font-size:240.000000pt;}
.fs1_c00122{font-size:240.128000pt;}
.y0_c00122{bottom:0.000000pt;}
.y5_c00122{bottom:102.272000pt;}
.y4_c00122{bottom:233.986667pt;}
.y3_c00122{bottom:305.986667pt;}
.y2_c00122{bottom:378.013333pt;}
.y1_c00122{bottom:450.013333pt;}
.h3_c00122{height:161.968750pt;}
.h1_c00122{height:208.359375pt;}
.h2_c00122{height:208.470500pt;}
.h0_c00122{height:720.000000pt;}
.w1_c00122{width:1279.999981pt;}
.w0_c00122{width:1280.000000pt;}
.x0_c00122{left:0.000000pt;}
.x1_c00122{left:48.831981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0707fc0399d7d6ee82741ea3.woff')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.091797;font-style: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:-121.780512px;}
.ws1_c00123{word-spacing:0.000000px;}
._0_c00123{width:1.199808px;}
._1_c00123{width:8.998560px;}
.fc0_c00123{color:rgb(0,88,54);}
.fs0_c00123{font-size:599.904000px;}
.y0_c00123{bottom:0.000000px;}
.y2_c00123{bottom:259.560000px;}
.y1_c00123{bottom:421.590000px;}
.h1_c00123{height:520.815094px;}
.h0_c00123{height:810.000000px;}
.w1_c00123{width:1439.999979px;}
.w0_c00123{width:1440.000000px;}
.x0_c00123{left:0.000000px;}
.x1_c00123{left:178.814979px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ws0_c00123{word-spacing:-108.249344pt;}
.ws1_c00123{word-spacing:0.000000pt;}
._0_c00123{width:1.066496pt;}
._1_c00123{width:7.998720pt;}
.fs0_c00123{font-size:533.248000pt;}
.y0_c00123{bottom:0.000000pt;}
.y2_c00123{bottom:230.720000pt;}
.y1_c00123{bottom:374.746667pt;}
.h1_c00123{height:462.946750pt;}
.h0_c00123{height:720.000000pt;}
.w1_c00123{width:1279.999981pt;}
.w0_c00123{width:1280.000000pt;}
.x0_c00123{left:0.000000pt;}
.x1_c00123{left:158.946648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00124{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
}
.y0_c00124{bottom:0.000000px;}
.h0_c00124{height:810.000000px;}
.w0_c00124{width:1440.000000px;}
.x0_c00124{left:0.000000px;}
@media print{
.y0_c00124{bottom:0.000000pt;}
.h0_c00124{height:720.000000pt;}
.w0_c00124{width:1280.000000pt;}
.x0_c00124{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_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_49ae7b205c6544c0c3309c27.woff')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.090332;font-style:normal;font-weight:normal;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_d2c13787b3150e275147fe9b.woff')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00125;src:url('chunks/assets/font_d2eb6e53e56a18bf36164716.woff')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00125;src:url('chunks/assets/font_c5dd5551312d046ee029330f.woff')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:1.091797;font-style: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;}
.ls1_c00125{letter-spacing:0.000000px;}
.ls2_c00125{letter-spacing:0.262800px;}
.ls0_c00125{letter-spacing:0.708048px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00125{word-spacing:-138.240000px;}
.ws2_c00125{word-spacing:-28.091952px;}
.ws0_c00125{word-spacing:-28.062720px;}
.ws3_c00125{word-spacing:0.000000px;}
._0_c00125{margin-left:-10.644480px;}
._6_c00125{margin-left:-8.847360px;}
._3_c00125{margin-left:-4.561920px;}
._1_c00125{margin-left:-3.144960px;}
._2_c00125{margin-left:-2.113920px;}
._4_c00125{margin-left:-1.019520px;}
._5_c00125{width:1.522224px;}
.fc1_c00125{color:rgb(0,88,54);}
.fc0_c00125{color:rgb(0,0,0);}
.fs0_c00125{font-size:138.240000px;}
.fs1_c00125{font-size:138.384000px;}
.y0_c00125{bottom:0.000000px;}
.y5_c00125{bottom:157.575000px;}
.y4_c00125{bottom:233.280000px;}
.y3_c00125{bottom:335.370000px;}
.y2_c00125{bottom:372.630000px;}
.y1_c00125{bottom:447.150000px;}
.h2_c00125{height:119.812500px;}
.h3_c00125{height:119.937305px;}
.h1_c00125{height:120.015000px;}
.h0_c00125{height:810.000000px;}
.w1_c00125{width:1439.999979px;}
.w0_c00125{width:1440.000000px;}
.x0_c00125{left:0.000000px;}
.x1_c00125{left:87.443979px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls1_c00125{letter-spacing:0.000000pt;}
.ls2_c00125{letter-spacing:0.233600pt;}
.ls0_c00125{letter-spacing:0.629376pt;}
.ws1_c00125{word-spacing:-122.880000pt;}
.ws2_c00125{word-spacing:-24.970624pt;}
.ws0_c00125{word-spacing:-24.944640pt;}
.ws3_c00125{word-spacing:0.000000pt;}
._0_c00125{margin-left:-9.461760pt;}
._6_c00125{margin-left:-7.864320pt;}
._3_c00125{margin-left:-4.055040pt;}
._1_c00125{margin-left:-2.795520pt;}
._2_c00125{margin-left:-1.879040pt;}
._4_c00125{margin-left:-0.906240pt;}
._5_c00125{width:1.353088pt;}
.fs0_c00125{font-size:122.880000pt;}
.fs1_c00125{font-size:123.008000pt;}
.y0_c00125{bottom:0.000000pt;}
.y5_c00125{bottom:140.066667pt;}
.y4_c00125{bottom:207.360000pt;}
.y3_c00125{bottom:298.106667pt;}
.y2_c00125{bottom:331.226667pt;}
.y1_c00125{bottom:397.466667pt;}
.h2_c00125{height:106.500000pt;}
.h3_c00125{height:106.610938pt;}
.h1_c00125{height:106.680000pt;}
.h0_c00125{height:720.000000pt;}
.w1_c00125{width:1279.999981pt;}
.w0_c00125{width:1280.000000pt;}
.x0_c00125{left:0.000000pt;}
.x1_c00125{left:77.727981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bfe48a016441e7944aa58d4a.woff')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00126;src:url('chunks/assets/font_568c43a5c38efa511af299ba.woff')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.029297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00126;src:url('chunks/assets/font_733b0a57e75344cc2e92172c.woff')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.030273;font-style: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;}
.ls2_c00126{letter-spacing:-0.263520px;}
.ls3_c00126{letter-spacing:-0.131760px;}
.ls0_c00126{letter-spacing:0.000000px;}
.ls1_c00126{letter-spacing:0.131760px;}
.ls4_c00126{letter-spacing:0.263520px;}
.ls5_c00126{letter-spacing:0.299520px;}
.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;}
}
.ws5_c00126{word-spacing:-0.299520px;}
.ws4_c00126{word-spacing:-0.263520px;}
.ws1_c00126{word-spacing:0.013176px;}
.ws3_c00126{word-spacing:0.131760px;}
.ws0_c00126{word-spacing:1.440000px;}
.ws2_c00126{word-spacing:1.963224px;}
._4_c00126{margin-left:-4.992264px;}
._2_c00126{margin-left:-3.178008px;}
._3_c00126{margin-left:-2.034648px;}
._1_c00126{margin-left:-1.014552px;}
._0_c00126{width:1.488888px;}
.fc0_c00126{color:rgb(255,255,255);}
.fs1_c00126{font-size:131.760000px;}
.fs2_c00126{font-size:149.760000px;}
.fs0_c00126{font-size:360.000000px;}
.y0_c00126{bottom:0.000000px;}
.y4_c00126{bottom:170.985870px;}
.y3_c00126{bottom:202.472910px;}
.y2_c00126{bottom:233.959950px;}
.y1_c00126{bottom:655.048050px;}
.h2_c00126{height:126.725625px;}
.h1_c00126{height:322.734375px;}
.h0_c00126{height:810.000000px;}
.w0_c00126{width:1440.000000px;}
.x0_c00126{left:0.000000px;}
.x2_c00126{left:91.635000px;}
.x3_c00126{left:176.776440px;}
.x4_c00126{left:178.049400px;}
.x1_c00126{left:425.452650px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls2_c00126{letter-spacing:-0.234240pt;}
.ls3_c00126{letter-spacing:-0.117120pt;}
.ls0_c00126{letter-spacing:0.000000pt;}
.ls1_c00126{letter-spacing:0.117120pt;}
.ls4_c00126{letter-spacing:0.234240pt;}
.ls5_c00126{letter-spacing:0.266240pt;}
.ws5_c00126{word-spacing:-0.266240pt;}
.ws4_c00126{word-spacing:-0.234240pt;}
.ws1_c00126{word-spacing:0.011712pt;}
.ws3_c00126{word-spacing:0.117120pt;}
.ws0_c00126{word-spacing:1.280000pt;}
.ws2_c00126{word-spacing:1.745088pt;}
._4_c00126{margin-left:-4.437568pt;}
._2_c00126{margin-left:-2.824896pt;}
._3_c00126{margin-left:-1.808576pt;}
._1_c00126{margin-left:-0.901824pt;}
._0_c00126{width:1.323456pt;}
.fs1_c00126{font-size:117.120000pt;}
.fs2_c00126{font-size:133.120000pt;}
.fs0_c00126{font-size:320.000000pt;}
.y0_c00126{bottom:0.000000pt;}
.y4_c00126{bottom:151.987440pt;}
.y3_c00126{bottom:179.975920pt;}
.y2_c00126{bottom:207.964400pt;}
.y1_c00126{bottom:582.264933pt;}
.h2_c00126{height:112.645000pt;}
.h1_c00126{height:286.875000pt;}
.h0_c00126{height:720.000000pt;}
.w0_c00126{width:1280.000000pt;}
.x0_c00126{left:0.000000pt;}
.x2_c00126{left:81.453333pt;}
.x3_c00126{left:157.134613pt;}
.x4_c00126{left:158.266133pt;}
.x1_c00126{left:378.180133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f2571246aaac9e9de24c031d.woff')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00127;src:url('chunks/assets/font_3fd678cdf9fb23c6d6e316fa.woff')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00127;src:url('chunks/assets/font_b68812dd1e2ae185dd21e28b.woff')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.029297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00127;src:url('chunks/assets/font_63ddcabfaefe1214d4a78883.woff')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.030273;font-style: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.239760px;}
.ls3_c00127{letter-spacing:-0.120240px;}
.ls2_c00127{letter-spacing:0.000000px;}
.ls0_c00127{letter-spacing:0.120240px;}
.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:-66.413520px;}
.ws1_c00127{word-spacing:-33.426720px;}
.ws6_c00127{word-spacing:-1.803600px;}
.ws8_c00127{word-spacing:-0.360720px;}
.ws7_c00127{word-spacing:-0.120240px;}
.ws5_c00127{word-spacing:0.000000px;}
.ws9_c00127{word-spacing:0.120240px;}
.ws3_c00127{word-spacing:0.239760px;}
.ws4_c00127{word-spacing:0.719280px;}
.ws2_c00127{word-spacing:93.355200px;}
._3_c00127{margin-left:-4.205664px;}
._2_c00127{margin-left:-2.513016px;}
._1_c00127{margin-left:-1.036800px;}
._0_c00127{width:1.030968px;}
._4_c00127{width:2.287656px;}
.fc0_c00127{color:rgb(0,0,0);}
.fs1_c00127{font-size:120.240000px;}
.fs0_c00127{font-size:239.760000px;}
.y0_c00127{bottom:0.000000px;}
.ye_c00127{bottom:205.060320px;}
.yd_c00127{bottom:237.465000px;}
.yc_c00127{bottom:284.805000px;}
.y4_c00127{bottom:289.634580px;}
.yb_c00127{bottom:332.140320px;}
.y3_c00127{bottom:354.429720px;}
.ya_c00127{bottom:364.545000px;}
.y9_c00127{bottom:412.060320px;}
.y2_c00127{bottom:419.224860px;}
.y8_c00127{bottom:444.465000px;}
.y1_c00127{bottom:484.020000px;}
.y7_c00127{bottom:522.935640px;}
.y6_c00127{bottom:555.340320px;}
.y5_c00127{bottom:587.745000px;}
.h3_c00127{height:101.746055px;}
.h2_c00127{height:107.793281px;}
.h1_c00127{height:216.463008px;}
.h0_c00127{height:810.000000px;}
.w0_c00127{width:1440.000000px;}
.x0_c00127{left:0.000000px;}
.x1_c00127{left:84.240000px;}
.x2_c00127{left:652.628700px;}
.x3_c00127{left:706.628700px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls1_c00127{letter-spacing:-0.213120pt;}
.ls3_c00127{letter-spacing:-0.106880pt;}
.ls2_c00127{letter-spacing:0.000000pt;}
.ls0_c00127{letter-spacing:0.106880pt;}
.ws0_c00127{word-spacing:-59.034240pt;}
.ws1_c00127{word-spacing:-29.712640pt;}
.ws6_c00127{word-spacing:-1.603200pt;}
.ws8_c00127{word-spacing:-0.320640pt;}
.ws7_c00127{word-spacing:-0.106880pt;}
.ws5_c00127{word-spacing:0.000000pt;}
.ws9_c00127{word-spacing:0.106880pt;}
.ws3_c00127{word-spacing:0.213120pt;}
.ws4_c00127{word-spacing:0.639360pt;}
.ws2_c00127{word-spacing:82.982400pt;}
._3_c00127{margin-left:-3.738368pt;}
._2_c00127{margin-left:-2.233792pt;}
._1_c00127{margin-left:-0.921600pt;}
._0_c00127{width:0.916416pt;}
._4_c00127{width:2.033472pt;}
.fs1_c00127{font-size:106.880000pt;}
.fs0_c00127{font-size:213.120000pt;}
.y0_c00127{bottom:0.000000pt;}
.ye_c00127{bottom:182.275840pt;}
.yd_c00127{bottom:211.080000pt;}
.yc_c00127{bottom:253.160000pt;}
.y4_c00127{bottom:257.452960pt;}
.yb_c00127{bottom:295.235840pt;}
.y3_c00127{bottom:315.048640pt;}
.ya_c00127{bottom:324.040000pt;}
.y9_c00127{bottom:366.275840pt;}
.y2_c00127{bottom:372.644320pt;}
.y8_c00127{bottom:395.080000pt;}
.y1_c00127{bottom:430.240000pt;}
.y7_c00127{bottom:464.831680pt;}
.y6_c00127{bottom:493.635840pt;}
.y5_c00127{bottom:522.440000pt;}
.h3_c00127{height:90.440937pt;}
.h2_c00127{height:95.816250pt;}
.h1_c00127{height:192.411562pt;}
.h0_c00127{height:720.000000pt;}
.w0_c00127{width:1280.000000pt;}
.x0_c00127{left:0.000000pt;}
.x1_c00127{left:74.880000pt;}
.x2_c00127{left:580.114400pt;}
.x3_c00127{left:628.114400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_608321fa1d02ba58b1f62275.woff')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:0.857422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00128;src:url('chunks/assets/font_7d72c8d8588aebec1b02a8f3.woff')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00128;src:url('chunks/assets/font_51b4125f0391c3f14afdca2b.woff')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00128;src:url('chunks/assets/font_e32864bcd522790ff76e3f22.woff')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.030273;font-style: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;}
.ls3_c00128{letter-spacing:-0.216000px;}
.ls2_c00128{letter-spacing:0.000000px;}
.ls4_c00128{letter-spacing:0.108000px;}
.ls1_c00128{letter-spacing:0.216000px;}
.ls0_c00128{letter-spacing:70.200000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00128{word-spacing:-41.688000px;}
.ws3_c00128{word-spacing:-0.864000px;}
.ws4_c00128{word-spacing:-0.216000px;}
.ws5_c00128{word-spacing:-0.108000px;}
.ws2_c00128{word-spacing:0.000000px;}
.ws1_c00128{word-spacing:42.487200px;}
._1_c00128{margin-left:-4.114800px;}
._4_c00128{margin-left:-3.078000px;}
._0_c00128{margin-left:-2.008800px;}
._2_c00128{margin-left:-1.004400px;}
._3_c00128{width:1.144800px;}
.fc0_c00128{color:rgb(0,0,0);}
.fs1_c00128{font-size:108.000000px;}
.fs0_c00128{font-size:216.000000px;}
.y0_c00128{bottom:0.000000px;}
.y11_c00128{bottom:95.751150px;}
.y10_c00128{bottom:121.671150px;}
.yf_c00128{bottom:147.591150px;}
.ye_c00128{bottom:173.511150px;}
.yd_c00128{bottom:214.551150px;}
.yc_c00128{bottom:240.471150px;}
.yb_c00128{bottom:266.391150px;}
.ya_c00128{bottom:307.242150px;}
.y9_c00128{bottom:333.162150px;}
.y8_c00128{bottom:359.082150px;}
.y7_c00128{bottom:385.002150px;}
.y6_c00128{bottom:410.922150px;}
.y5_c00128{bottom:436.842150px;}
.y4_c00128{bottom:462.762150px;}
.y3_c00128{bottom:599.640000px;}
.y2_c00128{bottom:658.122000px;}
.y1_c00128{bottom:716.442000px;}
.h3_c00128{height:91.388672px;}
.h2_c00128{height:96.820312px;}
.h1_c00128{height:145.441406px;}
.h0_c00128{height:810.000000px;}
.w0_c00128{width:1440.000000px;}
.x0_c00128{left:0.000000px;}
.x2_c00128{left:96.376350px;}
.x1_c00128{left:100.776750px;}
.x3_c00128{left:123.376350px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls3_c00128{letter-spacing:-0.192000pt;}
.ls2_c00128{letter-spacing:0.000000pt;}
.ls4_c00128{letter-spacing:0.096000pt;}
.ls1_c00128{letter-spacing:0.192000pt;}
.ls0_c00128{letter-spacing:62.400000pt;}
.ws0_c00128{word-spacing:-37.056000pt;}
.ws3_c00128{word-spacing:-0.768000pt;}
.ws4_c00128{word-spacing:-0.192000pt;}
.ws5_c00128{word-spacing:-0.096000pt;}
.ws2_c00128{word-spacing:0.000000pt;}
.ws1_c00128{word-spacing:37.766400pt;}
._1_c00128{margin-left:-3.657600pt;}
._4_c00128{margin-left:-2.736000pt;}
._0_c00128{margin-left:-1.785600pt;}
._2_c00128{margin-left:-0.892800pt;}
._3_c00128{width:1.017600pt;}
.fs1_c00128{font-size:96.000000pt;}
.fs0_c00128{font-size:192.000000pt;}
.y0_c00128{bottom:0.000000pt;}
.y11_c00128{bottom:85.112133pt;}
.y10_c00128{bottom:108.152133pt;}
.yf_c00128{bottom:131.192133pt;}
.ye_c00128{bottom:154.232133pt;}
.yd_c00128{bottom:190.712133pt;}
.yc_c00128{bottom:213.752133pt;}
.yb_c00128{bottom:236.792133pt;}
.ya_c00128{bottom:273.104133pt;}
.y9_c00128{bottom:296.144133pt;}
.y8_c00128{bottom:319.184133pt;}
.y7_c00128{bottom:342.224133pt;}
.y6_c00128{bottom:365.264133pt;}
.y5_c00128{bottom:388.304133pt;}
.y4_c00128{bottom:411.344133pt;}
.y3_c00128{bottom:533.013333pt;}
.y2_c00128{bottom:584.997333pt;}
.y1_c00128{bottom:636.837333pt;}
.h3_c00128{height:81.234375pt;}
.h2_c00128{height:86.062500pt;}
.h1_c00128{height:129.281250pt;}
.h0_c00128{height:720.000000pt;}
.w0_c00128{width:1280.000000pt;}
.x0_c00128{left:0.000000pt;}
.x2_c00128{left:85.667867pt;}
.x1_c00128{left:89.579333pt;}
.x3_c00128{left:109.667867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1cb910ddd807d4a72bfc9921.woff')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:0.857422;font-style:normal;font-weight:normal;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_0a6a94f8af02f1b1cd4b6590.woff')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00129;src:url('chunks/assets/font_5477a8061dc583d1107c7d22.woff')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.029297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00129;src:url('chunks/assets/font_a34bb02b40e9c1248b20f1e8.woff')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:0.850586;font-style: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;}
.lsd_c00129{letter-spacing:-2.274480px;}
.lse_c00129{letter-spacing:-1.516320px;}
.ls9_c00129{letter-spacing:-1.010880px;}
.lsb_c00129{letter-spacing:-0.842400px;}
.ls6_c00129{letter-spacing:-0.336960px;}
.ls2_c00129{letter-spacing:-0.324000px;}
.lsc_c00129{letter-spacing:-0.252720px;}
.lsa_c00129{letter-spacing:-0.191520px;}
.ls7_c00129{letter-spacing:-0.168480px;}
.ls4_c00129{letter-spacing:-0.108000px;}
.ls8_c00129{letter-spacing:-0.084240px;}
.ls3_c00129{letter-spacing:0.000000px;}
.lsf_c00129{letter-spacing:0.168480px;}
.ls5_c00129{letter-spacing:0.216000px;}
.ls0_c00129{letter-spacing:0.324000px;}
.ls1_c00129{letter-spacing:79.354080px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00129{word-spacing:-62.856000px;}
.ws0_c00129{word-spacing:-62.208000px;}
.ws2_c00129{word-spacing:-22.140000px;}
.ws3_c00129{word-spacing:-21.816000px;}
.ws6_c00129{word-spacing:-17.016480px;}
.ws5_c00129{word-spacing:-16.932240px;}
.wsa_c00129{word-spacing:-16.763760px;}
.wsf_c00129{word-spacing:-15.584400px;}
.ws10_c00129{word-spacing:-1.423656px;}
.ws4_c00129{word-spacing:-0.395928px;}
.wsb_c00129{word-spacing:-0.336960px;}
.ws12_c00129{word-spacing:0.000000px;}
.ws8_c00129{word-spacing:0.095760px;}
.ws13_c00129{word-spacing:0.108000px;}
.ws15_c00129{word-spacing:0.168480px;}
.ws14_c00129{word-spacing:0.336960px;}
.wsc_c00129{word-spacing:1.061424px;}
.wsd_c00129{word-spacing:1.137240px;}
.ws9_c00129{word-spacing:1.802736px;}
.ws11_c00129{word-spacing:3.293784px;}
.ws7_c00129{word-spacing:3.352752px;}
.wse_c00129{word-spacing:4.060368px;}
._1_c00129{margin-left:-4.276800px;}
._2_c00129{margin-left:-1.155600px;}
._3_c00129{width:1.002456px;}
._0_c00129{width:2.268000px;}
._4_c00129{width:4.002048px;}
.fc0_c00129{color:rgb(0,0,0);}
.fs2_c00129{font-size:84.240000px;}
.fs3_c00129{font-size:95.760000px;}
.fs1_c00129{font-size:108.000000px;}
.fs0_c00129{font-size:324.000000px;}
.y0_c00129{bottom:0.000000px;}
.ya_c00129{bottom:91.245390px;}
.y9_c00129{bottom:129.048090px;}
.y8_c00129{bottom:166.661250px;}
.y7_c00129{bottom:205.181250px;}
.y6_c00129{bottom:284.565390px;}
.y5_c00129{bottom:322.178550px;}
.y4_c00129{bottom:359.981250px;}
.y3_c00129{bottom:399.230250px;}
.y2_c00129{bottom:443.321250px;}
.y1_c00129{bottom:568.190250px;}
.h4_c00129{height:63.824414px;}
.h3_c00129{height:71.283164px;}
.h2_c00129{height:91.388672px;}
.h1_c00129{height:218.162109px;}
.h0_c00129{height:810.000000px;}
.w0_c00129{width:1440.000000px;}
.x0_c00129{left:0.000000px;}
.x1_c00129{left:86.400000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.lsd_c00129{letter-spacing:-2.021760pt;}
.lse_c00129{letter-spacing:-1.347840pt;}
.ls9_c00129{letter-spacing:-0.898560pt;}
.lsb_c00129{letter-spacing:-0.748800pt;}
.ls6_c00129{letter-spacing:-0.299520pt;}
.ls2_c00129{letter-spacing:-0.288000pt;}
.lsc_c00129{letter-spacing:-0.224640pt;}
.lsa_c00129{letter-spacing:-0.170240pt;}
.ls7_c00129{letter-spacing:-0.149760pt;}
.ls4_c00129{letter-spacing:-0.096000pt;}
.ls8_c00129{letter-spacing:-0.074880pt;}
.ls3_c00129{letter-spacing:0.000000pt;}
.lsf_c00129{letter-spacing:0.149760pt;}
.ls5_c00129{letter-spacing:0.192000pt;}
.ls0_c00129{letter-spacing:0.288000pt;}
.ls1_c00129{letter-spacing:70.536960pt;}
.ws1_c00129{word-spacing:-55.872000pt;}
.ws0_c00129{word-spacing:-55.296000pt;}
.ws2_c00129{word-spacing:-19.680000pt;}
.ws3_c00129{word-spacing:-19.392000pt;}
.ws6_c00129{word-spacing:-15.125760pt;}
.ws5_c00129{word-spacing:-15.050880pt;}
.wsa_c00129{word-spacing:-14.901120pt;}
.wsf_c00129{word-spacing:-13.852800pt;}
.ws10_c00129{word-spacing:-1.265472pt;}
.ws4_c00129{word-spacing:-0.351936pt;}
.wsb_c00129{word-spacing:-0.299520pt;}
.ws12_c00129{word-spacing:0.000000pt;}
.ws8_c00129{word-spacing:0.085120pt;}
.ws13_c00129{word-spacing:0.096000pt;}
.ws15_c00129{word-spacing:0.149760pt;}
.ws14_c00129{word-spacing:0.299520pt;}
.wsc_c00129{word-spacing:0.943488pt;}
.wsd_c00129{word-spacing:1.010880pt;}
.ws9_c00129{word-spacing:1.602432pt;}
.ws11_c00129{word-spacing:2.927808pt;}
.ws7_c00129{word-spacing:2.980224pt;}
.wse_c00129{word-spacing:3.609216pt;}
._1_c00129{margin-left:-3.801600pt;}
._2_c00129{margin-left:-1.027200pt;}
._3_c00129{width:0.891072pt;}
._0_c00129{width:2.016000pt;}
._4_c00129{width:3.557376pt;}
.fs2_c00129{font-size:74.880000pt;}
.fs3_c00129{font-size:85.120000pt;}
.fs1_c00129{font-size:96.000000pt;}
.fs0_c00129{font-size:288.000000pt;}
.y0_c00129{bottom:0.000000pt;}
.ya_c00129{bottom:81.107013pt;}
.y9_c00129{bottom:114.709413pt;}
.y8_c00129{bottom:148.143333pt;}
.y7_c00129{bottom:182.383333pt;}
.y6_c00129{bottom:252.947013pt;}
.y5_c00129{bottom:286.380933pt;}
.y4_c00129{bottom:319.983333pt;}
.y3_c00129{bottom:354.871333pt;}
.y2_c00129{bottom:394.063333pt;}
.y1_c00129{bottom:505.058000pt;}
.h4_c00129{height:56.732813pt;}
.h3_c00129{height:63.362812pt;}
.h2_c00129{height:81.234375pt;}
.h1_c00129{height:193.921875pt;}
.h0_c00129{height:720.000000pt;}
.w0_c00129{width:1280.000000pt;}
.x0_c00129{left:0.000000pt;}
.x1_c00129{left:76.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a82f9683e758402e3b770a85.woff')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:1696.156560px;}
.fc0_c00130{color:rgb(0,0,0);}
.fs0_c00130{font-size:264.240000px;}
.y0_c00130{bottom:0.000000px;}
.y1_c00130{bottom:667.893750px;}
.h1_c00130{height:236.887031px;}
.h0_c00130{height:810.000000px;}
.w0_c00130{width:1440.000000px;}
.x0_c00130{left:0.000000px;}
.x1_c00130{left:218.655000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws0_c00130{word-spacing:0.000000pt;}
._0_c00130{width:1507.694720pt;}
.fs0_c00130{font-size:234.880000pt;}
.y0_c00130{bottom:0.000000pt;}
.y1_c00130{bottom:593.683333pt;}
.h1_c00130{height:210.566250pt;}
.h0_c00130{height:720.000000pt;}
.w0_c00130{width:1280.000000pt;}
.x0_c00130{left:0.000000pt;}
.x1_c00130{left:194.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_86fdb9bb2a2f33b39c15d3ef.woff')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.033203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_220ad69074c7c6d56b41510a.woff')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00131;src:url('chunks/assets/font_59a207ec2d26c856ff12366a.woff')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.020020;font-style: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;}
.ls2_c00131{letter-spacing:-2.160000px;}
.ls5_c00131{letter-spacing:-2.016000px;}
.ls3_c00131{letter-spacing:-1.728000px;}
.ls6_c00131{letter-spacing:-0.288000px;}
.ls4_c00131{letter-spacing:-0.144000px;}
.ls1_c00131{letter-spacing:0.000000px;}
.ls0_c00131{letter-spacing:0.144000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00131{word-spacing:-29.088000px;}
.ws1_c00131{word-spacing:-27.504000px;}
.ws3_c00131{word-spacing:-27.216000px;}
.ws7_c00131{word-spacing:-0.576000px;}
.ws8_c00131{word-spacing:-0.144000px;}
.ws4_c00131{word-spacing:0.000000px;}
.ws5_c00131{word-spacing:0.144000px;}
.ws9_c00131{word-spacing:0.288000px;}
.ws6_c00131{word-spacing:2.160000px;}
.ws0_c00131{word-spacing:4.320000px;}
._5_c00131{margin-left:-4.032000px;}
._0_c00131{margin-left:-2.493504px;}
._2_c00131{margin-left:-1.150848px;}
._1_c00131{width:1.822176px;}
._4_c00131{width:2.918880px;}
._3_c00131{width:4.027968px;}
.fc1_c00131{color:rgb(0,0,0);}
.fc0_c00131{color:rgb(255,255,255);}
.fs1_c00131{font-size:144.000000px;}
.fs0_c00131{font-size:239.760000px;}
.y0_c00131{bottom:0.000000px;}
.y7_c00131{bottom:131.268450px;}
.y5_c00131{bottom:133.318200px;}
.y6_c00131{bottom:175.188450px;}
.y4_c00131{bottom:177.238200px;}
.y3_c00131{bottom:367.392450px;}
.y2_c00131{bottom:411.312450px;}
.y1_c00131{bottom:659.708250px;}
.h2_c00131{height:121.851562px;}
.h1_c00131{height:205.107187px;}
.h0_c00131{height:810.000000px;}
.w0_c00131{width:1440.000000px;}
.x0_c00131{left:0.000000px;}
.x1_c00131{left:144.137250px;}
.x4_c00131{left:278.401500px;}
.x2_c00131{left:284.642850px;}
.x3_c00131{left:929.931000px;}
.x5_c00131{left:946.504500px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls2_c00131{letter-spacing:-1.920000pt;}
.ls5_c00131{letter-spacing:-1.792000pt;}
.ls3_c00131{letter-spacing:-1.536000pt;}
.ls6_c00131{letter-spacing:-0.256000pt;}
.ls4_c00131{letter-spacing:-0.128000pt;}
.ls1_c00131{letter-spacing:0.000000pt;}
.ls0_c00131{letter-spacing:0.128000pt;}
.ws2_c00131{word-spacing:-25.856000pt;}
.ws1_c00131{word-spacing:-24.448000pt;}
.ws3_c00131{word-spacing:-24.192000pt;}
.ws7_c00131{word-spacing:-0.512000pt;}
.ws8_c00131{word-spacing:-0.128000pt;}
.ws4_c00131{word-spacing:0.000000pt;}
.ws5_c00131{word-spacing:0.128000pt;}
.ws9_c00131{word-spacing:0.256000pt;}
.ws6_c00131{word-spacing:1.920000pt;}
.ws0_c00131{word-spacing:3.840000pt;}
._5_c00131{margin-left:-3.584000pt;}
._0_c00131{margin-left:-2.216448pt;}
._2_c00131{margin-left:-1.022976pt;}
._1_c00131{width:1.619712pt;}
._4_c00131{width:2.594560pt;}
._3_c00131{width:3.580416pt;}
.fs1_c00131{font-size:128.000000pt;}
.fs0_c00131{font-size:213.120000pt;}
.y0_c00131{bottom:0.000000pt;}
.y7_c00131{bottom:116.683067pt;}
.y5_c00131{bottom:118.505067pt;}
.y6_c00131{bottom:155.723067pt;}
.y4_c00131{bottom:157.545067pt;}
.y3_c00131{bottom:326.571067pt;}
.y2_c00131{bottom:365.611067pt;}
.y1_c00131{bottom:586.407333pt;}
.h2_c00131{height:108.312500pt;}
.h1_c00131{height:182.317500pt;}
.h0_c00131{height:720.000000pt;}
.w0_c00131{width:1280.000000pt;}
.x0_c00131{left:0.000000pt;}
.x1_c00131{left:128.122000pt;}
.x4_c00131{left:247.468000pt;}
.x2_c00131{left:253.015867pt;}
.x3_c00131{left:826.605333pt;}
.x5_c00131{left:841.337333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_592f9bc2aee6f98e2080bc99.woff')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.033203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00132;src:url('chunks/assets/font_51b4125f0391c3f14afdca2b.woff')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00132;src:url('chunks/assets/font_d026b26a6051da0dc125542c.woff')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.022461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00132;src:url('chunks/assets/font_4b588b3586e584abaacb8ae3.woff')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.029297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00132;src:url('chunks/assets/font_d15084da518aa70a33aab5b7.woff')format("woff");}.ff5_c00132{font-family:ff5_c00132;line-height:1.030273;font-style: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;}
.ls7_c00132{letter-spacing:-1.008000px;}
.ls4_c00132{letter-spacing:-0.792000px;}
.ls2_c00132{letter-spacing:-0.300240px;}
.ls6_c00132{letter-spacing:-0.072000px;}
.ls1_c00132{letter-spacing:0.000000px;}
.ls5_c00132{letter-spacing:0.072000px;}
.ls3_c00132{letter-spacing:0.191520px;}
.ls0_c00132{letter-spacing:74.501280px;}
.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;}
}
.ws4_c00132{word-spacing:-70.992000px;}
.ws0_c00132{word-spacing:-57.646080px;}
.ws3_c00132{word-spacing:-55.648800px;}
.ws1_c00132{word-spacing:-19.630800px;}
.ws6_c00132{word-spacing:-0.191520px;}
.ws5_c00132{word-spacing:0.000000px;}
.ws7_c00132{word-spacing:0.072000px;}
.ws2_c00132{word-spacing:2.016000px;}
._0_c00132{margin-left:-4.053240px;}
._1_c00132{margin-left:-2.912328px;}
._3_c00132{margin-left:-1.254456px;}
._2_c00132{width:1.020816px;}
._4_c00132{width:2.192904px;}
._5_c00132{width:3.429936px;}
.fc0_c00132{color:rgb(255,255,255);}
.fs2_c00132{font-size:72.000000px;}
.fs1_c00132{font-size:95.760000px;}
.fs0_c00132{font-size:300.240000px;}
.y0_c00132{bottom:0.000000px;}
.yc_c00132{bottom:31.927500px;}
.yb_c00132{bottom:90.366480px;}
.ya_c00132{bottom:113.396760px;}
.y9_c00132{bottom:136.427040px;}
.y8_c00132{bottom:200.514420px;}
.y7_c00132{bottom:264.601800px;}
.y6_c00132{bottom:296.633520px;}
.y5_c00132{bottom:360.720900px;}
.y4_c00132{bottom:392.752620px;}
.y3_c00132{bottom:456.840000px;}
.y2_c00132{bottom:565.247760px;}
.y1_c00132{bottom:646.237500px;}
.h4_c00132{height:60.925781px;}
.h3_c00132{height:81.031289px;}
.h2_c00132{height:85.847344px;}
.h1_c00132{height:256.845937px;}
.h0_c00132{height:810.000000px;}
.w0_c00132{width:1440.000000px;}
.x0_c00132{left:0.000000px;}
.x1_c00132{left:691.038600px;}
.x2_c00132{left:697.878600px;}
.x5_c00132{left:709.576050px;}
.x4_c00132{left:724.930800px;}
.x3_c00132{left:751.887240px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls7_c00132{letter-spacing:-0.896000pt;}
.ls4_c00132{letter-spacing:-0.704000pt;}
.ls2_c00132{letter-spacing:-0.266880pt;}
.ls6_c00132{letter-spacing:-0.064000pt;}
.ls1_c00132{letter-spacing:0.000000pt;}
.ls5_c00132{letter-spacing:0.064000pt;}
.ls3_c00132{letter-spacing:0.170240pt;}
.ls0_c00132{letter-spacing:66.223360pt;}
.ws4_c00132{word-spacing:-63.104000pt;}
.ws0_c00132{word-spacing:-51.240960pt;}
.ws3_c00132{word-spacing:-49.465600pt;}
.ws1_c00132{word-spacing:-17.449600pt;}
.ws6_c00132{word-spacing:-0.170240pt;}
.ws5_c00132{word-spacing:0.000000pt;}
.ws7_c00132{word-spacing:0.064000pt;}
.ws2_c00132{word-spacing:1.792000pt;}
._0_c00132{margin-left:-3.602880pt;}
._1_c00132{margin-left:-2.588736pt;}
._3_c00132{margin-left:-1.115072pt;}
._2_c00132{width:0.907392pt;}
._4_c00132{width:1.949248pt;}
._5_c00132{width:3.048832pt;}
.fs2_c00132{font-size:64.000000pt;}
.fs1_c00132{font-size:85.120000pt;}
.fs0_c00132{font-size:266.880000pt;}
.y0_c00132{bottom:0.000000pt;}
.yc_c00132{bottom:28.380000pt;}
.yb_c00132{bottom:80.325760pt;}
.ya_c00132{bottom:100.797120pt;}
.y9_c00132{bottom:121.268480pt;}
.y8_c00132{bottom:178.235040pt;}
.y7_c00132{bottom:235.201600pt;}
.y6_c00132{bottom:263.674240pt;}
.y5_c00132{bottom:320.640800pt;}
.y4_c00132{bottom:349.113440pt;}
.y3_c00132{bottom:406.080000pt;}
.y2_c00132{bottom:502.442453pt;}
.y1_c00132{bottom:574.433333pt;}
.h4_c00132{height:54.156250pt;}
.h3_c00132{height:72.027812pt;}
.h2_c00132{height:76.308750pt;}
.h1_c00132{height:228.307500pt;}
.h0_c00132{height:720.000000pt;}
.w0_c00132{width:1280.000000pt;}
.x0_c00132{left:0.000000pt;}
.x1_c00132{left:614.256533pt;}
.x2_c00132{left:620.336533pt;}
.x5_c00132{left:630.734267pt;}
.x4_c00132{left:644.382933pt;}
.x3_c00132{left:668.344213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e15d67eb6333bb842d4a0f2f.woff')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.033203;font-style:normal;font-weight:normal;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_51b4125f0391c3f14afdca2b.woff')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00133;src:url('chunks/assets/font_99ebe1432a2ece868ecb6d95.woff')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00133;src:url('chunks/assets/font_d2f94df23f853b881be06605.woff')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:1.029297;font-style: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;}
.ls2_c00133{letter-spacing:-2.592000px;}
.lsb_c00133{letter-spacing:-1.008000px;}
.ls8_c00133{letter-spacing:-0.792000px;}
.ls5_c00133{letter-spacing:-0.131760px;}
.ls6_c00133{letter-spacing:-0.120240px;}
.lsa_c00133{letter-spacing:-0.072000px;}
.ls3_c00133{letter-spacing:0.000000px;}
.ls9_c00133{letter-spacing:0.072000px;}
.ls4_c00133{letter-spacing:0.131760px;}
.ls7_c00133{letter-spacing:0.263520px;}
.ls0_c00133{letter-spacing:61.927200px;}
.ls1_c00133{letter-spacing:65.891520px;}
.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:-26.747280px;}
.ws3_c00133{word-spacing:-13.608000px;}
.ws9_c00133{word-spacing:-0.263520px;}
.ws6_c00133{word-spacing:-0.131760px;}
.ws5_c00133{word-spacing:0.000000px;}
.wsa_c00133{word-spacing:0.072000px;}
.ws8_c00133{word-spacing:0.120240px;}
.ws7_c00133{word-spacing:0.131760px;}
.ws2_c00133{word-spacing:1.735200px;}
.ws1_c00133{word-spacing:2.016000px;}
.ws4_c00133{word-spacing:2.592000px;}
._4_c00133{margin-left:-4.917816px;}
._3_c00133{margin-left:-2.624400px;}
._0_c00133{margin-left:-1.328400px;}
._2_c00133{width:1.393200px;}
._1_c00133{width:2.754000px;}
.fc0_c00133{color:rgb(255,255,255);}
.fs3_c00133{font-size:72.000000px;}
.fs2_c00133{font-size:120.240000px;}
.fs1_c00133{font-size:131.760000px;}
.fs0_c00133{font-size:324.000000px;}
.y0_c00133{bottom:0.000000px;}
.y7_c00133{bottom:31.927500px;}
.y6_c00133{bottom:138.060000px;}
.y5_c00133{bottom:271.260000px;}
.y4_c00133{bottom:313.365960px;}
.y3_c00133{bottom:447.300000px;}
.y2_c00133{bottom:566.902500px;}
.y1_c00133{bottom:654.382500px;}
.h4_c00133{height:60.925781px;}
.h3_c00133{height:107.793281px;}
.h2_c00133{height:118.120781px;}
.h1_c00133{height:277.171875px;}
.h0_c00133{height:810.000000px;}
.w0_c00133{width:1440.000000px;}
.x0_c00133{left:0.000000px;}
.x1_c00133{left:691.038600px;}
.x2_c00133{left:697.878600px;}
.x4_c00133{left:709.576050px;}
.x3_c00133{left:751.878600px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls2_c00133{letter-spacing:-2.304000pt;}
.lsb_c00133{letter-spacing:-0.896000pt;}
.ls8_c00133{letter-spacing:-0.704000pt;}
.ls5_c00133{letter-spacing:-0.117120pt;}
.ls6_c00133{letter-spacing:-0.106880pt;}
.lsa_c00133{letter-spacing:-0.064000pt;}
.ls3_c00133{letter-spacing:0.000000pt;}
.ls9_c00133{letter-spacing:0.064000pt;}
.ls4_c00133{letter-spacing:0.117120pt;}
.ls7_c00133{letter-spacing:0.234240pt;}
.ls0_c00133{letter-spacing:55.046400pt;}
.ls1_c00133{letter-spacing:58.570240pt;}
.ws0_c00133{word-spacing:-23.775360pt;}
.ws3_c00133{word-spacing:-12.096000pt;}
.ws9_c00133{word-spacing:-0.234240pt;}
.ws6_c00133{word-spacing:-0.117120pt;}
.ws5_c00133{word-spacing:0.000000pt;}
.wsa_c00133{word-spacing:0.064000pt;}
.ws8_c00133{word-spacing:0.106880pt;}
.ws7_c00133{word-spacing:0.117120pt;}
.ws2_c00133{word-spacing:1.542400pt;}
.ws1_c00133{word-spacing:1.792000pt;}
.ws4_c00133{word-spacing:2.304000pt;}
._4_c00133{margin-left:-4.371392pt;}
._3_c00133{margin-left:-2.332800pt;}
._0_c00133{margin-left:-1.180800pt;}
._2_c00133{width:1.238400pt;}
._1_c00133{width:2.448000pt;}
.fs3_c00133{font-size:64.000000pt;}
.fs2_c00133{font-size:106.880000pt;}
.fs1_c00133{font-size:117.120000pt;}
.fs0_c00133{font-size:288.000000pt;}
.y0_c00133{bottom:0.000000pt;}
.y7_c00133{bottom:28.380000pt;}
.y6_c00133{bottom:122.720000pt;}
.y5_c00133{bottom:241.120000pt;}
.y4_c00133{bottom:278.547520pt;}
.y3_c00133{bottom:397.600000pt;}
.y2_c00133{bottom:503.913333pt;}
.y1_c00133{bottom:581.673333pt;}
.h4_c00133{height:54.156250pt;}
.h3_c00133{height:95.816250pt;}
.h2_c00133{height:104.996250pt;}
.h1_c00133{height:246.375000pt;}
.h0_c00133{height:720.000000pt;}
.w0_c00133{width:1280.000000pt;}
.x0_c00133{left:0.000000pt;}
.x1_c00133{left:614.256533pt;}
.x2_c00133{left:620.336533pt;}
.x4_c00133{left:630.734267pt;}
.x3_c00133{left:668.336533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd8177f66ce0787f7e9d4048.woff')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.033203;font-style:normal;font-weight:normal;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_51b4125f0391c3f14afdca2b.woff')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00134;src:url('chunks/assets/font_65224733f6af51abe1d38f12.woff')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:0.858887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00134;src:url('chunks/assets/font_43ffbf283795889fc0b1334e.woff')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00134;src:url('chunks/assets/font_c152b8731a40326225ac2848.woff')format("woff");}.ff5_c00134{font-family:ff5_c00134;line-height:1.020020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00134;src:url('chunks/assets/font_ef1687afd07ef909878f56a2.woff')format("woff");}.ff6_c00134{font-family:ff6_c00134;line-height:1.029297;font-style: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;}
.ls8_c00134{letter-spacing:-1.008000px;}
.ls5_c00134{letter-spacing:-0.792000px;}
.ls3_c00134{letter-spacing:-0.131760px;}
.ls7_c00134{letter-spacing:-0.072000px;}
.ls2_c00134{letter-spacing:0.000000px;}
.ls6_c00134{letter-spacing:0.072000px;}
.ls1_c00134{letter-spacing:0.131760px;}
.ls4_c00134{letter-spacing:0.263520px;}
.ls0_c00134{letter-spacing:61.927200px;}
.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:-62.532000px;}
.ws3_c00134{word-spacing:-13.608000px;}
.ws7_c00134{word-spacing:-0.263520px;}
.ws5_c00134{word-spacing:-0.131760px;}
.ws4_c00134{word-spacing:0.000000px;}
.ws8_c00134{word-spacing:0.072000px;}
.ws6_c00134{word-spacing:0.131760px;}
.ws2_c00134{word-spacing:1.735200px;}
.ws1_c00134{word-spacing:2.016000px;}
._4_c00134{margin-left:-10.817496px;}
._1_c00134{margin-left:-2.559600px;}
._2_c00134{margin-left:-1.264896px;}
._5_c00134{width:1.022400px;}
._0_c00134{width:2.041200px;}
._3_c00134{width:3.163320px;}
.fc0_c00134{color:rgb(255,255,255);}
.fs2_c00134{font-size:72.000000px;}
.fs1_c00134{font-size:131.760000px;}
.fs0_c00134{font-size:324.000000px;}
.y0_c00134{bottom:0.000000px;}
.y7_c00134{bottom:31.927500px;}
.y6_c00134{bottom:143.790840px;}
.y5_c00134{bottom:277.724880px;}
.y4_c00134{bottom:411.658920px;}
.y3_c00134{bottom:447.300000px;}
.y2_c00134{bottom:566.902500px;}
.y1_c00134{bottom:654.382500px;}
.h4_c00134{height:60.925781px;}
.h3_c00134{height:111.494180px;}
.h2_c00134{height:118.120781px;}
.h1_c00134{height:277.171875px;}
.h0_c00134{height:810.000000px;}
.w0_c00134{width:1440.000000px;}
.x0_c00134{left:0.000000px;}
.x1_c00134{left:691.038600px;}
.x2_c00134{left:697.878600px;}
.x4_c00134{left:709.576050px;}
.x3_c00134{left:724.889400px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls8_c00134{letter-spacing:-0.896000pt;}
.ls5_c00134{letter-spacing:-0.704000pt;}
.ls3_c00134{letter-spacing:-0.117120pt;}
.ls7_c00134{letter-spacing:-0.064000pt;}
.ls2_c00134{letter-spacing:0.000000pt;}
.ls6_c00134{letter-spacing:0.064000pt;}
.ls1_c00134{letter-spacing:0.117120pt;}
.ls4_c00134{letter-spacing:0.234240pt;}
.ls0_c00134{letter-spacing:55.046400pt;}
.ws0_c00134{word-spacing:-55.584000pt;}
.ws3_c00134{word-spacing:-12.096000pt;}
.ws7_c00134{word-spacing:-0.234240pt;}
.ws5_c00134{word-spacing:-0.117120pt;}
.ws4_c00134{word-spacing:0.000000pt;}
.ws8_c00134{word-spacing:0.064000pt;}
.ws6_c00134{word-spacing:0.117120pt;}
.ws2_c00134{word-spacing:1.542400pt;}
.ws1_c00134{word-spacing:1.792000pt;}
._4_c00134{margin-left:-9.615552pt;}
._1_c00134{margin-left:-2.275200pt;}
._2_c00134{margin-left:-1.124352pt;}
._5_c00134{width:0.908800pt;}
._0_c00134{width:1.814400pt;}
._3_c00134{width:2.811840pt;}
.fs2_c00134{font-size:64.000000pt;}
.fs1_c00134{font-size:117.120000pt;}
.fs0_c00134{font-size:288.000000pt;}
.y0_c00134{bottom:0.000000pt;}
.y7_c00134{bottom:28.380000pt;}
.y6_c00134{bottom:127.814080pt;}
.y5_c00134{bottom:246.866560pt;}
.y4_c00134{bottom:365.919040pt;}
.y3_c00134{bottom:397.600000pt;}
.y2_c00134{bottom:503.913333pt;}
.y1_c00134{bottom:581.673333pt;}
.h4_c00134{height:54.156250pt;}
.h3_c00134{height:99.105937pt;}
.h2_c00134{height:104.996250pt;}
.h1_c00134{height:246.375000pt;}
.h0_c00134{height:720.000000pt;}
.w0_c00134{width:1280.000000pt;}
.x0_c00134{left:0.000000pt;}
.x1_c00134{left:614.256533pt;}
.x2_c00134{left:620.336533pt;}
.x4_c00134{left:630.734267pt;}
.x3_c00134{left:644.346133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cbb9a786deb0753a7735185c.woff')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.033203;font-style:normal;font-weight:normal;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_d6d2fbfdd1f3a1ad4a80e9bd.woff')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.030273;font-style: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.264240px;}
.ls4_c00135{letter-spacing:-0.131760px;}
.ls3_c00135{letter-spacing:0.000000px;}
.ls5_c00135{letter-spacing:0.131760px;}
.ls2_c00135{letter-spacing:0.263520px;}
.ls0_c00135{letter-spacing:0.264240px;}
.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:-50.734080px;}
.ws1_c00135{word-spacing:-0.264240px;}
.ws2_c00135{word-spacing:-0.263520px;}
.ws5_c00135{word-spacing:-0.131760px;}
.ws3_c00135{word-spacing:0.000000px;}
.ws4_c00135{word-spacing:0.131760px;}
._1_c00135{margin-left:-7.213752px;}
._2_c00135{margin-left:-5.345928px;}
._6_c00135{margin-left:-4.150440px;}
._3_c00135{margin-left:-2.490264px;}
._0_c00135{margin-left:-1.294776px;}
._4_c00135{width:1.119960px;}
._5_c00135{width:2.121336px;}
.fc0_c00135{color:rgb(255,255,255);}
.fs1_c00135{font-size:131.760000px;}
.fs0_c00135{font-size:264.240000px;}
.y0_c00135{bottom:0.000000px;}
.yb_c00135{bottom:115.142100px;}
.ya_c00135{bottom:186.469050px;}
.y9_c00135{bottom:257.795700px;}
.y8_c00135{bottom:329.122650px;}
.y2_c00135{bottom:351.770010px;}
.y7_c00135{bottom:400.449300px;}
.y1_c00135{bottom:423.048750px;}
.y6_c00135{bottom:471.776250px;}
.y5_c00135{bottom:543.102900px;}
.y4_c00135{bottom:614.429700px;}
.y3_c00135{bottom:685.756500px;}
.h2_c00135{height:111.494180px;}
.h1_c00135{height:226.049063px;}
.h0_c00135{height:810.000000px;}
.w0_c00135{width:1440.000000px;}
.x0_c00135{left:0.000000px;}
.x1_c00135{left:85.800000px;}
.x2_c00135{left:575.683200px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls1_c00135{letter-spacing:-0.234880pt;}
.ls4_c00135{letter-spacing:-0.117120pt;}
.ls3_c00135{letter-spacing:0.000000pt;}
.ls5_c00135{letter-spacing:0.117120pt;}
.ls2_c00135{letter-spacing:0.234240pt;}
.ls0_c00135{letter-spacing:0.234880pt;}
.ws0_c00135{word-spacing:-45.096960pt;}
.ws1_c00135{word-spacing:-0.234880pt;}
.ws2_c00135{word-spacing:-0.234240pt;}
.ws5_c00135{word-spacing:-0.117120pt;}
.ws3_c00135{word-spacing:0.000000pt;}
.ws4_c00135{word-spacing:0.117120pt;}
._1_c00135{margin-left:-6.412224pt;}
._2_c00135{margin-left:-4.751936pt;}
._6_c00135{margin-left:-3.689280pt;}
._3_c00135{margin-left:-2.213568pt;}
._0_c00135{margin-left:-1.150912pt;}
._4_c00135{width:0.995520pt;}
._5_c00135{width:1.885632pt;}
.fs1_c00135{font-size:117.120000pt;}
.fs0_c00135{font-size:234.880000pt;}
.y0_c00135{bottom:0.000000pt;}
.yb_c00135{bottom:102.348533pt;}
.ya_c00135{bottom:165.750267pt;}
.y9_c00135{bottom:229.151733pt;}
.y8_c00135{bottom:292.553467pt;}
.y2_c00135{bottom:312.684453pt;}
.y7_c00135{bottom:355.954933pt;}
.y1_c00135{bottom:376.043333pt;}
.y6_c00135{bottom:419.356667pt;}
.y5_c00135{bottom:482.758133pt;}
.y4_c00135{bottom:546.159733pt;}
.y3_c00135{bottom:609.561333pt;}
.h2_c00135{height:99.105937pt;}
.h1_c00135{height:200.932500pt;}
.h0_c00135{height:720.000000pt;}
.w0_c00135{width:1280.000000pt;}
.x0_c00135{left:0.000000pt;}
.x1_c00135{left:76.266667pt;}
.x2_c00135{left:511.718400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b39f2da46c103b274ba80561.woff')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.033203;font-style: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;}
._0_c00136{margin-left:-4.320000px;}
._2_c00136{margin-left:-2.736000px;}
._1_c00136{margin-left:-1.728000px;}
.fc0_c00136{color:rgb(0,0,0);}
.fs0_c00136{font-size:288.000000px;}
.y0_c00136{bottom:0.000000px;}
.y1_c00136{bottom:720.814800px;}
.h1_c00136{height:246.375000px;}
.h0_c00136{height:810.000000px;}
.w0_c00136{width:1440.000000px;}
.x0_c00136{left:0.000000px;}
.x1_c00136{left:195.277500px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls0_c00136{letter-spacing:0.000000pt;}
.ws0_c00136{word-spacing:0.000000pt;}
._0_c00136{margin-left:-3.840000pt;}
._2_c00136{margin-left:-2.432000pt;}
._1_c00136{margin-left:-1.536000pt;}
.fs0_c00136{font-size:256.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y1_c00136{bottom:640.724267pt;}
.h1_c00136{height:219.000000pt;}
.h0_c00136{height:720.000000pt;}
.w0_c00136{width:1280.000000pt;}
.x0_c00136{left:0.000000pt;}
.x1_c00136{left:173.580000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_abf25afb2cca757725973a68.woff')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.033203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00137;src:url('chunks/assets/font_d3a7ce99d69838c044506d5e.woff')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00137;src:url('chunks/assets/font_f325b21f8aed794204f73756.woff')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls1_c00137{letter-spacing:0.000000px;}
.ls2_c00137{letter-spacing:0.108000px;}
.ls3_c00137{letter-spacing:0.216000px;}
.ls0_c00137{letter-spacing:70.560000px;}
.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:-192.240000px;}
.ws3_c00137{word-spacing:-0.216000px;}
.ws2_c00137{word-spacing:-0.108000px;}
.ws1_c00137{word-spacing:0.000000px;}
._5_c00137{margin-left:-12.463200px;}
._0_c00137{margin-left:-8.804592px;}
._4_c00137{margin-left:-3.747600px;}
._2_c00137{margin-left:-2.408400px;}
._1_c00137{margin-left:-1.211112px;}
._3_c00137{width:1.101600px;}
.fc0_c00137{color:rgb(0,0,0);}
.fs1_c00137{font-size:108.000000px;}
.fs0_c00137{font-size:192.240000px;}
.y0_c00137{bottom:0.000000px;}
.yb_c00137{bottom:118.503000px;}
.ya_c00137{bottom:153.252000px;}
.y9_c00137{bottom:187.812000px;}
.y8_c00137{bottom:222.561000px;}
.y7_c00137{bottom:257.310000px;}
.y6_c00137{bottom:291.870000px;}
.y5_c00137{bottom:353.592000px;}
.y4_c00137{bottom:388.152000px;}
.y3_c00137{bottom:422.901000px;}
.y2_c00137{bottom:457.650000px;}
.y1_c00137{bottom:558.577500px;}
.h2_c00137{height:91.388672px;}
.h1_c00137{height:164.455313px;}
.h0_c00137{height:810.000000px;}
.w0_c00137{width:1440.000000px;}
.x0_c00137{left:0.000000px;}
.x1_c00137{left:54.630000px;}
.x2_c00137{left:88.470000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls1_c00137{letter-spacing:0.000000pt;}
.ls2_c00137{letter-spacing:0.096000pt;}
.ls3_c00137{letter-spacing:0.192000pt;}
.ls0_c00137{letter-spacing:62.720000pt;}
.ws0_c00137{word-spacing:-170.880000pt;}
.ws3_c00137{word-spacing:-0.192000pt;}
.ws2_c00137{word-spacing:-0.096000pt;}
.ws1_c00137{word-spacing:0.000000pt;}
._5_c00137{margin-left:-11.078400pt;}
._0_c00137{margin-left:-7.826304pt;}
._4_c00137{margin-left:-3.331200pt;}
._2_c00137{margin-left:-2.140800pt;}
._1_c00137{margin-left:-1.076544pt;}
._3_c00137{width:0.979200pt;}
.fs1_c00137{font-size:96.000000pt;}
.fs0_c00137{font-size:170.880000pt;}
.y0_c00137{bottom:0.000000pt;}
.yb_c00137{bottom:105.336000pt;}
.ya_c00137{bottom:136.224000pt;}
.y9_c00137{bottom:166.944000pt;}
.y8_c00137{bottom:197.832000pt;}
.y7_c00137{bottom:228.720000pt;}
.y6_c00137{bottom:259.440000pt;}
.y5_c00137{bottom:314.304000pt;}
.y4_c00137{bottom:345.024000pt;}
.y3_c00137{bottom:375.912000pt;}
.y2_c00137{bottom:406.800000pt;}
.y1_c00137{bottom:496.513333pt;}
.h2_c00137{height:81.234375pt;}
.h1_c00137{height:146.182500pt;}
.h0_c00137{height:720.000000pt;}
.w0_c00137{width:1280.000000pt;}
.x0_c00137{left:0.000000pt;}
.x1_c00137{left:48.560000pt;}
.x2_c00137{left:78.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9bb45cf329b14e48f07bfcff.woff')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.033203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00138;src:url('chunks/assets/font_51b4125f0391c3f14afdca2b.woff')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00138;src:url('chunks/assets/font_8a89c98a2c92116eed4581c4.woff')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:1.030273;font-style: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;}
.ls1_c00138{letter-spacing:0.000000px;}
.ls3_c00138{letter-spacing:0.108000px;}
.ls2_c00138{letter-spacing:0.216000px;}
.ls0_c00138{letter-spacing:70.200000px;}
.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:-216.000000px;}
.ws2_c00138{word-spacing:-0.216000px;}
.ws3_c00138{word-spacing:-0.108000px;}
.ws1_c00138{word-spacing:0.000000px;}
._4_c00138{margin-left:-8.499600px;}
._1_c00138{margin-left:-4.687200px;}
._3_c00138{margin-left:-3.488400px;}
._2_c00138{margin-left:-1.512000px;}
._0_c00138{width:3.888000px;}
.fc0_c00138{color:rgb(0,0,0);}
.fs1_c00138{font-size:108.000000px;}
.fs0_c00138{font-size:216.000000px;}
.y0_c00138{bottom:0.000000px;}
.y6_c00138{bottom:126.840150px;}
.y5_c00138{bottom:156.000150px;}
.y4_c00138{bottom:185.160150px;}
.y1_c00138{bottom:207.513900px;}
.y3_c00138{bottom:273.360150px;}
.y2_c00138{bottom:302.520150px;}
.h3_c00138{height:91.388672px;}
.h2_c00138{height:96.820312px;}
.h1_c00138{height:184.781250px;}
.h0_c00138{height:810.000000px;}
.w0_c00138{width:1440.000000px;}
.x0_c00138{left:0.000000px;}
.x1_c00138{left:67.612500px;}
.x2_c00138{left:509.695650px;}
.x3_c00138{left:536.695650px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls1_c00138{letter-spacing:0.000000pt;}
.ls3_c00138{letter-spacing:0.096000pt;}
.ls2_c00138{letter-spacing:0.192000pt;}
.ls0_c00138{letter-spacing:62.400000pt;}
.ws0_c00138{word-spacing:-192.000000pt;}
.ws2_c00138{word-spacing:-0.192000pt;}
.ws3_c00138{word-spacing:-0.096000pt;}
.ws1_c00138{word-spacing:0.000000pt;}
._4_c00138{margin-left:-7.555200pt;}
._1_c00138{margin-left:-4.166400pt;}
._3_c00138{margin-left:-3.100800pt;}
._2_c00138{margin-left:-1.344000pt;}
._0_c00138{width:3.456000pt;}
.fs1_c00138{font-size:96.000000pt;}
.fs0_c00138{font-size:192.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y6_c00138{bottom:112.746800pt;}
.y5_c00138{bottom:138.666800pt;}
.y4_c00138{bottom:164.586800pt;}
.y1_c00138{bottom:184.456800pt;}
.y3_c00138{bottom:242.986800pt;}
.y2_c00138{bottom:268.906800pt;}
.h3_c00138{height:81.234375pt;}
.h2_c00138{height:86.062500pt;}
.h1_c00138{height:164.250000pt;}
.h0_c00138{height:720.000000pt;}
.w0_c00138{width:1280.000000pt;}
.x0_c00138{left:0.000000pt;}
.x1_c00138{left:60.100000pt;}
.x2_c00138{left:453.062800pt;}
.x3_c00138{left:477.062800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d2758490c1dfaafc73a0854.woff')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.033203;font-style:normal;font-weight:normal;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_51b4125f0391c3f14afdca2b.woff')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00139;src:url('chunks/assets/font_f6e9948aa19ac2b7e17e67d6.woff')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00139;src:url('chunks/assets/font_e6baa63eeea4863ced847b85.woff')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.029297;font-style: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:-4.613760px;}
.ls4_c00139{letter-spacing:-0.108000px;}
.ls5_c00139{letter-spacing:0.000000px;}
.ls2_c00139{letter-spacing:0.108000px;}
.ls3_c00139{letter-spacing:0.216000px;}
.ls0_c00139{letter-spacing:70.200000px;}
.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:-187.626240px;}
.ws3_c00139{word-spacing:-0.216000px;}
.ws2_c00139{word-spacing:-0.108000px;}
.ws1_c00139{word-spacing:0.000000px;}
.ws4_c00139{word-spacing:0.108000px;}
._8_c00139{margin-left:-13.100400px;}
._6_c00139{margin-left:-9.061200px;}
._7_c00139{margin-left:-7.700400px;}
._5_c00139{margin-left:-4.827600px;}
._3_c00139{margin-left:-3.207600px;}
._2_c00139{margin-left:-1.404000px;}
._4_c00139{width:1.231200px;}
._1_c00139{width:3.517992px;}
._0_c00139{width:4.690656px;}
.fc0_c00139{color:rgb(0,0,0);}
.fs1_c00139{font-size:108.000000px;}
.fs0_c00139{font-size:192.240000px;}
.y0_c00139{bottom:0.000000px;}
.ya_c00139{bottom:203.191800px;}
.y9_c00139{bottom:232.351800px;}
.y8_c00139{bottom:261.511800px;}
.y7_c00139{bottom:290.671800px;}
.y6_c00139{bottom:319.831800px;}
.y5_c00139{bottom:393.082800px;}
.y4_c00139{bottom:422.242800px;}
.y3_c00139{bottom:451.402800px;}
.y2_c00139{bottom:480.562800px;}
.y1_c00139{bottom:580.211850px;}
.h3_c00139{height:91.388672px;}
.h2_c00139{height:96.820312px;}
.h1_c00139{height:164.455313px;}
.h0_c00139{height:810.000000px;}
.w0_c00139{width:1440.000000px;}
.x0_c00139{left:0.000000px;}
.x1_c00139{left:867.756300px;}
.x2_c00139{left:894.756300px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls1_c00139{letter-spacing:-4.101120pt;}
.ls4_c00139{letter-spacing:-0.096000pt;}
.ls5_c00139{letter-spacing:0.000000pt;}
.ls2_c00139{letter-spacing:0.096000pt;}
.ls3_c00139{letter-spacing:0.192000pt;}
.ls0_c00139{letter-spacing:62.400000pt;}
.ws0_c00139{word-spacing:-166.778880pt;}
.ws3_c00139{word-spacing:-0.192000pt;}
.ws2_c00139{word-spacing:-0.096000pt;}
.ws1_c00139{word-spacing:0.000000pt;}
.ws4_c00139{word-spacing:0.096000pt;}
._8_c00139{margin-left:-11.644800pt;}
._6_c00139{margin-left:-8.054400pt;}
._7_c00139{margin-left:-6.844800pt;}
._5_c00139{margin-left:-4.291200pt;}
._3_c00139{margin-left:-2.851200pt;}
._2_c00139{margin-left:-1.248000pt;}
._4_c00139{width:1.094400pt;}
._1_c00139{width:3.127104pt;}
._0_c00139{width:4.169472pt;}
.fs1_c00139{font-size:96.000000pt;}
.fs0_c00139{font-size:170.880000pt;}
.y0_c00139{bottom:0.000000pt;}
.ya_c00139{bottom:180.614933pt;}
.y9_c00139{bottom:206.534933pt;}
.y8_c00139{bottom:232.454933pt;}
.y7_c00139{bottom:258.374933pt;}
.y6_c00139{bottom:284.294933pt;}
.y5_c00139{bottom:349.406933pt;}
.y4_c00139{bottom:375.326933pt;}
.y3_c00139{bottom:401.246933pt;}
.y2_c00139{bottom:427.166933pt;}
.y1_c00139{bottom:515.743867pt;}
.h3_c00139{height:81.234375pt;}
.h2_c00139{height:86.062500pt;}
.h1_c00139{height:146.182500pt;}
.h0_c00139{height:720.000000pt;}
.w0_c00139{width:1280.000000pt;}
.x0_c00139{left:0.000000pt;}
.x1_c00139{left:771.338933pt;}
.x2_c00139{left:795.338933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51b4125f0391c3f14afdca2b.woff')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00140;src:url('chunks/assets/font_1d31e36bb66422dc25ce0ff0.woff')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00140;src:url('chunks/assets/font_b9d56bc8334d00b48bef4f9b.woff')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.033203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls4_c00140{letter-spacing:-7.361280px;}
.ls1_c00140{letter-spacing:-0.613440px;}
.ls6_c00140{letter-spacing:-0.384480px;}
.ls3_c00140{letter-spacing:-0.204480px;}
.ls5_c00140{letter-spacing:-0.192240px;}
.ls2_c00140{letter-spacing:0.102240px;}
.ls0_c00140{letter-spacing:72.216000px;}
.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;}
}
.ws2_c00140{word-spacing:-36.910080px;}
.ws3_c00140{word-spacing:-36.717840px;}
.ws0_c00140{word-spacing:-20.856960px;}
.ws1_c00140{word-spacing:-13.393440px;}
.ws6_c00140{word-spacing:-0.102240px;}
.ws4_c00140{word-spacing:0.000000px;}
.ws7_c00140{word-spacing:0.204480px;}
.ws8_c00140{word-spacing:0.384480px;}
.ws5_c00140{word-spacing:0.613440px;}
._1_c00140{margin-left:-7.391952px;}
._4_c00140{margin-left:-4.069152px;}
._2_c00140{margin-left:-2.371968px;}
._3_c00140{margin-left:-1.226880px;}
._0_c00140{width:1.635840px;}
._5_c00140{width:7.248816px;}
.fc0_c00140{color:rgb(0,0,0);}
.fs0_c00140{font-size:102.240000px;}
.fs1_c00140{font-size:192.240000px;}
.y0_c00140{bottom:0.000000px;}
.y10_c00140{bottom:73.227690px;}
.yf_c00140{bottom:97.714170px;}
.ye_c00140{bottom:122.200650px;}
.yd_c00140{bottom:161.761770px;}
.yc_c00140{bottom:186.248250px;}
.yb_c00140{bottom:210.734730px;}
.ya_c00140{bottom:235.221210px;}
.y9_c00140{bottom:259.707690px;}
.y8_c00140{bottom:284.194170px;}
.y7_c00140{bottom:308.680650px;}
.y6_c00140{bottom:348.068250px;}
.y5_c00140{bottom:372.554730px;}
.y4_c00140{bottom:397.041210px;}
.y3_c00140{bottom:421.527690px;}
.y2_c00140{bottom:446.014170px;}
.y1_c00140{bottom:470.500650px;}
.y13_c00140{bottom:572.924820px;}
.y12_c00140{bottom:624.781560px;}
.y11_c00140{bottom:676.638300px;}
.h2_c00140{height:86.514609px;}
.h1_c00140{height:91.656562px;}
.h3_c00140{height:164.455313px;}
.h0_c00140{height:810.000000px;}
.w0_c00140{width:1440.000000px;}
.x0_c00140{left:0.000000px;}
.x1_c00140{left:39.211800px;}
.x3_c00140{left:53.734200px;}
.x2_c00140{left:66.211800px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls4_c00140{letter-spacing:-6.543360pt;}
.ls1_c00140{letter-spacing:-0.545280pt;}
.ls6_c00140{letter-spacing:-0.341760pt;}
.ls3_c00140{letter-spacing:-0.181760pt;}
.ls5_c00140{letter-spacing:-0.170880pt;}
.ls2_c00140{letter-spacing:0.090880pt;}
.ls0_c00140{letter-spacing:64.192000pt;}
.ws2_c00140{word-spacing:-32.808960pt;}
.ws3_c00140{word-spacing:-32.638080pt;}
.ws0_c00140{word-spacing:-18.539520pt;}
.ws1_c00140{word-spacing:-11.905280pt;}
.ws6_c00140{word-spacing:-0.090880pt;}
.ws4_c00140{word-spacing:0.000000pt;}
.ws7_c00140{word-spacing:0.181760pt;}
.ws8_c00140{word-spacing:0.341760pt;}
.ws5_c00140{word-spacing:0.545280pt;}
._1_c00140{margin-left:-6.570624pt;}
._4_c00140{margin-left:-3.617024pt;}
._2_c00140{margin-left:-2.108416pt;}
._3_c00140{margin-left:-1.090560pt;}
._0_c00140{width:1.454080pt;}
._5_c00140{width:6.443392pt;}
.fs0_c00140{font-size:90.880000pt;}
.fs1_c00140{font-size:170.880000pt;}
.y0_c00140{bottom:0.000000pt;}
.y10_c00140{bottom:65.091280pt;}
.yf_c00140{bottom:86.857040pt;}
.ye_c00140{bottom:108.622800pt;}
.yd_c00140{bottom:143.788240pt;}
.yc_c00140{bottom:165.554000pt;}
.yb_c00140{bottom:187.319760pt;}
.ya_c00140{bottom:209.085520pt;}
.y9_c00140{bottom:230.851280pt;}
.y8_c00140{bottom:252.617040pt;}
.y7_c00140{bottom:274.382800pt;}
.y6_c00140{bottom:309.394000pt;}
.y5_c00140{bottom:331.159760pt;}
.y4_c00140{bottom:352.925520pt;}
.y3_c00140{bottom:374.691280pt;}
.y2_c00140{bottom:396.457040pt;}
.y1_c00140{bottom:418.222800pt;}
.y13_c00140{bottom:509.266507pt;}
.y12_c00140{bottom:555.361387pt;}
.y11_c00140{bottom:601.456267pt;}
.h2_c00140{height:76.901875pt;}
.h1_c00140{height:81.472500pt;}
.h3_c00140{height:146.182500pt;}
.h0_c00140{height:720.000000pt;}
.w0_c00140{width:1280.000000pt;}
.x0_c00140{left:0.000000pt;}
.x1_c00140{left:34.854933pt;}
.x3_c00140{left:47.763733pt;}
.x2_c00140{left:58.854933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74256df5641dd87950e10b44.woff')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.033203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00141;src:url('chunks/assets/font_0521dd3eec0873c6f4c4ae0e.woff')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00141;src:url('chunks/assets/font_e380d832da509630f006e9b3.woff')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.029297;font-style: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:-2.397600px;}
.ls3_c00141{letter-spacing:-2.157840px;}
.ls6_c00141{letter-spacing:-0.378000px;}
.ls1_c00141{letter-spacing:-0.239760px;}
.ls5_c00141{letter-spacing:-0.126000px;}
.ls2_c00141{letter-spacing:0.000000px;}
.ls4_c00141{letter-spacing:0.126000px;}
.ls7_c00141{letter-spacing:0.378000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00141{word-spacing:-44.115840px;}
.ws5_c00141{word-spacing:-25.956000px;}
.ws2_c00141{word-spacing:-25.704000px;}
.ws9_c00141{word-spacing:0.000000px;}
.ws8_c00141{word-spacing:0.239760px;}
.ws7_c00141{word-spacing:2.397600px;}
.ws0_c00141{word-spacing:3.596400px;}
.ws3_c00141{word-spacing:441.314400px;}
.ws4_c00141{word-spacing:441.610200px;}
.ws6_c00141{word-spacing:630.771600px;}
._3_c00141{margin-left:-3.994200px;}
._2_c00141{margin-left:-1.294704px;}
._1_c00141{width:1.198800px;}
._0_c00141{width:2.541456px;}
.fc0_c00141{color:rgb(0,0,0);}
.fs1_c00141{font-size:126.000000px;}
.fs0_c00141{font-size:239.760000px;}
.y0_c00141{bottom:0.000000px;}
.y5_c00141{bottom:97.818300px;}
.y4_c00141{bottom:347.347950px;}
.y3_c00141{bottom:381.903450px;}
.y2_c00141{bottom:640.114710px;}
.y1_c00141{bottom:704.909850px;}
.h2_c00141{height:106.620117px;}
.h1_c00141{height:205.107187px;}
.h0_c00141{height:810.000000px;}
.w0_c00141{width:1440.000000px;}
.x0_c00141{left:0.000000px;}
.x3_c00141{left:248.892750px;}
.x4_c00141{left:256.988250px;}
.x1_c00141{left:290.557500px;}
.x2_c00141{left:480.507360px;}
.x6_c00141{left:492.914100px;}
.x5_c00141{left:521.170500px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls0_c00141{letter-spacing:-2.131200pt;}
.ls3_c00141{letter-spacing:-1.918080pt;}
.ls6_c00141{letter-spacing:-0.336000pt;}
.ls1_c00141{letter-spacing:-0.213120pt;}
.ls5_c00141{letter-spacing:-0.112000pt;}
.ls2_c00141{letter-spacing:0.000000pt;}
.ls4_c00141{letter-spacing:0.112000pt;}
.ls7_c00141{letter-spacing:0.336000pt;}
.ws1_c00141{word-spacing:-39.214080pt;}
.ws5_c00141{word-spacing:-23.072000pt;}
.ws2_c00141{word-spacing:-22.848000pt;}
.ws9_c00141{word-spacing:0.000000pt;}
.ws8_c00141{word-spacing:0.213120pt;}
.ws7_c00141{word-spacing:2.131200pt;}
.ws0_c00141{word-spacing:3.196800pt;}
.ws3_c00141{word-spacing:392.279467pt;}
.ws4_c00141{word-spacing:392.542400pt;}
.ws6_c00141{word-spacing:560.685867pt;}
._3_c00141{margin-left:-3.550400pt;}
._2_c00141{margin-left:-1.150848pt;}
._1_c00141{width:1.065600pt;}
._0_c00141{width:2.259072pt;}
.fs1_c00141{font-size:112.000000pt;}
.fs0_c00141{font-size:213.120000pt;}
.y0_c00141{bottom:0.000000pt;}
.y5_c00141{bottom:86.949600pt;}
.y4_c00141{bottom:308.753733pt;}
.y3_c00141{bottom:339.469733pt;}
.y2_c00141{bottom:568.990853pt;}
.y1_c00141{bottom:626.586533pt;}
.h2_c00141{height:94.773438pt;}
.h1_c00141{height:182.317500pt;}
.h0_c00141{height:720.000000pt;}
.w0_c00141{width:1280.000000pt;}
.x0_c00141{left:0.000000pt;}
.x3_c00141{left:221.238000pt;}
.x4_c00141{left:228.434000pt;}
.x1_c00141{left:258.273333pt;}
.x2_c00141{left:427.117653pt;}
.x6_c00141{left:438.145867pt;}
.x5_c00141{left:463.262667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef52ade2f69bc5ddb1611d60.woff')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.033203;font-style:normal;font-weight:normal;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_f4ec202509e8d38d37892389.woff')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00142;src:url('chunks/assets/font_87cb8ee7e9dbfbb9c20924c1.woff')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.020020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00142;src:url('chunks/assets/font_0c2c5cd0df00a7c087e59cda.woff')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:0.858887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00142;src:url('chunks/assets/font_e6baa63eeea4863ced847b85.woff')format("woff");}.ff5_c00142{font-family:ff5_c00142;line-height:1.029297;font-style: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;}
.ls1_c00142{letter-spacing:-3.170880px;}
.lsb_c00142{letter-spacing:-1.819440px;}
.ls5_c00142{letter-spacing:-1.202400px;}
.lsd_c00142{letter-spacing:-0.287280px;}
.ls2_c00142{letter-spacing:-0.264240px;}
.lsa_c00142{letter-spacing:-0.191520px;}
.ls7_c00142{letter-spacing:-0.120240px;}
.ls4_c00142{letter-spacing:0.000000px;}
.ls8_c00142{letter-spacing:0.120240px;}
.lsc_c00142{letter-spacing:0.191520px;}
.ls3_c00142{letter-spacing:0.264240px;}
.ls9_c00142{letter-spacing:0.287280px;}
.ls6_c00142{letter-spacing:0.360720px;}
.ls0_c00142{letter-spacing:19.343520px;}
.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:-24.408720px;}
.ws2_c00142{word-spacing:-19.630800px;}
.ws1_c00142{word-spacing:-19.247760px;}
.ws3_c00142{word-spacing:-19.152000px;}
.ws9_c00142{word-spacing:-0.360720px;}
.wsc_c00142{word-spacing:-0.287280px;}
.ws6_c00142{word-spacing:-0.264240px;}
.wsf_c00142{word-spacing:-0.191520px;}
.wsb_c00142{word-spacing:-0.120240px;}
.ws7_c00142{word-spacing:0.000000px;}
.wsa_c00142{word-spacing:0.120240px;}
.wsd_c00142{word-spacing:0.191520px;}
.ws5_c00142{word-spacing:0.264240px;}
.ws10_c00142{word-spacing:0.287280px;}
.ws8_c00142{word-spacing:1.202400px;}
.wse_c00142{word-spacing:1.819440px;}
.ws4_c00142{word-spacing:3.170880px;}
._5_c00142{margin-left:-3.583152px;}
._1_c00142{margin-left:-2.193192px;}
._4_c00142{margin-left:-1.162656px;}
._3_c00142{width:1.083384px;}
._0_c00142{width:2.959488px;}
._2_c00142{width:4.835592px;}
._6_c00142{width:20.648880px;}
.fc1_c00142{color:rgb(0,0,0);}
.fc0_c00142{color:rgb(255,255,255);}
.fs2_c00142{font-size:95.760000px;}
.fs1_c00142{font-size:120.240000px;}
.fs0_c00142{font-size:264.240000px;}
.y0_c00142{bottom:0.000000px;}
.y25_c00142{bottom:105.704310px;}
.y24_c00142{bottom:131.990430px;}
.y23_c00142{bottom:158.444130px;}
.y22_c00142{bottom:184.730250px;}
.y21_c00142{bottom:235.644510px;}
.y20_c00142{bottom:261.930630px;}
.y12_c00142{bottom:275.363550px;}
.y4_c00142{bottom:280.263780px;}
.y1f_c00142{bottom:288.384330px;}
.y11_c00142{bottom:308.309310px;}
.y1e_c00142{bottom:314.670450px;}
.y10_c00142{bottom:341.255070px;}
.y3_c00142{bottom:351.542520px;}
.yf_c00142{bottom:374.200830px;}
.y1d_c00142{bottom:391.871130px;}
.ye_c00142{bottom:407.146590px;}
.y1c_c00142{bottom:418.324830px;}
.y2_c00142{bottom:422.821260px;}
.yd_c00142{bottom:440.272710px;}
.y1b_c00142{bottom:444.610950px;}
.yc_c00142{bottom:473.218470px;}
.y1_c00142{bottom:494.100000px;}
.y1a_c00142{bottom:495.525210px;}
.yb_c00142{bottom:506.164230px;}
.y19_c00142{bottom:521.811330px;}
.ya_c00142{bottom:539.109990px;}
.y18_c00142{bottom:548.265030px;}
.y9_c00142{bottom:572.055750px;}
.y17_c00142{bottom:574.551150px;}
.y8_c00142{bottom:605.001510px;}
.y16_c00142{bottom:625.465560px;}
.y7_c00142{bottom:637.947270px;}
.y15_c00142{bottom:651.751680px;}
.y6_c00142{bottom:670.893030px;}
.y14_c00142{bottom:678.205380px;}
.y5_c00142{bottom:704.019150px;}
.y13_c00142{bottom:704.491500px;}
.h4_c00142{height:80.937773px;}
.h3_c00142{height:81.031289px;}
.h2_c00142{height:101.746055px;}
.h1_c00142{height:226.049063px;}
.h0_c00142{height:810.000000px;}
.w0_c00142{width:1440.000000px;}
.x0_c00142{left:0.000000px;}
.x1_c00142{left:109.800150px;}
.x2_c00142{left:571.666650px;}
.x3_c00142{left:793.664700px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls1_c00142{letter-spacing:-2.818560pt;}
.lsb_c00142{letter-spacing:-1.617280pt;}
.ls5_c00142{letter-spacing:-1.068800pt;}
.lsd_c00142{letter-spacing:-0.255360pt;}
.ls2_c00142{letter-spacing:-0.234880pt;}
.lsa_c00142{letter-spacing:-0.170240pt;}
.ls7_c00142{letter-spacing:-0.106880pt;}
.ls4_c00142{letter-spacing:0.000000pt;}
.ls8_c00142{letter-spacing:0.106880pt;}
.lsc_c00142{letter-spacing:0.170240pt;}
.ls3_c00142{letter-spacing:0.234880pt;}
.ls9_c00142{letter-spacing:0.255360pt;}
.ls6_c00142{letter-spacing:0.320640pt;}
.ls0_c00142{letter-spacing:17.194240pt;}
.ws0_c00142{word-spacing:-21.696640pt;}
.ws2_c00142{word-spacing:-17.449600pt;}
.ws1_c00142{word-spacing:-17.109120pt;}
.ws3_c00142{word-spacing:-17.024000pt;}
.ws9_c00142{word-spacing:-0.320640pt;}
.wsc_c00142{word-spacing:-0.255360pt;}
.ws6_c00142{word-spacing:-0.234880pt;}
.wsf_c00142{word-spacing:-0.170240pt;}
.wsb_c00142{word-spacing:-0.106880pt;}
.ws7_c00142{word-spacing:0.000000pt;}
.wsa_c00142{word-spacing:0.106880pt;}
.wsd_c00142{word-spacing:0.170240pt;}
.ws5_c00142{word-spacing:0.234880pt;}
.ws10_c00142{word-spacing:0.255360pt;}
.ws8_c00142{word-spacing:1.068800pt;}
.wse_c00142{word-spacing:1.617280pt;}
.ws4_c00142{word-spacing:2.818560pt;}
._5_c00142{margin-left:-3.185024pt;}
._1_c00142{margin-left:-1.949504pt;}
._4_c00142{margin-left:-1.033472pt;}
._3_c00142{width:0.963008pt;}
._0_c00142{width:2.630656pt;}
._2_c00142{width:4.298304pt;}
._6_c00142{width:18.354560pt;}
.fs2_c00142{font-size:85.120000pt;}
.fs1_c00142{font-size:106.880000pt;}
.fs0_c00142{font-size:234.880000pt;}
.y0_c00142{bottom:0.000000pt;}
.y25_c00142{bottom:93.959387pt;}
.y24_c00142{bottom:117.324827pt;}
.y23_c00142{bottom:140.839227pt;}
.y22_c00142{bottom:164.204667pt;}
.y21_c00142{bottom:209.461787pt;}
.y20_c00142{bottom:232.827227pt;}
.y12_c00142{bottom:244.767600pt;}
.y4_c00142{bottom:249.123360pt;}
.y1f_c00142{bottom:256.341627pt;}
.y11_c00142{bottom:274.052720pt;}
.y1e_c00142{bottom:279.707067pt;}
.y10_c00142{bottom:303.337840pt;}
.y3_c00142{bottom:312.482240pt;}
.yf_c00142{bottom:332.622960pt;}
.y1d_c00142{bottom:348.329893pt;}
.ye_c00142{bottom:361.908080pt;}
.y1c_c00142{bottom:371.844293pt;}
.y2_c00142{bottom:375.841120pt;}
.yd_c00142{bottom:391.353520pt;}
.y1b_c00142{bottom:395.209733pt;}
.yc_c00142{bottom:420.638640pt;}
.y1_c00142{bottom:439.200000pt;}
.y1a_c00142{bottom:440.466853pt;}
.yb_c00142{bottom:449.923760pt;}
.y19_c00142{bottom:463.832293pt;}
.ya_c00142{bottom:479.208880pt;}
.y18_c00142{bottom:487.346693pt;}
.y9_c00142{bottom:508.494000pt;}
.y17_c00142{bottom:510.712133pt;}
.y8_c00142{bottom:537.779120pt;}
.y16_c00142{bottom:555.969387pt;}
.y7_c00142{bottom:567.064240pt;}
.y15_c00142{bottom:579.334827pt;}
.y6_c00142{bottom:596.349360pt;}
.y14_c00142{bottom:602.849227pt;}
.y5_c00142{bottom:625.794800pt;}
.y13_c00142{bottom:626.214667pt;}
.h4_c00142{height:71.944688pt;}
.h3_c00142{height:72.027812pt;}
.h2_c00142{height:90.440937pt;}
.h1_c00142{height:200.932500pt;}
.h0_c00142{height:720.000000pt;}
.w0_c00142{width:1280.000000pt;}
.x0_c00142{left:0.000000pt;}
.x1_c00142{left:97.600133pt;}
.x2_c00142{left:508.148133pt;}
.x3_c00142{left:705.479733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d3294b0ff07b97546694cdd.woff')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.033203;font-style:normal;font-weight:normal;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_51b4125f0391c3f14afdca2b.woff')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00143;src:url('chunks/assets/font_86e74a5bdb5a2a1df435cac0.woff')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:0.858887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00143;src:url('chunks/assets/font_f3c76c54666f8470ea02ef48.woff')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00143;src:url('chunks/assets/font_281d5744eaa655506736d793.woff')format("woff");}.ff5_c00143{font-family:ff5_c00143;line-height:1.020020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00143;src:url('chunks/assets/font_e6baa63eeea4863ced847b85.woff')format("woff");}.ff6_c00143{font-family:ff6_c00143;line-height:1.029297;font-style: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;}
.ls8_c00143{letter-spacing:-1.728000px;}
.ls6_c00143{letter-spacing:-0.324000px;}
.ls2_c00143{letter-spacing:-0.167760px;}
.ls7_c00143{letter-spacing:-0.108000px;}
.ls3_c00143{letter-spacing:0.000000px;}
.ls4_c00143{letter-spacing:0.108000px;}
.ls5_c00143{letter-spacing:0.216000px;}
.ls1_c00143{letter-spacing:21.600000px;}
.ls0_c00143{letter-spacing:70.200000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00143{word-spacing:-22.032000px;}
.ws6_c00143{word-spacing:-0.216000px;}
.ws5_c00143{word-spacing:-0.108000px;}
.ws4_c00143{word-spacing:0.000000px;}
.ws3_c00143{word-spacing:0.167760px;}
.ws2_c00143{word-spacing:1.404000px;}
.ws7_c00143{word-spacing:2.160000px;}
.ws0_c00143{word-spacing:2.505600px;}
._3_c00143{margin-left:-7.653744px;}
._2_c00143{margin-left:-3.179520px;}
._0_c00143{margin-left:-1.610496px;}
._4_c00143{width:1.053216px;}
._5_c00143{width:2.116368px;}
._1_c00143{width:3.841704px;}
.fc1_c00143{color:rgb(0,0,0);}
.fc0_c00143{color:rgb(255,255,255);}
.fs1_c00143{font-size:108.000000px;}
.fs0_c00143{font-size:167.760000px;}
.y0_c00143{bottom:0.000000px;}
.yf_c00143{bottom:138.136800px;}
.ye_c00143{bottom:167.296800px;}
.yd_c00143{bottom:243.616800px;}
.yc_c00143{bottom:272.776800px;}
.yb_c00143{bottom:301.936800px;}
.y2_c00143{bottom:376.257720px;}
.ya_c00143{bottom:378.256800px;}
.y9_c00143{bottom:407.416800px;}
.y1_c00143{bottom:421.636800px;}
.y8_c00143{bottom:483.736800px;}
.y7_c00143{bottom:512.896800px;}
.y6_c00143{bottom:542.056800px;}
.y5_c00143{bottom:571.216800px;}
.y4_c00143{bottom:647.536800px;}
.y3_c00143{bottom:676.696800px;}
.h4_c00143{height:91.283203px;}
.h3_c00143{height:91.388672px;}
.h2_c00143{height:96.820312px;}
.h1_c00143{height:143.513437px;}
.h0_c00143{height:810.000000px;}
.w0_c00143{width:1440.000000px;}
.x0_c00143{left:0.000000px;}
.x1_c00143{left:91.922100px;}
.x2_c00143{left:581.072550px;}
.x3_c00143{left:608.072550px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls8_c00143{letter-spacing:-1.536000pt;}
.ls6_c00143{letter-spacing:-0.288000pt;}
.ls2_c00143{letter-spacing:-0.149120pt;}
.ls7_c00143{letter-spacing:-0.096000pt;}
.ls3_c00143{letter-spacing:0.000000pt;}
.ls4_c00143{letter-spacing:0.096000pt;}
.ls5_c00143{letter-spacing:0.192000pt;}
.ls1_c00143{letter-spacing:19.200000pt;}
.ls0_c00143{letter-spacing:62.400000pt;}
.ws1_c00143{word-spacing:-19.584000pt;}
.ws6_c00143{word-spacing:-0.192000pt;}
.ws5_c00143{word-spacing:-0.096000pt;}
.ws4_c00143{word-spacing:0.000000pt;}
.ws3_c00143{word-spacing:0.149120pt;}
.ws2_c00143{word-spacing:1.248000pt;}
.ws7_c00143{word-spacing:1.920000pt;}
.ws0_c00143{word-spacing:2.227200pt;}
._3_c00143{margin-left:-6.803328pt;}
._2_c00143{margin-left:-2.826240pt;}
._0_c00143{margin-left:-1.431552pt;}
._4_c00143{width:0.936192pt;}
._5_c00143{width:1.881216pt;}
._1_c00143{width:3.414848pt;}
.fs1_c00143{font-size:96.000000pt;}
.fs0_c00143{font-size:149.120000pt;}
.y0_c00143{bottom:0.000000pt;}
.yf_c00143{bottom:122.788267pt;}
.ye_c00143{bottom:148.708267pt;}
.yd_c00143{bottom:216.548267pt;}
.yc_c00143{bottom:242.468267pt;}
.yb_c00143{bottom:268.388267pt;}
.y2_c00143{bottom:334.451307pt;}
.ya_c00143{bottom:336.228267pt;}
.y9_c00143{bottom:362.148267pt;}
.y1_c00143{bottom:374.788267pt;}
.y8_c00143{bottom:429.988267pt;}
.y7_c00143{bottom:455.908267pt;}
.y6_c00143{bottom:481.828267pt;}
.y5_c00143{bottom:507.748267pt;}
.y4_c00143{bottom:575.588267pt;}
.y3_c00143{bottom:601.508267pt;}
.h4_c00143{height:81.140625pt;}
.h3_c00143{height:81.234375pt;}
.h2_c00143{height:86.062500pt;}
.h1_c00143{height:127.567500pt;}
.h0_c00143{height:720.000000pt;}
.w0_c00143{width:1280.000000pt;}
.x0_c00143{left:0.000000pt;}
.x1_c00143{left:81.708533pt;}
.x2_c00143{left:516.508933pt;}
.x3_c00143{left:540.508933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87e380df9ca02103990c3e31.woff')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.033203;font-style:normal;font-weight:normal;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_857ed677f5378fe73879f0f6.woff')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00144;src:url('chunks/assets/font_7665ba724c9fb8c42db23ac2.woff')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.029297;font-style: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;}
.ls2_c00144{letter-spacing:-3.836160px;}
.ls3_c00144{letter-spacing:-0.239760px;}
.ls4_c00144{letter-spacing:-0.090000px;}
.ls1_c00144{letter-spacing:0.180000px;}
.ls0_c00144{letter-spacing:0.360000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00144{word-spacing:-239.520240px;}
.ws0_c00144{word-spacing:-184.543272px;}
.ws2_c00144{word-spacing:-18.630000px;}
.ws3_c00144{word-spacing:-18.450000px;}
.ws5_c00144{word-spacing:-1.350000px;}
.ws6_c00144{word-spacing:-1.170000px;}
.ws4_c00144{word-spacing:-0.450000px;}
.ws9_c00144{word-spacing:-0.360000px;}
.ws7_c00144{word-spacing:-0.180000px;}
.ws8_c00144{word-spacing:0.000000px;}
._4_c00144{margin-left:-5.984208px;}
._3_c00144{margin-left:-3.960000px;}
._1_c00144{margin-left:-2.205792px;}
._2_c00144{margin-left:-1.126872px;}
._5_c00144{width:1.080000px;}
._0_c00144{width:4.003992px;}
.fc5_c00144{color:rgb(78,167,46);}
.fc3_c00144{color:rgb(15,158,213);}
.fc2_c00144{color:rgb(25,107,36);}
.fc1_c00144{color:rgb(233,113,50);}
.fc4_c00144{color:rgb(160,43,147);}
.fc0_c00144{color:rgb(255,255,255);}
.fs1_c00144{font-size:90.000000px;}
.fs0_c00144{font-size:239.760000px;}
.y0_c00144{bottom:0.000000px;}
.y3_c00144{bottom:213.795150px;}
.y2_c00144{bottom:248.175150px;}
.y1_c00144{bottom:700.761150px;}
.h2_c00144{height:76.157227px;}
.h1_c00144{height:205.107187px;}
.h0_c00144{height:810.000000px;}
.w0_c00144{width:1440.000000px;}
.x0_c00144{left:0.000000px;}
.x3_c00144{left:58.201350px;}
.x2_c00144{left:86.641350px;}
.x1_c00144{left:172.799700px;}
.x4_c00144{left:330.504450px;}
.x5_c00144{left:350.304450px;}
.x6_c00144{left:591.111300px;}
.x7_c00144{left:603.531300px;}
.x8_c00144{left:845.054550px;}
.x9_c00144{left:847.934550px;}
.xb_c00144{left:1066.231200px;}
.xa_c00144{left:1090.171200px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls2_c00144{letter-spacing:-3.409920pt;}
.ls3_c00144{letter-spacing:-0.213120pt;}
.ls4_c00144{letter-spacing:-0.080000pt;}
.ls1_c00144{letter-spacing:0.160000pt;}
.ls0_c00144{letter-spacing:0.320000pt;}
.ws1_c00144{word-spacing:-212.906880pt;}
.ws0_c00144{word-spacing:-164.038464pt;}
.ws2_c00144{word-spacing:-16.560000pt;}
.ws3_c00144{word-spacing:-16.400000pt;}
.ws5_c00144{word-spacing:-1.200000pt;}
.ws6_c00144{word-spacing:-1.040000pt;}
.ws4_c00144{word-spacing:-0.400000pt;}
.ws9_c00144{word-spacing:-0.320000pt;}
.ws7_c00144{word-spacing:-0.160000pt;}
.ws8_c00144{word-spacing:0.000000pt;}
._4_c00144{margin-left:-5.319296pt;}
._3_c00144{margin-left:-3.520000pt;}
._1_c00144{margin-left:-1.960704pt;}
._2_c00144{margin-left:-1.001664pt;}
._5_c00144{width:0.960000pt;}
._0_c00144{width:3.559104pt;}
.fs1_c00144{font-size:80.000000pt;}
.fs0_c00144{font-size:213.120000pt;}
.y0_c00144{bottom:0.000000pt;}
.y3_c00144{bottom:190.040133pt;}
.y2_c00144{bottom:220.600133pt;}
.y1_c00144{bottom:622.898800pt;}
.h2_c00144{height:67.695312pt;}
.h1_c00144{height:182.317500pt;}
.h0_c00144{height:720.000000pt;}
.w0_c00144{width:1280.000000pt;}
.x0_c00144{left:0.000000pt;}
.x3_c00144{left:51.734533pt;}
.x2_c00144{left:77.014533pt;}
.x1_c00144{left:153.599733pt;}
.x4_c00144{left:293.781733pt;}
.x5_c00144{left:311.381733pt;}
.x6_c00144{left:525.432267pt;}
.x7_c00144{left:536.472267pt;}
.x8_c00144{left:751.159600pt;}
.x9_c00144{left:753.719600pt;}
.xb_c00144{left:947.761067pt;}
.xa_c00144{left:969.041067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b47ccd494fa87874f0197877.woff')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:0.857422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00145;src:url('chunks/assets/font_bbc1fc8ed95bf2261e95f414.woff')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.030273;font-style: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;}
.ls1_c00145{letter-spacing:0.000000px;}
.ls0_c00145{letter-spacing:0.216000px;}
.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:-41.904000px;}
.ws2_c00145{word-spacing:-21.924000px;}
.ws1_c00145{word-spacing:-0.615600px;}
.ws3_c00145{word-spacing:-0.216000px;}
.ws4_c00145{word-spacing:0.000000px;}
._1_c00145{margin-left:-2.278800px;}
._0_c00145{margin-left:-1.209600px;}
.fc0_c00145{color:rgb(14,40,65);}
.fs1_c00145{font-size:108.000000px;}
.fs0_c00145{font-size:216.000000px;}
.y0_c00145{bottom:0.000000px;}
.y4_c00145{bottom:73.015950px;}
.y3_c00145{bottom:111.166950px;}
.y2_c00145{bottom:187.495950px;}
.y1_c00145{bottom:614.713650px;}
.h2_c00145{height:91.388672px;}
.h1_c00145{height:145.441406px;}
.h0_c00145{height:810.000000px;}
.w0_c00145{width:1440.000000px;}
.x0_c00145{left:0.000000px;}
.x1_c00145{left:105.840000px;}
.x2_c00145{left:123.840000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls1_c00145{letter-spacing:0.000000pt;}
.ls0_c00145{letter-spacing:0.192000pt;}
.ws0_c00145{word-spacing:-37.248000pt;}
.ws2_c00145{word-spacing:-19.488000pt;}
.ws1_c00145{word-spacing:-0.547200pt;}
.ws3_c00145{word-spacing:-0.192000pt;}
.ws4_c00145{word-spacing:0.000000pt;}
._1_c00145{margin-left:-2.025600pt;}
._0_c00145{margin-left:-1.075200pt;}
.fs1_c00145{font-size:96.000000pt;}
.fs0_c00145{font-size:192.000000pt;}
.y0_c00145{bottom:0.000000pt;}
.y4_c00145{bottom:64.903067pt;}
.y3_c00145{bottom:98.815067pt;}
.y2_c00145{bottom:166.663067pt;}
.y1_c00145{bottom:546.412133pt;}
.h2_c00145{height:81.234375pt;}
.h1_c00145{height:129.281250pt;}
.h0_c00145{height:720.000000pt;}
.w0_c00145{width:1280.000000pt;}
.x0_c00145{left:0.000000pt;}
.x1_c00145{left:94.080000pt;}
.x2_c00145{left:110.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a2b1bfc571785875a93ea88f.woff')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.202148;font-style:normal;font-weight:normal;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_ed0ab4c72b8a256be022db87.woff')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.202148;font-style: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;}
.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;}
._2_c00146{margin-left:-4.812480px;}
._3_c00146{margin-left:-2.887488px;}
._0_c00146{margin-left:-1.620000px;}
._1_c00146{width:1.440000px;}
.fc0_c00146{color:rgb(0,0,0);}
.fs0_c00146{font-size:180.000000px;}
.fs2_c00146{font-size:240.480000px;}
.fs1_c00146{font-size:240.624000px;}
.y0_c00146{bottom:0.000000px;}
.y1_c00146{bottom:293.010000px;}
.y3_c00146{bottom:463.470000px;}
.y2_c00146{bottom:593.130000px;}
.h1_c00146{height:184.306641px;}
.h3_c00146{height:246.233672px;}
.h2_c00146{height:246.381117px;}
.h0_c00146{height:810.000000px;}
.w1_c00146{width:1439.999979px;}
.w0_c00146{width:1440.000000px;}
.x0_c00146{left:0.000000px;}
.x1_c00146{left:594.359979px;}
.x2_c00146{left:601.094979px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws0_c00146{word-spacing:0.000000pt;}
._2_c00146{margin-left:-4.277760pt;}
._3_c00146{margin-left:-2.566656pt;}
._0_c00146{margin-left:-1.440000pt;}
._1_c00146{width:1.280000pt;}
.fs0_c00146{font-size:160.000000pt;}
.fs2_c00146{font-size:213.760000pt;}
.fs1_c00146{font-size:213.888000pt;}
.y0_c00146{bottom:0.000000pt;}
.y1_c00146{bottom:260.453333pt;}
.y3_c00146{bottom:411.973333pt;}
.y2_c00146{bottom:527.226667pt;}
.h1_c00146{height:163.828125pt;}
.h3_c00146{height:218.874375pt;}
.h2_c00146{height:219.005437pt;}
.h0_c00146{height:720.000000pt;}
.w1_c00146{width:1279.999981pt;}
.w0_c00146{width:1280.000000pt;}
.x0_c00146{left:0.000000pt;}
.x1_c00146{left:528.319981pt;}
.x2_c00146{left:534.306648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_698611c62ab93c004ddea777.woff')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00147;src:url('chunks/assets/font_2272dd80fdc3800a9f86b5cc.woff')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.115234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00147;src:url('chunks/assets/font_96c54fed29ba2d7fcca9c022.woff')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00147;src:url('chunks/assets/font_5d0f4c13fc44127432c2f28d.woff')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00147{letter-spacing:-0.936000px;}
.ls2_c00147{letter-spacing:0.000000px;}
.ls5_c00147{letter-spacing:0.432000px;}
.ls0_c00147{letter-spacing:0.466032px;}
.ls3_c00147{letter-spacing:0.504000px;}
.ls1_c00147{letter-spacing:33.840000px;}
.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;}
}
.ws11_c00147{word-spacing:-82.491936px;}
.wsf_c00147{word-spacing:-80.859120px;}
.ws7_c00147{word-spacing:-73.812000px;}
.ws3_c00147{word-spacing:-72.576000px;}
.ws5_c00147{word-spacing:-72.360000px;}
.ws2_c00147{word-spacing:-72.312000px;}
.wsa_c00147{word-spacing:-42.552000px;}
.ws8_c00147{word-spacing:-42.084000px;}
.wsc_c00147{word-spacing:-42.036000px;}
.ws10_c00147{word-spacing:-0.108144px;}
.wse_c00147{word-spacing:-0.108000px;}
.ws12_c00147{word-spacing:0.000000px;}
.ws0_c00147{word-spacing:28.512000px;}
.ws1_c00147{word-spacing:32.448000px;}
.ws4_c00147{word-spacing:34.788000px;}
.ws6_c00147{word-spacing:36.756000px;}
.wsd_c00147{word-spacing:64.332000px;}
.wsb_c00147{word-spacing:65.208000px;}
.ws9_c00147{word-spacing:65.412000px;}
._5_c00147{margin-left:-8.989536px;}
._1_c00147{margin-left:-5.325696px;}
._0_c00147{margin-left:-2.440944px;}
._4_c00147{margin-left:-1.001520px;}
._3_c00147{width:1.109520px;}
._2_c00147{width:7.100928px;}
._6_c00147{width:36.216000px;}
._7_c00147{width:67.356000px;}
.fc0_c00147{color:rgb(0,0,0);}
.fs2_c00147{font-size:108.000000px;}
.fs3_c00147{font-size:108.144000px;}
.fs1_c00147{font-size:221.760000px;}
.fs0_c00147{font-size:221.904000px;}
.y0_c00147{bottom:0.000000px;}
.y5_c00147{bottom:119.268000px;}
.y4_c00147{bottom:156.705000px;}
.y3_c00147{bottom:193.785000px;}
.y2_c00147{bottom:651.630000px;}
.y1_c00147{bottom:711.795000px;}
.h3_c00147{height:112.640625px;}
.h4_c00147{height:112.790813px;}
.h2_c00147{height:200.645156px;}
.h1_c00147{height:231.005531px;}
.h0_c00147{height:810.000000px;}
.w1_c00147{width:1439.999979px;}
.w0_c00147{width:1440.000000px;}
.x0_c00147{left:0.000000px;}
.x3_c00147{left:34.055979px;}
.x1_c00147{left:119.375979px;}
.x2_c00147{left:228.134979px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls4_c00147{letter-spacing:-0.832000pt;}
.ls2_c00147{letter-spacing:0.000000pt;}
.ls5_c00147{letter-spacing:0.384000pt;}
.ls0_c00147{letter-spacing:0.414251pt;}
.ls3_c00147{letter-spacing:0.448000pt;}
.ls1_c00147{letter-spacing:30.080000pt;}
.ws11_c00147{word-spacing:-73.326165pt;}
.wsf_c00147{word-spacing:-71.874773pt;}
.ws7_c00147{word-spacing:-65.610667pt;}
.ws3_c00147{word-spacing:-64.512000pt;}
.ws5_c00147{word-spacing:-64.320000pt;}
.ws2_c00147{word-spacing:-64.277333pt;}
.wsa_c00147{word-spacing:-37.824000pt;}
.ws8_c00147{word-spacing:-37.408000pt;}
.wsc_c00147{word-spacing:-37.365333pt;}
.ws10_c00147{word-spacing:-0.096128pt;}
.wse_c00147{word-spacing:-0.096000pt;}
.ws12_c00147{word-spacing:0.000000pt;}
.ws0_c00147{word-spacing:25.344000pt;}
.ws1_c00147{word-spacing:28.842667pt;}
.ws4_c00147{word-spacing:30.922667pt;}
.ws6_c00147{word-spacing:32.672000pt;}
.wsd_c00147{word-spacing:57.184000pt;}
.wsb_c00147{word-spacing:57.962667pt;}
.ws9_c00147{word-spacing:58.144000pt;}
._5_c00147{margin-left:-7.990699pt;}
._1_c00147{margin-left:-4.733952pt;}
._0_c00147{margin-left:-2.169728pt;}
._4_c00147{margin-left:-0.890240pt;}
._3_c00147{width:0.986240pt;}
._2_c00147{width:6.311936pt;}
._6_c00147{width:32.192000pt;}
._7_c00147{width:59.872000pt;}
.fs2_c00147{font-size:96.000000pt;}
.fs3_c00147{font-size:96.128000pt;}
.fs1_c00147{font-size:197.120000pt;}
.fs0_c00147{font-size:197.248000pt;}
.y0_c00147{bottom:0.000000pt;}
.y5_c00147{bottom:106.016000pt;}
.y4_c00147{bottom:139.293333pt;}
.y3_c00147{bottom:172.253333pt;}
.y2_c00147{bottom:579.226667pt;}
.y1_c00147{bottom:632.706667pt;}
.h3_c00147{height:100.125000pt;}
.h4_c00147{height:100.258500pt;}
.h2_c00147{height:178.351250pt;}
.h1_c00147{height:205.338250pt;}
.h0_c00147{height:720.000000pt;}
.w1_c00147{width:1279.999981pt;}
.w0_c00147{width:1280.000000pt;}
.x0_c00147{left:0.000000pt;}
.x3_c00147{left:30.271981pt;}
.x1_c00147{left:106.111981pt;}
.x2_c00147{left:202.786648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98c4365418451bc1256978d6.woff')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.202148;font-style:normal;font-weight:normal;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_22ebf81007d9f27915520f6f.woff')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00148;src:url('chunks/assets/font_8d8e8c1182ca6d22e5bc4ad7.woff')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00148;src:url('chunks/assets/font_2220b95249274cb4a874031e.woff')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c00148{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls0_c00148{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00148{word-spacing:-0.144144px;}
.ws0_c00148{word-spacing:-0.144000px;}
.ws2_c00148{word-spacing:0.000000px;}
._1_c00148{margin-left:-4.331232px;}
._0_c00148{margin-left:-3.128112px;}
._2_c00148{margin-left:-1.203120px;}
._3_c00148{width:1.443744px;}
._4_c00148{width:2.452464px;}
._5_c00148{width:3.757392px;}
.fc2_c00148{color:rgb(70,120,134);}
.fc1_c00148{color:rgb(0,0,0);}
.fc0_c00148{color:rgb(255,255,255);}
.fs3_c00148{font-size:119.520000px;}
.fs4_c00148{font-size:119.664000px;}
.fs5_c00148{font-size:144.000000px;}
.fs6_c00148{font-size:144.144000px;}
.fs1_c00148{font-size:168.480000px;}
.fs2_c00148{font-size:168.624000px;}
.fs0_c00148{font-size:240.624000px;}
.y0_c00148{bottom:0.000000px;}
.y7_c00148{bottom:155.130000px;}
.y6_c00148{bottom:197.250000px;}
.y5_c00148{bottom:290.550000px;}
.y4_c00148{bottom:326.550000px;}
.y3_c00148{bottom:452.265000px;}
.y2_c00148{bottom:502.665000px;}
.y1_c00148{bottom:700.350000px;}
.h4_c00148{height:118.878047px;}
.h5_c00148{height:119.021273px;}
.h6_c00148{height:150.187500px;}
.h7_c00148{height:150.337688px;}
.h2_c00148{height:172.511016px;}
.h3_c00148{height:172.658461px;}
.h1_c00148{height:246.381117px;}
.h0_c00148{height:810.000000px;}
.w1_c00148{width:1439.999979px;}
.w0_c00148{width:1440.000000px;}
.x0_c00148{left:0.000000px;}
.x2_c00148{left:60.803979px;}
.x1_c00148{left:172.829979px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls0_c00148{letter-spacing:0.000000pt;}
.ws1_c00148{word-spacing:-0.128128pt;}
.ws0_c00148{word-spacing:-0.128000pt;}
.ws2_c00148{word-spacing:0.000000pt;}
._1_c00148{margin-left:-3.849984pt;}
._0_c00148{margin-left:-2.780544pt;}
._2_c00148{margin-left:-1.069440pt;}
._3_c00148{width:1.283328pt;}
._4_c00148{width:2.179968pt;}
._5_c00148{width:3.339904pt;}
.fs3_c00148{font-size:106.240000pt;}
.fs4_c00148{font-size:106.368000pt;}
.fs5_c00148{font-size:128.000000pt;}
.fs6_c00148{font-size:128.128000pt;}
.fs1_c00148{font-size:149.760000pt;}
.fs2_c00148{font-size:149.888000pt;}
.fs0_c00148{font-size:213.888000pt;}
.y0_c00148{bottom:0.000000pt;}
.y7_c00148{bottom:137.893333pt;}
.y6_c00148{bottom:175.333333pt;}
.y5_c00148{bottom:258.266667pt;}
.y4_c00148{bottom:290.266667pt;}
.y3_c00148{bottom:402.013333pt;}
.y2_c00148{bottom:446.813333pt;}
.y1_c00148{bottom:622.533333pt;}
.h4_c00148{height:105.669375pt;}
.h5_c00148{height:105.796687pt;}
.h6_c00148{height:133.500000pt;}
.h7_c00148{height:133.633500pt;}
.h2_c00148{height:153.343125pt;}
.h3_c00148{height:153.474187pt;}
.h1_c00148{height:219.005437pt;}
.h0_c00148{height:720.000000pt;}
.w1_c00148{width:1279.999981pt;}
.w0_c00148{width:1280.000000pt;}
.x0_c00148{left:0.000000pt;}
.x2_c00148{left:54.047981pt;}
.x1_c00148{left:153.626648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4466057485ffd34203cab0c9.woff')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.202148;font-style:normal;font-weight:normal;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_4926e19b499d19a25990117a.woff')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.202148;font-style: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.000000px;}
.ls0_c00149{letter-spacing:32.211936px;}
.ls1_c00149{letter-spacing:32.688000px;}
.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;}
._9_c00149{margin-left:-11.089872px;}
._1_c00149{margin-left:-6.496848px;}
._6_c00149{margin-left:-4.804992px;}
._4_c00149{margin-left:-2.738736px;}
._0_c00149{margin-left:-1.684368px;}
._2_c00149{width:1.924992px;}
._7_c00149{width:34.117440px;}
._8_c00149{width:36.528336px;}
._3_c00149{width:63.926736px;}
._a_c00149{width:66.037920px;}
._5_c00149{width:68.393280px;}
.fc1_c00149{color:rgb(0,0,0);}
.fc0_c00149{color:rgb(255,255,255);}
.fs2_c00149{font-size:144.000000px;}
.fs1_c00149{font-size:144.144000px;}
.fs0_c00149{font-size:240.624000px;}
.y0_c00149{bottom:0.000000px;}
.y9_c00149{bottom:111.096000px;}
.y8_c00149{bottom:154.335000px;}
.y7_c00149{bottom:240.765000px;}
.y6_c00149{bottom:327.210000px;}
.y5_c00149{bottom:370.410000px;}
.y4_c00149{bottom:456.840000px;}
.y3_c00149{bottom:500.070000px;}
.y2_c00149{bottom:543.315000px;}
.y1_c00149{bottom:700.350000px;}
.h3_c00149{height:147.445312px;}
.h2_c00149{height:147.592758px;}
.h1_c00149{height:246.381117px;}
.h0_c00149{height:810.000000px;}
.w1_c00149{width:1439.999979px;}
.w0_c00149{width:1440.000000px;}
.x0_c00149{left:0.000000px;}
.x2_c00149{left:42.299979px;}
.x1_c00149{left:172.829979px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls2_c00149{letter-spacing:0.000000pt;}
.ls0_c00149{letter-spacing:28.632832pt;}
.ls1_c00149{letter-spacing:29.056000pt;}
.ws0_c00149{word-spacing:0.000000pt;}
._9_c00149{margin-left:-9.857664pt;}
._1_c00149{margin-left:-5.774976pt;}
._6_c00149{margin-left:-4.271104pt;}
._4_c00149{margin-left:-2.434432pt;}
._0_c00149{margin-left:-1.497216pt;}
._2_c00149{width:1.711104pt;}
._7_c00149{width:30.326613pt;}
._8_c00149{width:32.469632pt;}
._3_c00149{width:56.823765pt;}
._a_c00149{width:58.700373pt;}
._5_c00149{width:60.794027pt;}
.fs2_c00149{font-size:128.000000pt;}
.fs1_c00149{font-size:128.128000pt;}
.fs0_c00149{font-size:213.888000pt;}
.y0_c00149{bottom:0.000000pt;}
.y9_c00149{bottom:98.752000pt;}
.y8_c00149{bottom:137.186667pt;}
.y7_c00149{bottom:214.013333pt;}
.y6_c00149{bottom:290.853333pt;}
.y5_c00149{bottom:329.253333pt;}
.y4_c00149{bottom:406.080000pt;}
.y3_c00149{bottom:444.506667pt;}
.y2_c00149{bottom:482.946667pt;}
.y1_c00149{bottom:622.533333pt;}
.h3_c00149{height:131.062500pt;}
.h2_c00149{height:131.193562pt;}
.h1_c00149{height:219.005437pt;}
.h0_c00149{height:720.000000pt;}
.w1_c00149{width:1279.999981pt;}
.w0_c00149{width:1280.000000pt;}
.x0_c00149{left:0.000000pt;}
.x2_c00149{left:37.599981pt;}
.x1_c00149{left:153.626648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de742519efe9c3959dbfef30.woff')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.202148;font-style:normal;font-weight:normal;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_ffd6410aee035c2b0bbc3843.woff')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00150;src:url('chunks/assets/font_b34c1cf658ba8ae70be75ef6.woff')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.172852;font-style: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:-74.282400px;}
.ws1_c00150{word-spacing:0.000000px;}
._1_c00150{margin-left:-4.046976px;}
._0_c00150{margin-left:-1.517616px;}
._2_c00150{width:1.180368px;}
._3_c00150{width:2.866608px;}
.fc0_c00150{color:rgb(0,0,0);}
.fs1_c00150{font-size:96.480000px;}
.fs0_c00150{font-size:168.624000px;}
.y0_c00150{bottom:0.000000px;}
.y2_c00150{bottom:29.412000px;}
.y1_c00150{bottom:703.470000px;}
.h2_c00150{height:95.961797px;}
.h1_c00150{height:172.658461px;}
.h0_c00150{height:810.000000px;}
.w1_c00150{width:1439.999979px;}
.w0_c00150{width:1440.000000px;}
.x0_c00150{left:0.000000px;}
.x1_c00150{left:121.607979px;}
.x2_c00150{left:306.569979px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls0_c00150{letter-spacing:0.000000pt;}
.ws0_c00150{word-spacing:-66.028800pt;}
.ws1_c00150{word-spacing:0.000000pt;}
._1_c00150{margin-left:-3.597312pt;}
._0_c00150{margin-left:-1.348992pt;}
._2_c00150{width:1.049216pt;}
._3_c00150{width:2.548096pt;}
.fs1_c00150{font-size:85.760000pt;}
.fs0_c00150{font-size:149.888000pt;}
.y0_c00150{bottom:0.000000pt;}
.y2_c00150{bottom:26.144000pt;}
.y1_c00150{bottom:625.306667pt;}
.h2_c00150{height:85.299375pt;}
.h1_c00150{height:153.474187pt;}
.h0_c00150{height:720.000000pt;}
.w1_c00150{width:1279.999981pt;}
.w0_c00150{width:1280.000000pt;}
.x0_c00150{left:0.000000pt;}
.x1_c00150{left:108.095981pt;}
.x2_c00150{left:272.506648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd65a1966efc88a9e169ef23.woff')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.202148;font-style:normal;font-weight:normal;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_5b1243c5ebdbe5afb60787d2.woff')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.202148;font-style: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;}
.ls2_c00151{letter-spacing:0.000000px;}
.ls1_c00151{letter-spacing:0.531936px;}
.ls0_c00151{letter-spacing:64.299888px;}
.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:0.000000px;}
._7_c00151{margin-left:-12.252240px;}
._1_c00151{margin-left:-6.496848px;}
._4_c00151{margin-left:-4.748256px;}
._3_c00151{margin-left:-3.700080px;}
._0_c00151{margin-left:-1.684368px;}
._2_c00151{width:1.924992px;}
._5_c00151{width:33.840912px;}
._6_c00151{width:66.947280px;}
.fc1_c00151{color:rgb(0,0,0);}
.fc0_c00151{color:rgb(255,255,255);}
.fs2_c00151{font-size:144.000000px;}
.fs1_c00151{font-size:144.144000px;}
.fs0_c00151{font-size:240.624000px;}
.y0_c00151{bottom:0.000000px;}
.ya_c00151{bottom:111.096000px;}
.y9_c00151{bottom:154.335000px;}
.y8_c00151{bottom:240.765000px;}
.y7_c00151{bottom:283.965000px;}
.y6_c00151{bottom:327.210000px;}
.y5_c00151{bottom:413.640000px;}
.y4_c00151{bottom:456.840000px;}
.y3_c00151{bottom:500.070000px;}
.y2_c00151{bottom:543.315000px;}
.y1_c00151{bottom:700.350000px;}
.h3_c00151{height:147.445312px;}
.h2_c00151{height:147.592758px;}
.h1_c00151{height:246.381117px;}
.h0_c00151{height:810.000000px;}
.w1_c00151{width:1439.999979px;}
.w0_c00151{width:1440.000000px;}
.x0_c00151{left:0.000000px;}
.x2_c00151{left:52.811979px;}
.x1_c00151{left:172.829979px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls2_c00151{letter-spacing:0.000000pt;}
.ls1_c00151{letter-spacing:0.472832pt;}
.ls0_c00151{letter-spacing:57.155456pt;}
.ws0_c00151{word-spacing:0.000000pt;}
._7_c00151{margin-left:-10.890880pt;}
._1_c00151{margin-left:-5.774976pt;}
._4_c00151{margin-left:-4.220672pt;}
._3_c00151{margin-left:-3.288960pt;}
._0_c00151{margin-left:-1.497216pt;}
._2_c00151{width:1.711104pt;}
._5_c00151{width:30.080811pt;}
._6_c00151{width:59.508693pt;}
.fs2_c00151{font-size:128.000000pt;}
.fs1_c00151{font-size:128.128000pt;}
.fs0_c00151{font-size:213.888000pt;}
.y0_c00151{bottom:0.000000pt;}
.ya_c00151{bottom:98.752000pt;}
.y9_c00151{bottom:137.186667pt;}
.y8_c00151{bottom:214.013333pt;}
.y7_c00151{bottom:252.413333pt;}
.y6_c00151{bottom:290.853333pt;}
.y5_c00151{bottom:367.680000pt;}
.y4_c00151{bottom:406.080000pt;}
.y3_c00151{bottom:444.506667pt;}
.y2_c00151{bottom:482.946667pt;}
.y1_c00151{bottom:622.533333pt;}
.h3_c00151{height:131.062500pt;}
.h2_c00151{height:131.193562pt;}
.h1_c00151{height:219.005437pt;}
.h0_c00151{height:720.000000pt;}
.w1_c00151{width:1279.999981pt;}
.w0_c00151{width:1280.000000pt;}
.x0_c00151{left:0.000000pt;}
.x2_c00151{left:46.943981pt;}
.x1_c00151{left:153.626648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2daa7562a3ec1caf0559d4eb.woff')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00152;src:url('chunks/assets/font_f8d90cb82401c3bb44f5e709.woff')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.202148;font-style: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;}
.ls0_c00152{letter-spacing:0.000000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00152{word-spacing:-35.147520px;}
.ws1_c00152{word-spacing:0.000000px;}
._1_c00152{margin-left:-4.791600px;}
._3_c00152{margin-left:-2.405376px;}
._0_c00152{margin-left:-1.149984px;}
._2_c00152{width:1.533312px;}
._4_c00152{width:2.874816px;}
._5_c00152{width:8.581152px;}
.fc0_c00152{color:rgb(0,0,0);}
.fs1_c00152{font-size:108.000000px;}
.fs2_c00152{font-size:119.520000px;}
.fs3_c00152{font-size:155.520000px;}
.fs0_c00152{font-size:191.664000px;}
.y0_c00152{bottom:0.000000px;}
.y2_c00152{bottom:71.316000px;}
.y3_c00152{bottom:571.470000px;}
.y1_c00152{bottom:689.250000px;}
.h2_c00152{height:110.583984px;}
.h3_c00152{height:159.240937px;}
.h1_c00152{height:196.249711px;}
.h0_c00152{height:810.000000px;}
.w1_c00152{width:1439.999979px;}
.w0_c00152{width:1440.000000px;}
.x0_c00152{left:0.000000px;}
.x1_c00152{left:83.231979px;}
.x3_c00152{left:102.419979px;}
.x2_c00152{left:496.289979px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls0_c00152{letter-spacing:0.000000pt;}
.ws0_c00152{word-spacing:-31.242240pt;}
.ws1_c00152{word-spacing:0.000000pt;}
._1_c00152{margin-left:-4.259200pt;}
._3_c00152{margin-left:-2.138112pt;}
._0_c00152{margin-left:-1.022208pt;}
._2_c00152{width:1.362944pt;}
._4_c00152{width:2.555392pt;}
._5_c00152{width:7.627691pt;}
.fs1_c00152{font-size:96.000000pt;}
.fs2_c00152{font-size:106.240000pt;}
.fs3_c00152{font-size:138.240000pt;}
.fs0_c00152{font-size:170.368000pt;}
.y0_c00152{bottom:0.000000pt;}
.y2_c00152{bottom:63.392000pt;}
.y3_c00152{bottom:507.973333pt;}
.y1_c00152{bottom:612.666667pt;}
.h2_c00152{height:98.296875pt;}
.h3_c00152{height:141.547500pt;}
.h1_c00152{height:174.444187pt;}
.h0_c00152{height:720.000000pt;}
.w1_c00152{width:1279.999981pt;}
.w0_c00152{width:1280.000000pt;}
.x0_c00152{left:0.000000pt;}
.x1_c00152{left:73.983981pt;}
.x3_c00152{left:91.039981pt;}
.x2_c00152{left:441.146648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd62e7168468f198b4563ede.woff')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00153;src:url('chunks/assets/font_79b5e5999a97cbc4c888d2c8.woff')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_dc0d361fb006a1db7d4b99f1.woff')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.172852;font-style: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);}
.m1_c00153{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls2_c00153{letter-spacing:-0.360000px;}
.ls0_c00153{letter-spacing:0.000000px;}
.ls1_c00153{letter-spacing:0.684000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00153{word-spacing:-25.092000px;}
.ws0_c00153{word-spacing:-24.408000px;}
.ws2_c00153{word-spacing:-24.048000px;}
.ws3_c00153{word-spacing:0.000000px;}
._1_c00153{margin-left:-6.496848px;}
._3_c00153{margin-left:-3.787776px;}
._4_c00153{margin-left:-2.710896px;}
._0_c00153{margin-left:-1.684368px;}
._2_c00153{width:1.924992px;}
.fc2_c00153{color:rgb(70,120,134);}
.fc1_c00153{color:rgb(0,0,0);}
.fc0_c00153{color:rgb(255,255,255);}
.fs1_c00153{font-size:108.000000px;}
.fs2_c00153{font-size:108.144000px;}
.fs0_c00153{font-size:240.624000px;}
.y0_c00153{bottom:0.000000px;}
.y5_c00153{bottom:95.832000px;}
.y4_c00153{bottom:128.268000px;}
.y3_c00153{bottom:193.110000px;}
.y2_c00153{bottom:225.510000px;}
.y1_c00153{bottom:700.350000px;}
.h4_c00153{height:107.419922px;}
.h2_c00153{height:110.583984px;}
.h3_c00153{height:110.731430px;}
.h1_c00153{height:246.381117px;}
.h0_c00153{height:810.000000px;}
.w1_c00153{width:1439.999979px;}
.w0_c00153{width:1440.000000px;}
.x0_c00153{left:0.000000px;}
.x2_c00153{left:78.119979px;}
.x1_c00153{left:172.829979px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls2_c00153{letter-spacing:-0.320000pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ls1_c00153{letter-spacing:0.608000pt;}
.ws1_c00153{word-spacing:-22.304000pt;}
.ws0_c00153{word-spacing:-21.696000pt;}
.ws2_c00153{word-spacing:-21.376000pt;}
.ws3_c00153{word-spacing:0.000000pt;}
._1_c00153{margin-left:-5.774976pt;}
._3_c00153{margin-left:-3.366912pt;}
._4_c00153{margin-left:-2.409685pt;}
._0_c00153{margin-left:-1.497216pt;}
._2_c00153{width:1.711104pt;}
.fs1_c00153{font-size:96.000000pt;}
.fs2_c00153{font-size:96.128000pt;}
.fs0_c00153{font-size:213.888000pt;}
.y0_c00153{bottom:0.000000pt;}
.y5_c00153{bottom:85.184000pt;}
.y4_c00153{bottom:114.016000pt;}
.y3_c00153{bottom:171.653333pt;}
.y2_c00153{bottom:200.453333pt;}
.y1_c00153{bottom:622.533333pt;}
.h4_c00153{height:95.484375pt;}
.h2_c00153{height:98.296875pt;}
.h3_c00153{height:98.427937pt;}
.h1_c00153{height:219.005437pt;}
.h0_c00153{height:720.000000pt;}
.w1_c00153{width:1279.999981pt;}
.w0_c00153{width:1280.000000pt;}
.x0_c00153{left:0.000000pt;}
.x2_c00153{left:69.439981pt;}
.x1_c00153{left:153.626648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a168be2c3bea6076a215dadc.woff')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00154;src:url('chunks/assets/font_6cb3b945addc1d8b5358cbbe.woff')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00154;src:url('chunks/assets/font_7cdbda7f74fdfd54c247ba07.woff')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00154;src:url('chunks/assets/font_eb9780f5c8a79d323555599c.woff')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:1.172852;font-style: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);}
.m1_c00154{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_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:-27.011520px;}
.ws1_c00154{word-spacing:0.000000px;}
._5_c00154{margin-left:-18.997920px;}
._6_c00154{margin-left:-11.875824px;}
._3_c00154{margin-left:-7.223760px;}
._4_c00154{margin-left:-5.050080px;}
._1_c00154{margin-left:-3.847680px;}
._2_c00154{margin-left:-1.683360px;}
._0_c00154{width:1.442880px;}
._7_c00154{width:3.442320px;}
.fc2_c00154{color:rgb(70,120,134);}
.fc1_c00154{color:rgb(0,0,0);}
.fc0_c00154{color:rgb(255,255,255);}
.fs4_c00154{font-size:119.520000px;}
.fs3_c00154{font-size:168.480000px;}
.fs2_c00154{font-size:168.624000px;}
.fs0_c00154{font-size:240.480000px;}
.fs1_c00154{font-size:240.624000px;}
.y0_c00154{bottom:0.000000px;}
.y7_c00154{bottom:85.068000px;}
.y6_c00154{bottom:196.020000px;}
.y5_c00154{bottom:241.380000px;}
.y4_c00154{bottom:286.770000px;}
.y3_c00154{bottom:412.095000px;}
.y2_c00154{bottom:492.090000px;}
.y1_c00154{bottom:659.055000px;}
.h5_c00154{height:118.878047px;}
.h4_c00154{height:167.575078px;}
.h3_c00154{height:167.718305px;}
.h1_c00154{height:246.233672px;}
.h2_c00154{height:246.381117px;}
.h0_c00154{height:810.000000px;}
.w1_c00154{width:1439.999979px;}
.w0_c00154{width:1440.000000px;}
.x0_c00154{left:0.000000px;}
.x2_c00154{left:68.291979px;}
.x1_c00154{left:174.269979px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.ws0_c00154{word-spacing:-24.010240pt;}
.ws1_c00154{word-spacing:0.000000pt;}
._5_c00154{margin-left:-16.887040pt;}
._6_c00154{margin-left:-10.556288pt;}
._3_c00154{margin-left:-6.421120pt;}
._4_c00154{margin-left:-4.488960pt;}
._1_c00154{margin-left:-3.420160pt;}
._2_c00154{margin-left:-1.496320pt;}
._0_c00154{width:1.282560pt;}
._7_c00154{width:3.059840pt;}
.fs4_c00154{font-size:106.240000pt;}
.fs3_c00154{font-size:149.760000pt;}
.fs2_c00154{font-size:149.888000pt;}
.fs0_c00154{font-size:213.760000pt;}
.fs1_c00154{font-size:213.888000pt;}
.y0_c00154{bottom:0.000000pt;}
.y7_c00154{bottom:75.616000pt;}
.y6_c00154{bottom:174.240000pt;}
.y5_c00154{bottom:214.560000pt;}
.y4_c00154{bottom:254.906667pt;}
.y3_c00154{bottom:366.306667pt;}
.y2_c00154{bottom:437.413333pt;}
.y1_c00154{bottom:585.826667pt;}
.h5_c00154{height:105.669375pt;}
.h4_c00154{height:148.955625pt;}
.h3_c00154{height:149.082938pt;}
.h1_c00154{height:218.874375pt;}
.h2_c00154{height:219.005437pt;}
.h0_c00154{height:720.000000pt;}
.w1_c00154{width:1279.999981pt;}
.w0_c00154{width:1280.000000pt;}
.x0_c00154{left:0.000000pt;}
.x2_c00154{left:60.703981pt;}
.x1_c00154{left:154.906648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75ec86953e891e240cc52168.woff')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.202148;font-style:normal;font-weight:normal;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_0250a9dfdbda257f1ef45415.woff')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00155;src:url('chunks/assets/font_81ad6576001daa51e8a63dda.woff')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.202148;font-style: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;}
.ls1_c00155{letter-spacing:0.000000px;}
.ls0_c00155{letter-spacing:48.981600px;}
.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;}
._6_c00155{margin-left:-11.522880px;}
._2_c00155{margin-left:-7.419456px;}
._1_c00155{margin-left:-6.012000px;}
._4_c00155{margin-left:-4.046976px;}
._5_c00155{margin-left:-2.986416px;}
._0_c00155{margin-left:-1.923840px;}
._3_c00155{width:1.318320px;}
.fc1_c00155{color:rgb(0,0,0);}
.fc0_c00155{color:rgb(255,255,255);}
.fs2_c00155{font-size:168.480000px;}
.fs1_c00155{font-size:168.624000px;}
.fs0_c00155{font-size:240.480000px;}
.y0_c00155{bottom:0.000000px;}
.y8_c00155{bottom:83.628000px;}
.y7_c00155{bottom:129.024000px;}
.y6_c00155{bottom:249.660000px;}
.y5_c00155{bottom:295.050000px;}
.y4_c00155{bottom:340.455000px;}
.y3_c00155{bottom:461.445000px;}
.y2_c00155{bottom:506.850000px;}
.y1_c00155{bottom:659.055000px;}
.h3_c00155{height:172.511016px;}
.h2_c00155{height:172.658461px;}
.h1_c00155{height:246.233672px;}
.h0_c00155{height:810.000000px;}
.w1_c00155{width:1439.999979px;}
.w0_c00155{width:1440.000000px;}
.x0_c00155{left:0.000000px;}
.x2_c00155{left:68.291979px;}
.x3_c00155{left:95.291979px;}
.x1_c00155{left:174.269979px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls1_c00155{letter-spacing:0.000000pt;}
.ls0_c00155{letter-spacing:43.539200pt;}
.ws0_c00155{word-spacing:0.000000pt;}
._6_c00155{margin-left:-10.242560pt;}
._2_c00155{margin-left:-6.595072pt;}
._1_c00155{margin-left:-5.344000pt;}
._4_c00155{margin-left:-3.597312pt;}
._5_c00155{margin-left:-2.654592pt;}
._0_c00155{margin-left:-1.710080pt;}
._3_c00155{width:1.171840pt;}
.fs2_c00155{font-size:149.760000pt;}
.fs1_c00155{font-size:149.888000pt;}
.fs0_c00155{font-size:213.760000pt;}
.y0_c00155{bottom:0.000000pt;}
.y8_c00155{bottom:74.336000pt;}
.y7_c00155{bottom:114.688000pt;}
.y6_c00155{bottom:221.920000pt;}
.y5_c00155{bottom:262.266667pt;}
.y4_c00155{bottom:302.626667pt;}
.y3_c00155{bottom:410.173333pt;}
.y2_c00155{bottom:450.533333pt;}
.y1_c00155{bottom:585.826667pt;}
.h3_c00155{height:153.343125pt;}
.h2_c00155{height:153.474187pt;}
.h1_c00155{height:218.874375pt;}
.h0_c00155{height:720.000000pt;}
.w1_c00155{width:1279.999981pt;}
.w0_c00155{width:1280.000000pt;}
.x0_c00155{left:0.000000pt;}
.x2_c00155{left:60.703981pt;}
.x3_c00155{left:84.703981pt;}
.x1_c00155{left:154.906648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57ad766b5b9b138bcf38bf5c.woff')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00156;src:url('chunks/assets/font_415d571f58b058b36812828a.woff')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.202148;font-style: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;}
}
.ws1_c00156{word-spacing:-61.215264px;}
.ws0_c00156{word-spacing:-61.182720px;}
.ws2_c00156{word-spacing:-27.011520px;}
.ws3_c00156{word-spacing:0.000000px;}
._4_c00156{margin-left:-8.566944px;}
._1_c00156{margin-left:-7.042464px;}
._2_c00156{margin-left:-5.688144px;}
._0_c00156{margin-left:-4.333824px;}
._6_c00156{margin-left:-3.250368px;}
._3_c00156{margin-left:-2.166912px;}
._7_c00156{margin-left:-1.083456px;}
._5_c00156{width:1.086336px;}
._9_c00156{width:2.409840px;}
._8_c00156{width:3.660480px;}
.fc1_c00156{color:rgb(0,0,0);}
.fc0_c00156{color:rgb(255,255,255);}
.fs2_c00156{font-size:119.520000px;}
.fs3_c00156{font-size:119.664000px;}
.fs4_c00156{font-size:191.520000px;}
.fs1_c00156{font-size:270.720000px;}
.fs0_c00156{font-size:270.864000px;}
.y0_c00156{bottom:0.000000px;}
.y7_c00156{bottom:161.670000px;}
.y11_c00156{bottom:207.465000px;}
.y6_c00156{bottom:234.795000px;}
.y10_c00156{bottom:243.510000px;}
.yf_c00156{bottom:279.510000px;}
.y5_c00156{bottom:307.545000px;}
.ye_c00156{bottom:315.540000px;}
.yd_c00156{bottom:351.540000px;}
.y4_c00156{bottom:380.670000px;}
.yc_c00156{bottom:423.570000px;}
.yb_c00156{bottom:459.615000px;}
.ya_c00156{bottom:531.645000px;}
.y3_c00156{bottom:562.245000px;}
.y9_c00156{bottom:567.645000px;}
.y8_c00156{bottom:603.645000px;}
.y2_c00156{bottom:635.010000px;}
.y1_c00156{bottom:708.120000px;}
.y12_c00156{bottom:740.085000px;}
.h3_c00156{height:122.379609px;}
.h4_c00156{height:122.527055px;}
.h5_c00156{height:196.102266px;}
.h2_c00156{height:277.197188px;}
.h1_c00156{height:277.344633px;}
.h0_c00156{height:810.000000px;}
.w1_c00156{width:1439.999979px;}
.w0_c00156{width:1440.000000px;}
.x0_c00156{left:0.000000px;}
.x3_c00156{left:10.799979px;}
.x2_c00156{left:31.463979px;}
.x1_c00156{left:691.199979px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ws1_c00156{word-spacing:-54.413568pt;}
.ws0_c00156{word-spacing:-54.384640pt;}
.ws2_c00156{word-spacing:-24.010240pt;}
.ws3_c00156{word-spacing:0.000000pt;}
._4_c00156{margin-left:-7.615061pt;}
._1_c00156{margin-left:-6.259968pt;}
._2_c00156{margin-left:-5.056128pt;}
._0_c00156{margin-left:-3.852288pt;}
._6_c00156{margin-left:-2.889216pt;}
._3_c00156{margin-left:-1.926144pt;}
._7_c00156{margin-left:-0.963072pt;}
._5_c00156{width:0.965632pt;}
._9_c00156{width:2.142080pt;}
._8_c00156{width:3.253760pt;}
.fs2_c00156{font-size:106.240000pt;}
.fs3_c00156{font-size:106.368000pt;}
.fs4_c00156{font-size:170.240000pt;}
.fs1_c00156{font-size:240.640000pt;}
.fs0_c00156{font-size:240.768000pt;}
.y0_c00156{bottom:0.000000pt;}
.y7_c00156{bottom:143.706667pt;}
.y11_c00156{bottom:184.413333pt;}
.y6_c00156{bottom:208.706667pt;}
.y10_c00156{bottom:216.453333pt;}
.yf_c00156{bottom:248.453333pt;}
.y5_c00156{bottom:273.373333pt;}
.ye_c00156{bottom:280.480000pt;}
.yd_c00156{bottom:312.480000pt;}
.y4_c00156{bottom:338.373333pt;}
.yc_c00156{bottom:376.506667pt;}
.yb_c00156{bottom:408.546667pt;}
.ya_c00156{bottom:472.573333pt;}
.y3_c00156{bottom:499.773333pt;}
.y9_c00156{bottom:504.573333pt;}
.y8_c00156{bottom:536.573333pt;}
.y2_c00156{bottom:564.453333pt;}
.y1_c00156{bottom:629.440000pt;}
.y12_c00156{bottom:657.853333pt;}
.h3_c00156{height:108.781875pt;}
.h4_c00156{height:108.912937pt;}
.h5_c00156{height:174.313125pt;}
.h2_c00156{height:246.397500pt;}
.h1_c00156{height:246.528562pt;}
.h0_c00156{height:720.000000pt;}
.w1_c00156{width:1279.999981pt;}
.w0_c00156{width:1280.000000pt;}
.x0_c00156{left:0.000000pt;}
.x3_c00156{left:9.599981pt;}
.x2_c00156{left:27.967981pt;}
.x1_c00156{left:614.399981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2e689ac400cd302ad64e119.woff')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00157;src:url('chunks/assets/font_c19614203dbbdb08fb30d491.woff')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.202148;font-style: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;}
.ls0_c00157{letter-spacing:0.000000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00157{word-spacing:-73.256544px;}
.ws1_c00157{word-spacing:-51.452064px;}
.ws2_c00157{word-spacing:0.000000px;}
._2_c00157{margin-left:-13.941648px;}
._5_c00157{margin-left:-9.123696px;}
._3_c00157{margin-left:-5.236272px;}
._0_c00157{margin-left:-3.241440px;}
._1_c00157{margin-left:-1.767168px;}
._4_c00157{width:1.420128px;}
._6_c00157{width:2.916288px;}
.fc1_c00157{color:rgb(0,0,0);}
.fc0_c00157{color:rgb(255,255,255);}
.fs4_c00157{font-size:119.520000px;}
.fs3_c00157{font-size:119.664000px;}
.fs5_c00157{font-size:191.520000px;}
.fs2_c00157{font-size:227.520000px;}
.fs1_c00157{font-size:227.664000px;}
.fs0_c00157{font-size:324.144000px;}
.y0_c00157{bottom:0.000000px;}
.y7_c00157{bottom:111.456000px;}
.y6_c00157{bottom:173.055000px;}
.y12_c00157{bottom:181.800000px;}
.y11_c00157{bottom:217.830000px;}
.y5_c00157{bottom:234.615000px;}
.y10_c00157{bottom:253.830000px;}
.yf_c00157{bottom:289.875000px;}
.y4_c00157{bottom:296.205000px;}
.ye_c00157{bottom:325.875000px;}
.y3_c00157{bottom:357.810000px;}
.yd_c00157{bottom:397.905000px;}
.y2_c00157{bottom:419.400000px;}
.yc_c00157{bottom:433.950000px;}
.yb_c00157{bottom:469.950000px;}
.ya_c00157{bottom:505.950000px;}
.y1_c00157{bottom:565.710000px;}
.y9_c00157{bottom:577.980000px;}
.y8_c00157{bottom:614.010000px;}
.y13_c00157{bottom:740.085000px;}
.h5_c00157{height:122.379609px;}
.h4_c00157{height:122.527055px;}
.h6_c00157{height:196.102266px;}
.h3_c00157{height:232.963594px;}
.h2_c00157{height:233.111039px;}
.h1_c00157{height:331.899398px;}
.h0_c00157{height:810.000000px;}
.w1_c00157{width:1439.999979px;}
.w0_c00157{width:1440.000000px;}
.x0_c00157{left:0.000000px;}
.x3_c00157{left:24.767979px;}
.x2_c00157{left:684.794979px;}
.x1_c00157{left:691.199979px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls0_c00157{letter-spacing:0.000000pt;}
.ws0_c00157{word-spacing:-65.116928pt;}
.ws1_c00157{word-spacing:-45.735168pt;}
.ws2_c00157{word-spacing:0.000000pt;}
._2_c00157{margin-left:-12.392576pt;}
._5_c00157{margin-left:-8.109952pt;}
._3_c00157{margin-left:-4.654464pt;}
._0_c00157{margin-left:-2.881280pt;}
._1_c00157{margin-left:-1.570816pt;}
._4_c00157{width:1.262336pt;}
._6_c00157{width:2.592256pt;}
.fs4_c00157{font-size:106.240000pt;}
.fs3_c00157{font-size:106.368000pt;}
.fs5_c00157{font-size:170.240000pt;}
.fs2_c00157{font-size:202.240000pt;}
.fs1_c00157{font-size:202.368000pt;}
.fs0_c00157{font-size:288.128000pt;}
.y0_c00157{bottom:0.000000pt;}
.y7_c00157{bottom:99.072000pt;}
.y6_c00157{bottom:153.826667pt;}
.y12_c00157{bottom:161.600000pt;}
.y11_c00157{bottom:193.626667pt;}
.y5_c00157{bottom:208.546667pt;}
.y10_c00157{bottom:225.626667pt;}
.yf_c00157{bottom:257.666667pt;}
.y4_c00157{bottom:263.293333pt;}
.ye_c00157{bottom:289.666667pt;}
.y3_c00157{bottom:318.053333pt;}
.yd_c00157{bottom:353.693333pt;}
.y2_c00157{bottom:372.800000pt;}
.yc_c00157{bottom:385.733333pt;}
.yb_c00157{bottom:417.733333pt;}
.ya_c00157{bottom:449.733333pt;}
.y1_c00157{bottom:502.853333pt;}
.y9_c00157{bottom:513.760000pt;}
.y8_c00157{bottom:545.786667pt;}
.y13_c00157{bottom:657.853333pt;}
.h5_c00157{height:108.781875pt;}
.h4_c00157{height:108.912937pt;}
.h6_c00157{height:174.313125pt;}
.h3_c00157{height:207.078750pt;}
.h2_c00157{height:207.209812pt;}
.h1_c00157{height:295.021687pt;}
.h0_c00157{height:720.000000pt;}
.w1_c00157{width:1279.999981pt;}
.w0_c00157{width:1280.000000pt;}
.x0_c00157{left:0.000000pt;}
.x3_c00157{left:22.015981pt;}
.x2_c00157{left:608.706648pt;}
.x1_c00157{left:614.399981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87fcf9c2fc8afae12dc49961.woff')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00158;src:url('chunks/assets/font_e2caf2848737f22bb2e800f6.woff')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00158;src:url('chunks/assets/font_0250a9dfdbda257f1ef45415.woff')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00158{letter-spacing:0.000000px;}
.ls2_c00158{letter-spacing:32.211936px;}
.ls0_c00158{letter-spacing:57.669600px;}
.ls1_c00158{letter-spacing:57.720000px;}
.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:-27.044064px;}
.ws1_c00158{word-spacing:0.000000px;}
._6_c00158{margin-left:-9.169344px;}
._4_c00158{margin-left:-5.983200px;}
._5_c00158{margin-left:-4.874400px;}
._3_c00158{margin-left:-2.868480px;}
._1_c00158{margin-left:-1.792800px;}
._0_c00158{width:1.434240px;}
._2_c00158{width:2.509920px;}
.fc1_c00158{color:rgb(0,0,0);}
.fc0_c00158{color:rgb(255,255,255);}
.fs0_c00158{font-size:119.520000px;}
.fs1_c00158{font-size:119.664000px;}
.fs3_c00158{font-size:144.000000px;}
.fs2_c00158{font-size:144.144000px;}
.y0_c00158{bottom:0.000000px;}
.yd_c00158{bottom:111.600000px;}
.yc_c00158{bottom:144.000000px;}
.y18_c00158{bottom:174.960000px;}
.yb_c00158{bottom:176.430000px;}
.ya_c00158{bottom:208.830000px;}
.y17_c00158{bottom:213.870000px;}
.y9_c00158{bottom:241.230000px;}
.y16_c00158{bottom:252.750000px;}
.y8_c00158{bottom:273.675000px;}
.y15_c00158{bottom:291.675000px;}
.y14_c00158{bottom:330.555000px;}
.y7_c00158{bottom:338.505000px;}
.y6_c00158{bottom:370.905000px;}
.y5_c00158{bottom:403.305000px;}
.y4_c00158{bottom:435.750000px;}
.y13_c00158{bottom:438.270000px;}
.y12_c00158{bottom:477.150000px;}
.y3_c00158{bottom:494.100000px;}
.y11_c00158{bottom:516.060000px;}
.y2_c00158{bottom:526.500000px;}
.y10_c00158{bottom:554.940000px;}
.y1_c00158{bottom:558.900000px;}
.yf_c00158{bottom:662.610000px;}
.ye_c00158{bottom:701.535000px;}
.h1_c00158{height:122.379609px;}
.h2_c00158{height:122.527055px;}
.h4_c00158{height:147.445312px;}
.h3_c00158{height:147.592758px;}
.h0_c00158{height:810.000000px;}
.w1_c00158{width:1439.999979px;}
.w0_c00158{width:1440.000000px;}
.x0_c00158{left:0.000000px;}
.x1_c00158{left:92.627979px;}
.x2_c00158{left:562.934979px;}
.x3_c00158{left:589.964979px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls3_c00158{letter-spacing:0.000000pt;}
.ls2_c00158{letter-spacing:28.632832pt;}
.ls0_c00158{letter-spacing:51.261867pt;}
.ls1_c00158{letter-spacing:51.306667pt;}
.ws0_c00158{word-spacing:-24.039168pt;}
.ws1_c00158{word-spacing:0.000000pt;}
._6_c00158{margin-left:-8.150528pt;}
._4_c00158{margin-left:-5.318400pt;}
._5_c00158{margin-left:-4.332800pt;}
._3_c00158{margin-left:-2.549760pt;}
._1_c00158{margin-left:-1.593600pt;}
._0_c00158{width:1.274880pt;}
._2_c00158{width:2.231040pt;}
.fs0_c00158{font-size:106.240000pt;}
.fs1_c00158{font-size:106.368000pt;}
.fs3_c00158{font-size:128.000000pt;}
.fs2_c00158{font-size:128.128000pt;}
.y0_c00158{bottom:0.000000pt;}
.yd_c00158{bottom:99.200000pt;}
.yc_c00158{bottom:128.000000pt;}
.y18_c00158{bottom:155.520000pt;}
.yb_c00158{bottom:156.826667pt;}
.ya_c00158{bottom:185.626667pt;}
.y17_c00158{bottom:190.106667pt;}
.y9_c00158{bottom:214.426667pt;}
.y16_c00158{bottom:224.666667pt;}
.y8_c00158{bottom:243.266667pt;}
.y15_c00158{bottom:259.266667pt;}
.y14_c00158{bottom:293.826667pt;}
.y7_c00158{bottom:300.893333pt;}
.y6_c00158{bottom:329.693333pt;}
.y5_c00158{bottom:358.493333pt;}
.y4_c00158{bottom:387.333333pt;}
.y13_c00158{bottom:389.573333pt;}
.y12_c00158{bottom:424.133333pt;}
.y3_c00158{bottom:439.200000pt;}
.y11_c00158{bottom:458.720000pt;}
.y2_c00158{bottom:468.000000pt;}
.y10_c00158{bottom:493.280000pt;}
.y1_c00158{bottom:496.800000pt;}
.yf_c00158{bottom:588.986667pt;}
.ye_c00158{bottom:623.586667pt;}
.h1_c00158{height:108.781875pt;}
.h2_c00158{height:108.912937pt;}
.h4_c00158{height:131.062500pt;}
.h3_c00158{height:131.193562pt;}
.h0_c00158{height:720.000000pt;}
.w1_c00158{width:1279.999981pt;}
.w0_c00158{width:1280.000000pt;}
.x0_c00158{left:0.000000pt;}
.x1_c00158{left:82.335981pt;}
.x2_c00158{left:500.386648pt;}
.x3_c00158{left:524.413314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_46526eb4dd2f5eda08ed3ef8.woff')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00159;src:url('chunks/assets/font_814fa1c0d5bdb3c48a1d01fd.woff')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.202148;font-style: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;}
.ls1_c00159{letter-spacing:0.000000px;}
.ls0_c00159{letter-spacing:0.432000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00159{word-spacing:-32.976000px;}
.ws3_c00159{word-spacing:-32.544000px;}
.ws1_c00159{word-spacing:-21.804480px;}
.ws0_c00159{word-spacing:-3.831360px;}
.ws4_c00159{word-spacing:-1.716000px;}
.ws5_c00159{word-spacing:0.000000px;}
._2_c00159{margin-left:-8.779680px;}
._6_c00159{margin-left:-7.344000px;}
._3_c00159{margin-left:-5.402880px;}
._5_c00159{margin-left:-3.762720px;}
._1_c00159{margin-left:-2.701440px;}
._0_c00159{margin-left:-1.543680px;}
._4_c00159{width:1.143840px;}
.fc0_c00159{color:rgb(0,0,0);}
.fs0_c00159{font-size:96.480000px;}
.fs1_c00159{font-size:144.000000px;}
.fs2_c00159{font-size:144.144000px;}
.y0_c00159{bottom:0.000000px;}
.y2_c00159{bottom:24.876000px;}
.y1_c00159{bottom:53.712000px;}
.y7_c00159{bottom:337.170000px;}
.y6_c00159{bottom:380.370000px;}
.y5_c00159{bottom:423.615000px;}
.y4_c00159{bottom:510.045000px;}
.y3_c00159{bottom:553.245000px;}
.h1_c00159{height:98.788359px;}
.h2_c00159{height:147.445312px;}
.h3_c00159{height:147.592758px;}
.h0_c00159{height:810.000000px;}
.w1_c00159{width:1439.999979px;}
.w0_c00159{width:1440.000000px;}
.x0_c00159{left:0.000000px;}
.x2_c00159{left:48.815979px;}
.x1_c00159{left:625.964979px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls1_c00159{letter-spacing:0.000000pt;}
.ls0_c00159{letter-spacing:0.384000pt;}
.ws2_c00159{word-spacing:-29.312000pt;}
.ws3_c00159{word-spacing:-28.928000pt;}
.ws1_c00159{word-spacing:-19.381760pt;}
.ws0_c00159{word-spacing:-3.405653pt;}
.ws4_c00159{word-spacing:-1.525333pt;}
.ws5_c00159{word-spacing:0.000000pt;}
._2_c00159{margin-left:-7.804160pt;}
._6_c00159{margin-left:-6.528000pt;}
._3_c00159{margin-left:-4.802560pt;}
._5_c00159{margin-left:-3.344640pt;}
._1_c00159{margin-left:-2.401280pt;}
._0_c00159{margin-left:-1.372160pt;}
._4_c00159{width:1.016747pt;}
.fs0_c00159{font-size:85.760000pt;}
.fs1_c00159{font-size:128.000000pt;}
.fs2_c00159{font-size:128.128000pt;}
.y0_c00159{bottom:0.000000pt;}
.y2_c00159{bottom:22.112000pt;}
.y1_c00159{bottom:47.744000pt;}
.y7_c00159{bottom:299.706667pt;}
.y6_c00159{bottom:338.106667pt;}
.y5_c00159{bottom:376.546667pt;}
.y4_c00159{bottom:453.373333pt;}
.y3_c00159{bottom:491.773333pt;}
.h1_c00159{height:87.811875pt;}
.h2_c00159{height:131.062500pt;}
.h3_c00159{height:131.193562pt;}
.h0_c00159{height:720.000000pt;}
.w1_c00159{width:1279.999981pt;}
.w0_c00159{width:1280.000000pt;}
.x0_c00159{left:0.000000pt;}
.x2_c00159{left:43.391981pt;}
.x1_c00159{left:556.413314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6167d64f5388f2c7ddde5e0.woff')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.202148;font-style:normal;font-weight:normal;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_9fef59c8473de04727a81851.woff')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.202148;font-style: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);}
.m1_c00160{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls3_c00160{letter-spacing:-0.420600px;}
.ls2_c00160{letter-spacing:0.000000px;}
.ls1_c00160{letter-spacing:0.219600px;}
.ls0_c00160{letter-spacing:0.291000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00160{word-spacing:-38.076480px;}
.ws3_c00160{word-spacing:-24.440544px;}
.ws2_c00160{word-spacing:-24.408000px;}
.ws4_c00160{word-spacing:0.000000px;}
.ws0_c00160{word-spacing:0.277920px;}
._6_c00160{margin-left:-5.995296px;}
._2_c00160{margin-left:-4.331232px;}
._0_c00160{margin-left:-3.128112px;}
._1_c00160{margin-left:-1.203120px;}
._3_c00160{width:1.728096px;}
._7_c00160{width:3.255120px;}
._4_c00160{width:35.640480px;}
._5_c00160{width:36.799200px;}
.fc2_c00160{color:rgb(70,120,134);}
.fc1_c00160{color:rgb(0,0,0);}
.fc0_c00160{color:rgb(255,255,255);}
.fs3_c00160{font-size:108.000000px;}
.fs4_c00160{font-size:108.144000px;}
.fs1_c00160{font-size:168.480000px;}
.fs2_c00160{font-size:168.624000px;}
.fs0_c00160{font-size:240.624000px;}
.y0_c00160{bottom:0.000000px;}
.y7_c00160{bottom:124.164000px;}
.y6_c00160{bottom:156.570000px;}
.y5_c00160{bottom:318.630000px;}
.y4_c00160{bottom:351.030000px;}
.y3_c00160{bottom:452.265000px;}
.y2_c00160{bottom:502.665000px;}
.y1_c00160{bottom:700.350000px;}
.h4_c00160{height:110.583984px;}
.h5_c00160{height:110.731430px;}
.h2_c00160{height:172.511016px;}
.h3_c00160{height:172.658461px;}
.h1_c00160{height:246.381117px;}
.h0_c00160{height:810.000000px;}
.w1_c00160{width:1439.999979px;}
.w0_c00160{width:1440.000000px;}
.x0_c00160{left:0.000000px;}
.x2_c00160{left:60.803979px;}
.x1_c00160{left:172.829979px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls3_c00160{letter-spacing:-0.373867pt;}
.ls2_c00160{letter-spacing:0.000000pt;}
.ls1_c00160{letter-spacing:0.195200pt;}
.ls0_c00160{letter-spacing:0.258667pt;}
.ws1_c00160{word-spacing:-33.845760pt;}
.ws3_c00160{word-spacing:-21.724928pt;}
.ws2_c00160{word-spacing:-21.696000pt;}
.ws4_c00160{word-spacing:0.000000pt;}
.ws0_c00160{word-spacing:0.247040pt;}
._6_c00160{margin-left:-5.329152pt;}
._2_c00160{margin-left:-3.849984pt;}
._0_c00160{margin-left:-2.780544pt;}
._1_c00160{margin-left:-1.069440pt;}
._3_c00160{width:1.536085pt;}
._7_c00160{width:2.893440pt;}
._4_c00160{width:31.680427pt;}
._5_c00160{width:32.710400pt;}
.fs3_c00160{font-size:96.000000pt;}
.fs4_c00160{font-size:96.128000pt;}
.fs1_c00160{font-size:149.760000pt;}
.fs2_c00160{font-size:149.888000pt;}
.fs0_c00160{font-size:213.888000pt;}
.y0_c00160{bottom:0.000000pt;}
.y7_c00160{bottom:110.368000pt;}
.y6_c00160{bottom:139.173333pt;}
.y5_c00160{bottom:283.226667pt;}
.y4_c00160{bottom:312.026667pt;}
.y3_c00160{bottom:402.013333pt;}
.y2_c00160{bottom:446.813333pt;}
.y1_c00160{bottom:622.533333pt;}
.h4_c00160{height:98.296875pt;}
.h5_c00160{height:98.427937pt;}
.h2_c00160{height:153.343125pt;}
.h3_c00160{height:153.474187pt;}
.h1_c00160{height:219.005437pt;}
.h0_c00160{height:720.000000pt;}
.w1_c00160{width:1279.999981pt;}
.w0_c00160{width:1280.000000pt;}
.x0_c00160{left:0.000000pt;}
.x2_c00160{left:54.047981pt;}
.x1_c00160{left:153.626648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e39022203eed862d33c0896.woff')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.202148;font-style:normal;font-weight:normal;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_b725fa1d72e93518ce2160af.woff')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.202148;font-style: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;}
.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:-24.408000px;}
.ws1_c00161{word-spacing:0.000000px;}
._7_c00161{margin-left:-8.143056px;}
._3_c00161{margin-left:-3.674448px;}
._6_c00161{margin-left:-2.441664px;}
._2_c00161{margin-left:-1.303056px;}
._1_c00161{width:1.080720px;}
._5_c00161{width:2.397168px;}
._0_c00161{width:46.701696px;}
._4_c00161{width:50.567136px;}
.fc1_c00161{color:rgb(0,0,0);}
.fc0_c00161{color:rgb(255,255,255);}
.fs1_c00161{font-size:108.000000px;}
.fs2_c00161{font-size:108.144000px;}
.fs0_c00161{font-size:216.144000px;}
.y0_c00161{bottom:0.000000px;}
.yd_c00161{bottom:114.876000px;}
.yc_c00161{bottom:179.670000px;}
.yb_c00161{bottom:244.515000px;}
.y5_c00161{bottom:265.755000px;}
.y4_c00161{bottom:300.345000px;}
.ya_c00161{bottom:309.345000px;}
.y9_c00161{bottom:341.745000px;}
.y3_c00161{bottom:346.785000px;}
.y2_c00161{bottom:381.750000px;}
.y8_c00161{bottom:406.590000px;}
.y7_c00161{bottom:471.420000px;}
.y6_c00161{bottom:536.250000px;}
.y1_c00161{bottom:672.990000px;}
.h2_c00161{height:110.583984px;}
.h3_c00161{height:110.731430px;}
.h1_c00161{height:221.315414px;}
.h0_c00161{height:810.000000px;}
.w1_c00161{width:1439.999979px;}
.w0_c00161{width:1440.000000px;}
.x0_c00161{left:0.000000px;}
.x2_c00161{left:50.183979px;}
.x1_c00161{left:300.674979px;}
.x3_c00161{left:690.479979px;}
.x4_c00161{left:696.599979px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ws0_c00161{word-spacing:-21.696000pt;}
.ws1_c00161{word-spacing:0.000000pt;}
._7_c00161{margin-left:-7.238272pt;}
._3_c00161{margin-left:-3.266176pt;}
._6_c00161{margin-left:-2.170368pt;}
._2_c00161{margin-left:-1.158272pt;}
._1_c00161{width:0.960640pt;}
._5_c00161{width:2.130816pt;}
._0_c00161{width:41.512619pt;}
._4_c00161{width:44.948565pt;}
.fs1_c00161{font-size:96.000000pt;}
.fs2_c00161{font-size:96.128000pt;}
.fs0_c00161{font-size:192.128000pt;}
.y0_c00161{bottom:0.000000pt;}
.yd_c00161{bottom:102.112000pt;}
.yc_c00161{bottom:159.706667pt;}
.yb_c00161{bottom:217.346667pt;}
.y5_c00161{bottom:236.226667pt;}
.y4_c00161{bottom:266.973333pt;}
.ya_c00161{bottom:274.973333pt;}
.y9_c00161{bottom:303.773333pt;}
.y3_c00161{bottom:308.253333pt;}
.y2_c00161{bottom:339.333333pt;}
.y8_c00161{bottom:361.413333pt;}
.y7_c00161{bottom:419.040000pt;}
.y6_c00161{bottom:476.666667pt;}
.y1_c00161{bottom:598.213333pt;}
.h2_c00161{height:98.296875pt;}
.h3_c00161{height:98.427937pt;}
.h1_c00161{height:196.724812pt;}
.h0_c00161{height:720.000000pt;}
.w1_c00161{width:1279.999981pt;}
.w0_c00161{width:1280.000000pt;}
.x0_c00161{left:0.000000pt;}
.x2_c00161{left:44.607981pt;}
.x1_c00161{left:267.266648pt;}
.x3_c00161{left:613.759981pt;}
.x4_c00161{left:619.199981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5c5ebbc7799c9c466fc632ec.woff')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00162;src:url('chunks/assets/font_dd3e305ee5bdd508402f647b.woff')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_6d50a81de80f56cb2790b441.woff')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00162;src:url('chunks/assets/font_7826b866e91c7bb2e7bac1d7.woff')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:1.172852;font-style: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;}
.ls6_c00162{letter-spacing:-0.182400px;}
.ls5_c00162{letter-spacing:0.000000px;}
.ls7_c00162{letter-spacing:0.108000px;}
.ls2_c00162{letter-spacing:24.624000px;}
.ls3_c00162{letter-spacing:32.472864px;}
.ls4_c00162{letter-spacing:33.264000px;}
.ls0_c00162{letter-spacing:102.267936px;}
.ls1_c00162{letter-spacing:102.312000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00162{word-spacing:0.000000px;}
.ws0_c00162{word-spacing:26.280000px;}
._1_c00162{margin-left:-3.886944px;}
._7_c00162{margin-left:-2.754816px;}
._3_c00162{margin-left:-1.457184px;}
._4_c00162{width:1.495488px;}
._5_c00162{width:2.888256px;}
._8_c00162{width:3.963264px;}
._6_c00162{width:5.166432px;}
._0_c00162{width:49.970016px;}
._2_c00162{width:52.934592px;}
.fc1_c00162{color:rgb(0,0,0);}
.fc0_c00162{color:rgb(255,255,255);}
.fs3_c00162{font-size:108.000000px;}
.fs2_c00162{font-size:108.144000px;}
.fs4_c00162{font-size:144.000000px;}
.fs1_c00162{font-size:144.144000px;}
.fs0_c00162{font-size:240.624000px;}
.y0_c00162{bottom:0.000000px;}
.yb_c00162{bottom:147.060000px;}
.ya_c00162{bottom:190.290000px;}
.y9_c00162{bottom:233.490000px;}
.y8_c00162{bottom:350.205000px;}
.y7_c00162{bottom:382.605000px;}
.y6_c00162{bottom:415.050000px;}
.y5_c00162{bottom:447.450000px;}
.y4_c00162{bottom:479.850000px;}
.y3_c00162{bottom:512.280000px;}
.y2_c00162{bottom:579.270000px;}
.y1_c00162{bottom:700.350000px;}
.h4_c00162{height:107.419922px;}
.h5_c00162{height:110.583984px;}
.h3_c00162{height:110.731430px;}
.h6_c00162{height:147.445312px;}
.h2_c00162{height:147.592758px;}
.h1_c00162{height:246.381117px;}
.h0_c00162{height:810.000000px;}
.w1_c00162{width:1439.999979px;}
.w0_c00162{width:1440.000000px;}
.x0_c00162{left:0.000000px;}
.x2_c00162{left:29.555979px;}
.x3_c00162{left:63.395979px;}
.x1_c00162{left:172.829979px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls6_c00162{letter-spacing:-0.162133pt;}
.ls5_c00162{letter-spacing:0.000000pt;}
.ls7_c00162{letter-spacing:0.096000pt;}
.ls2_c00162{letter-spacing:21.888000pt;}
.ls3_c00162{letter-spacing:28.864768pt;}
.ls4_c00162{letter-spacing:29.568000pt;}
.ls0_c00162{letter-spacing:90.904832pt;}
.ls1_c00162{letter-spacing:90.944000pt;}
.ws1_c00162{word-spacing:0.000000pt;}
.ws0_c00162{word-spacing:23.360000pt;}
._1_c00162{margin-left:-3.455061pt;}
._7_c00162{margin-left:-2.448725pt;}
._3_c00162{margin-left:-1.295275pt;}
._4_c00162{width:1.329323pt;}
._5_c00162{width:2.567339pt;}
._8_c00162{width:3.522901pt;}
._6_c00162{width:4.592384pt;}
._0_c00162{width:44.417792pt;}
._2_c00162{width:47.052971pt;}
.fs3_c00162{font-size:96.000000pt;}
.fs2_c00162{font-size:96.128000pt;}
.fs4_c00162{font-size:128.000000pt;}
.fs1_c00162{font-size:128.128000pt;}
.fs0_c00162{font-size:213.888000pt;}
.y0_c00162{bottom:0.000000pt;}
.yb_c00162{bottom:130.720000pt;}
.ya_c00162{bottom:169.146667pt;}
.y9_c00162{bottom:207.546667pt;}
.y8_c00162{bottom:311.293333pt;}
.y7_c00162{bottom:340.093333pt;}
.y6_c00162{bottom:368.933333pt;}
.y5_c00162{bottom:397.733333pt;}
.y4_c00162{bottom:426.533333pt;}
.y3_c00162{bottom:455.360000pt;}
.y2_c00162{bottom:514.906667pt;}
.y1_c00162{bottom:622.533333pt;}
.h4_c00162{height:95.484375pt;}
.h5_c00162{height:98.296875pt;}
.h3_c00162{height:98.427937pt;}
.h6_c00162{height:131.062500pt;}
.h2_c00162{height:131.193562pt;}
.h1_c00162{height:219.005437pt;}
.h0_c00162{height:720.000000pt;}
.w1_c00162{width:1279.999981pt;}
.w0_c00162{width:1280.000000pt;}
.x0_c00162{left:0.000000pt;}
.x2_c00162{left:26.271981pt;}
.x3_c00162{left:56.351981pt;}
.x1_c00162{left:153.626648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f130ea2f532d2373ae352839.woff')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00163;src:url('chunks/assets/font_20fcb47ab06192d3cdb264a8.woff')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00163;src:url('chunks/assets/font_0f572085e7a765d4d1f337b2.woff')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.172852;font-style: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;}
.ls5_c00163{letter-spacing:-0.636000px;}
.ls3_c00163{letter-spacing:0.000000px;}
.ls7_c00163{letter-spacing:0.093000px;}
.ls6_c00163{letter-spacing:0.132600px;}
.ls4_c00163{letter-spacing:0.384600px;}
.ls1_c00163{letter-spacing:0.822816px;}
.ls0_c00163{letter-spacing:0.866880px;}
.ls2_c00163{letter-spacing:26.786880px;}
.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:-27.011520px;}
.ws1_c00163{word-spacing:0.000000px;}
._e_c00163{margin-left:-16.443120px;}
._c_c00163{margin-left:-11.946144px;}
._8_c00163{margin-left:-7.852896px;}
._b_c00163{margin-left:-6.727392px;}
._d_c00163{margin-left:-4.893888px;}
._1_c00163{margin-left:-3.886944px;}
._6_c00163{margin-left:-2.504688px;}
._3_c00163{margin-left:-1.457184px;}
._4_c00163{width:1.667760px;}
._a_c00163{width:2.690304px;}
._7_c00163{width:6.306480px;}
._5_c00163{width:28.920240px;}
._9_c00163{width:31.464384px;}
._0_c00163{width:49.970016px;}
._2_c00163{width:52.934592px;}
.fc2_c00163{color:rgb(255,0,0);}
.fc1_c00163{color:rgb(0,0,0);}
.fc0_c00163{color:rgb(255,255,255);}
.fs2_c00163{font-size:119.520000px;}
.fs1_c00163{font-size:119.664000px;}
.fs3_c00163{font-size:168.624000px;}
.fs0_c00163{font-size:240.624000px;}
.y0_c00163{bottom:0.000000px;}
.ya_c00163{bottom:5.436000px;}
.y9_c00163{bottom:189.465000px;}
.y8_c00163{bottom:225.510000px;}
.y7_c00163{bottom:297.510000px;}
.y6_c00163{bottom:333.540000px;}
.y5_c00163{bottom:405.570000px;}
.y4_c00163{bottom:441.570000px;}
.y3_c00163{bottom:513.615000px;}
.y2_c00163{bottom:549.645000px;}
.y1_c00163{bottom:700.350000px;}
.h3_c00163{height:122.379609px;}
.h2_c00163{height:122.527055px;}
.h4_c00163{height:172.658461px;}
.h1_c00163{height:246.381117px;}
.h0_c00163{height:810.000000px;}
.w1_c00163{width:1439.999979px;}
.w0_c00163{width:1440.000000px;}
.x0_c00163{left:0.000000px;}
.x2_c00163{left:29.555979px;}
.x1_c00163{left:172.829979px;}
.x3_c00163{left:366.944979px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls5_c00163{letter-spacing:-0.565333pt;}
.ls3_c00163{letter-spacing:0.000000pt;}
.ls7_c00163{letter-spacing:0.082667pt;}
.ls6_c00163{letter-spacing:0.117867pt;}
.ls4_c00163{letter-spacing:0.341867pt;}
.ls1_c00163{letter-spacing:0.731392pt;}
.ls0_c00163{letter-spacing:0.770560pt;}
.ls2_c00163{letter-spacing:23.810560pt;}
.ws0_c00163{word-spacing:-24.010240pt;}
.ws1_c00163{word-spacing:0.000000pt;}
._e_c00163{margin-left:-14.616107pt;}
._c_c00163{margin-left:-10.618795pt;}
._8_c00163{margin-left:-6.980352pt;}
._b_c00163{margin-left:-5.979904pt;}
._d_c00163{margin-left:-4.350123pt;}
._1_c00163{margin-left:-3.455061pt;}
._6_c00163{margin-left:-2.226389pt;}
._3_c00163{margin-left:-1.295275pt;}
._4_c00163{width:1.482453pt;}
._a_c00163{width:2.391381pt;}
._7_c00163{width:5.605760pt;}
._5_c00163{width:25.706880pt;}
._9_c00163{width:27.968341pt;}
._0_c00163{width:44.417792pt;}
._2_c00163{width:47.052971pt;}
.fs2_c00163{font-size:106.240000pt;}
.fs1_c00163{font-size:106.368000pt;}
.fs3_c00163{font-size:149.888000pt;}
.fs0_c00163{font-size:213.888000pt;}
.y0_c00163{bottom:0.000000pt;}
.ya_c00163{bottom:4.832000pt;}
.y9_c00163{bottom:168.413333pt;}
.y8_c00163{bottom:200.453333pt;}
.y7_c00163{bottom:264.453333pt;}
.y6_c00163{bottom:296.480000pt;}
.y5_c00163{bottom:360.506667pt;}
.y4_c00163{bottom:392.506667pt;}
.y3_c00163{bottom:456.546667pt;}
.y2_c00163{bottom:488.573333pt;}
.y1_c00163{bottom:622.533333pt;}
.h3_c00163{height:108.781875pt;}
.h2_c00163{height:108.912937pt;}
.h4_c00163{height:153.474187pt;}
.h1_c00163{height:219.005437pt;}
.h0_c00163{height:720.000000pt;}
.w1_c00163{width:1279.999981pt;}
.w0_c00163{width:1280.000000pt;}
.x0_c00163{left:0.000000pt;}
.x2_c00163{left:26.271981pt;}
.x1_c00163{left:153.626648pt;}
.x3_c00163{left:326.173314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c91c09bd8cf7a12e21d10088.woff')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.202148;font-style:normal;font-weight:normal;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_f1ec8a78bb6832a542cdd711.woff')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00164;src:url('chunks/assets/font_15f7cb6b0fe5fc32c91e754a.woff')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.172852;font-style: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);}
.m1_c00164{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls4_c00164{letter-spacing:-0.576000px;}
.ls5_c00164{letter-spacing:-0.500400px;}
.ls2_c00164{letter-spacing:0.000000px;}
.ls7_c00164{letter-spacing:0.288000px;}
.ls6_c00164{letter-spacing:0.354600px;}
.ls0_c00164{letter-spacing:0.358800px;}
.ls3_c00164{letter-spacing:0.576000px;}
.ls1_c00164{letter-spacing:32.211936px;}
.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;}
}
.ws5_c00164{word-spacing:-144.144000px;}
.ws1_c00164{word-spacing:-144.000000px;}
.ws8_c00164{word-spacing:-114.638976px;}
.ws3_c00164{word-spacing:-114.072000px;}
.wsf_c00164{word-spacing:-113.191296px;}
.wsa_c00164{word-spacing:-112.488000px;}
.ws9_c00164{word-spacing:-112.176000px;}
.wsb_c00164{word-spacing:-112.152000px;}
.ws4_c00164{word-spacing:-111.760128px;}
.ws6_c00164{word-spacing:-111.203040px;}
.wse_c00164{word-spacing:-110.239776px;}
.ws10_c00164{word-spacing:-43.283520px;}
.ws0_c00164{word-spacing:-38.109024px;}
.wsd_c00164{word-spacing:-32.576544px;}
.wsc_c00164{word-spacing:-32.544000px;}
.ws2_c00164{word-spacing:-3.336000px;}
.ws7_c00164{word-spacing:-1.517280px;}
.ws11_c00164{word-spacing:0.000000px;}
._7_c00164{margin-left:-10.921440px;}
._0_c00164{margin-left:-4.114512px;}
._4_c00164{margin-left:-2.825280px;}
._2_c00164{margin-left:-1.348992px;}
._3_c00164{width:1.113264px;}
._1_c00164{width:2.192112px;}
._8_c00164{width:7.415136px;}
._6_c00164{width:31.968000px;}
._5_c00164{width:33.226512px;}
.fc2_c00164{color:rgb(70,120,134);}
.fc1_c00164{color:rgb(0,0,0);}
.fc0_c00164{color:rgb(255,255,255);}
.fs2_c00164{font-size:144.000000px;}
.fs3_c00164{font-size:144.144000px;}
.fs1_c00164{font-size:168.480000px;}
.fs0_c00164{font-size:168.624000px;}
.fs4_c00164{font-size:191.520000px;}
.y0_c00164{bottom:0.000000px;}
.yc_c00164{bottom:34.992000px;}
.yb_c00164{bottom:132.624000px;}
.ya_c00164{bottom:219.060000px;}
.y9_c00164{bottom:262.260000px;}
.y8_c00164{bottom:348.690000px;}
.y7_c00164{bottom:391.935000px;}
.y6_c00164{bottom:478.365000px;}
.y5_c00164{bottom:521.565000px;}
.y4_c00164{bottom:564.810000px;}
.y3_c00164{bottom:660.030000px;}
.y2_c00164{bottom:705.390000px;}
.y1_c00164{bottom:750.780000px;}
.h3_c00164{height:147.445312px;}
.h4_c00164{height:147.592758px;}
.h2_c00164{height:172.511016px;}
.h1_c00164{height:172.658461px;}
.h5_c00164{height:190.491328px;}
.h0_c00164{height:810.000000px;}
.w1_c00164{width:1439.999979px;}
.w0_c00164{width:1440.000000px;}
.x0_c00164{left:0.000000px;}
.x2_c00164{left:58.607979px;}
.x1_c00164{left:172.829979px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls4_c00164{letter-spacing:-0.512000pt;}
.ls5_c00164{letter-spacing:-0.444800pt;}
.ls2_c00164{letter-spacing:0.000000pt;}
.ls7_c00164{letter-spacing:0.256000pt;}
.ls6_c00164{letter-spacing:0.315200pt;}
.ls0_c00164{letter-spacing:0.318933pt;}
.ls3_c00164{letter-spacing:0.512000pt;}
.ls1_c00164{letter-spacing:28.632832pt;}
.ws5_c00164{word-spacing:-128.128000pt;}
.ws1_c00164{word-spacing:-128.000000pt;}
.ws8_c00164{word-spacing:-101.901312pt;}
.ws3_c00164{word-spacing:-101.397333pt;}
.wsf_c00164{word-spacing:-100.614485pt;}
.wsa_c00164{word-spacing:-99.989333pt;}
.ws9_c00164{word-spacing:-99.712000pt;}
.wsb_c00164{word-spacing:-99.690667pt;}
.ws4_c00164{word-spacing:-99.342336pt;}
.ws6_c00164{word-spacing:-98.847147pt;}
.wse_c00164{word-spacing:-97.990912pt;}
.ws10_c00164{word-spacing:-38.474240pt;}
.ws0_c00164{word-spacing:-33.874688pt;}
.wsd_c00164{word-spacing:-28.956928pt;}
.wsc_c00164{word-spacing:-28.928000pt;}
.ws2_c00164{word-spacing:-2.965333pt;}
.ws7_c00164{word-spacing:-1.348693pt;}
.ws11_c00164{word-spacing:0.000000pt;}
._7_c00164{margin-left:-9.707947pt;}
._0_c00164{margin-left:-3.657344pt;}
._4_c00164{margin-left:-2.511360pt;}
._2_c00164{margin-left:-1.199104pt;}
._3_c00164{width:0.989568pt;}
._1_c00164{width:1.948544pt;}
._8_c00164{width:6.591232pt;}
._6_c00164{width:28.416000pt;}
._5_c00164{width:29.534677pt;}
.fs2_c00164{font-size:128.000000pt;}
.fs3_c00164{font-size:128.128000pt;}
.fs1_c00164{font-size:149.760000pt;}
.fs0_c00164{font-size:149.888000pt;}
.fs4_c00164{font-size:170.240000pt;}
.y0_c00164{bottom:0.000000pt;}
.yc_c00164{bottom:31.104000pt;}
.yb_c00164{bottom:117.888000pt;}
.ya_c00164{bottom:194.720000pt;}
.y9_c00164{bottom:233.120000pt;}
.y8_c00164{bottom:309.946667pt;}
.y7_c00164{bottom:348.386667pt;}
.y6_c00164{bottom:425.213333pt;}
.y5_c00164{bottom:463.613333pt;}
.y4_c00164{bottom:502.053333pt;}
.y3_c00164{bottom:586.693333pt;}
.y2_c00164{bottom:627.013333pt;}
.y1_c00164{bottom:667.360000pt;}
.h3_c00164{height:131.062500pt;}
.h4_c00164{height:131.193562pt;}
.h2_c00164{height:153.343125pt;}
.h1_c00164{height:153.474187pt;}
.h5_c00164{height:169.325625pt;}
.h0_c00164{height:720.000000pt;}
.w1_c00164{width:1279.999981pt;}
.w0_c00164{width:1280.000000pt;}
.x0_c00164{left:0.000000pt;}
.x2_c00164{left:52.095981pt;}
.x1_c00164{left:153.626648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_77e56b6e799251f81ebfc281.woff')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00165;src:url('chunks/assets/font_dc108d3ffad121de881edd25.woff')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00165;src:url('chunks/assets/font_9db8c6f2a5b98cb3f6bca7db.woff')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.172852;font-style: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);}
.m1_c00165{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls5_c00165{letter-spacing:-0.726000px;}
.ls4_c00165{letter-spacing:0.000000px;}
.ls6_c00165{letter-spacing:0.150000px;}
.ls3_c00165{letter-spacing:26.742816px;}
.ls2_c00165{letter-spacing:26.786880px;}
.ls0_c00165{letter-spacing:26.987040px;}
.ls1_c00165{letter-spacing:28.631520px;}
.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;}
}
.ws8_c00165{word-spacing:-43.316064px;}
.ws5_c00165{word-spacing:-27.011520px;}
.ws3_c00165{word-spacing:-0.398880px;}
.ws4_c00165{word-spacing:-0.100320px;}
.ws9_c00165{word-spacing:0.000000px;}
.ws7_c00165{word-spacing:0.654240px;}
.ws0_c00165{word-spacing:1.113120px;}
.ws6_c00165{word-spacing:1.182240px;}
.ws1_c00165{word-spacing:1.473600px;}
.ws2_c00165{word-spacing:2.954160px;}
._1_c00165{margin-left:-6.496848px;}
._0_c00165{margin-left:-3.609360px;}
._2_c00165{margin-left:-1.443744px;}
._3_c00165{width:1.203120px;}
._4_c00165{width:2.391984px;}
._7_c00165{width:5.185248px;}
._9_c00165{width:7.471872px;}
._6_c00165{width:28.753680px;}
._8_c00165{width:30.055248px;}
._5_c00165{width:33.768096px;}
.fc2_c00165{color:rgb(70,120,134);}
.fc1_c00165{color:rgb(0,0,0);}
.fc0_c00165{color:rgb(255,255,255);}
.fs1_c00165{font-size:119.520000px;}
.fs3_c00165{font-size:119.664000px;}
.fs2_c00165{font-size:144.000000px;}
.fs4_c00165{font-size:191.664000px;}
.fs0_c00165{font-size:240.624000px;}
.y0_c00165{bottom:0.000000px;}
.y9_c00165{bottom:177.630000px;}
.y8_c00165{bottom:299.010000px;}
.y7_c00165{bottom:335.010000px;}
.y6_c00165{bottom:371.010000px;}
.y5_c00165{bottom:408.495000px;}
.y4_c00165{bottom:493.485000px;}
.y3_c00165{bottom:529.485000px;}
.y2_c00165{bottom:565.530000px;}
.y1_c00165{bottom:700.350000px;}
.h2_c00165{height:122.379609px;}
.h4_c00165{height:122.527055px;}
.h3_c00165{height:147.445312px;}
.h5_c00165{height:190.634555px;}
.h1_c00165{height:246.381117px;}
.h0_c00165{height:810.000000px;}
.w1_c00165{width:1439.999979px;}
.w0_c00165{width:1440.000000px;}
.x0_c00165{left:0.000000px;}
.x2_c00165{left:41.435979px;}
.x1_c00165{left:172.829979px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls5_c00165{letter-spacing:-0.645333pt;}
.ls4_c00165{letter-spacing:0.000000pt;}
.ls6_c00165{letter-spacing:0.133333pt;}
.ls3_c00165{letter-spacing:23.771392pt;}
.ls2_c00165{letter-spacing:23.810560pt;}
.ls0_c00165{letter-spacing:23.988480pt;}
.ls1_c00165{letter-spacing:25.450240pt;}
.ws8_c00165{word-spacing:-38.503168pt;}
.ws5_c00165{word-spacing:-24.010240pt;}
.ws3_c00165{word-spacing:-0.354560pt;}
.ws4_c00165{word-spacing:-0.089173pt;}
.ws9_c00165{word-spacing:0.000000pt;}
.ws7_c00165{word-spacing:0.581547pt;}
.ws0_c00165{word-spacing:0.989440pt;}
.ws6_c00165{word-spacing:1.050880pt;}
.ws1_c00165{word-spacing:1.309867pt;}
.ws2_c00165{word-spacing:2.625920pt;}
._1_c00165{margin-left:-5.774976pt;}
._0_c00165{margin-left:-3.208320pt;}
._2_c00165{margin-left:-1.283328pt;}
._3_c00165{width:1.069440pt;}
._4_c00165{width:2.126208pt;}
._7_c00165{width:4.609109pt;}
._9_c00165{width:6.641664pt;}
._6_c00165{width:25.558827pt;}
._8_c00165{width:26.715776pt;}
._5_c00165{width:30.016085pt;}
.fs1_c00165{font-size:106.240000pt;}
.fs3_c00165{font-size:106.368000pt;}
.fs2_c00165{font-size:128.000000pt;}
.fs4_c00165{font-size:170.368000pt;}
.fs0_c00165{font-size:213.888000pt;}
.y0_c00165{bottom:0.000000pt;}
.y9_c00165{bottom:157.893333pt;}
.y8_c00165{bottom:265.786667pt;}
.y7_c00165{bottom:297.786667pt;}
.y6_c00165{bottom:329.786667pt;}
.y5_c00165{bottom:363.106667pt;}
.y4_c00165{bottom:438.653333pt;}
.y3_c00165{bottom:470.653333pt;}
.y2_c00165{bottom:502.693333pt;}
.y1_c00165{bottom:622.533333pt;}
.h2_c00165{height:108.781875pt;}
.h4_c00165{height:108.912937pt;}
.h3_c00165{height:131.062500pt;}
.h5_c00165{height:169.452937pt;}
.h1_c00165{height:219.005437pt;}
.h0_c00165{height:720.000000pt;}
.w1_c00165{width:1279.999981pt;}
.w0_c00165{width:1280.000000pt;}
.x0_c00165{left:0.000000pt;}
.x2_c00165{left:36.831981pt;}
.x1_c00165{left:153.626648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8bcc38cba9ee34a831d1a640.woff')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.202148;font-style:normal;font-weight:normal;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_a93cd50ac9f3a7212cdd6e9a.woff')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00166;src:url('chunks/assets/font_51b1e727b7d8e8f1c3a11e42.woff')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00166;src:url('chunks/assets/font_965298a995ea2887055e5ae6.woff')format("woff");}.ff4_c00166{font-family:ff4_c00166;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls3_c00166{letter-spacing:0.000000px;}
.ls0_c00166{letter-spacing:26.786880px;}
.ls2_c00166{letter-spacing:27.640944px;}
.ls1_c00166{letter-spacing:28.182816px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00166{word-spacing:-27.044064px;}
.ws0_c00166{word-spacing:-27.011520px;}
.ws2_c00166{word-spacing:0.000000px;}
._9_c00166{margin-left:-9.916560px;}
._1_c00166{margin-left:-6.496848px;}
._0_c00166{margin-left:-3.609360px;}
._5_c00166{margin-left:-2.447568px;}
._2_c00166{margin-left:-1.443744px;}
._3_c00166{width:1.203120px;}
._4_c00166{width:2.987760px;}
._6_c00166{width:4.395312px;}
._8_c00166{width:25.385568px;}
._7_c00166{width:57.452976px;}
.fc1_c00166{color:rgb(0,0,0);}
.fc0_c00166{color:rgb(255,255,255);}
.fs1_c00166{font-size:119.520000px;}
.fs2_c00166{font-size:119.664000px;}
.fs0_c00166{font-size:240.624000px;}
.y0_c00166{bottom:0.000000px;}
.y9_c00166{bottom:192.960000px;}
.y8_c00166{bottom:228.990000px;}
.y7_c00166{bottom:300.990000px;}
.y6_c00166{bottom:337.035000px;}
.y5_c00166{bottom:409.065000px;}
.y4_c00166{bottom:481.110000px;}
.y3_c00166{bottom:517.110000px;}
.y2_c00166{bottom:589.140000px;}
.y1_c00166{bottom:700.350000px;}
.h5_c00166{height:118.878047px;}
.h3_c00166{height:119.021273px;}
.h2_c00166{height:122.379609px;}
.h4_c00166{height:122.527055px;}
.h1_c00166{height:246.381117px;}
.h0_c00166{height:810.000000px;}
.w1_c00166{width:1439.999979px;}
.w0_c00166{width:1440.000000px;}
.x0_c00166{left:0.000000px;}
.x2_c00166{left:32.543979px;}
.x1_c00166{left:172.829979px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls3_c00166{letter-spacing:0.000000pt;}
.ls0_c00166{letter-spacing:23.810560pt;}
.ls2_c00166{letter-spacing:24.569728pt;}
.ls1_c00166{letter-spacing:25.051392pt;}
.ws1_c00166{word-spacing:-24.039168pt;}
.ws0_c00166{word-spacing:-24.010240pt;}
.ws2_c00166{word-spacing:0.000000pt;}
._9_c00166{margin-left:-8.814720pt;}
._1_c00166{margin-left:-5.774976pt;}
._0_c00166{margin-left:-3.208320pt;}
._5_c00166{margin-left:-2.175616pt;}
._2_c00166{margin-left:-1.283328pt;}
._3_c00166{width:1.069440pt;}
._4_c00166{width:2.655787pt;}
._6_c00166{width:3.906944pt;}
._8_c00166{width:22.564949pt;}
._7_c00166{width:51.069312pt;}
.fs1_c00166{font-size:106.240000pt;}
.fs2_c00166{font-size:106.368000pt;}
.fs0_c00166{font-size:213.888000pt;}
.y0_c00166{bottom:0.000000pt;}
.y9_c00166{bottom:171.520000pt;}
.y8_c00166{bottom:203.546667pt;}
.y7_c00166{bottom:267.546667pt;}
.y6_c00166{bottom:299.586667pt;}
.y5_c00166{bottom:363.613333pt;}
.y4_c00166{bottom:427.653333pt;}
.y3_c00166{bottom:459.653333pt;}
.y2_c00166{bottom:523.680000pt;}
.y1_c00166{bottom:622.533333pt;}
.h5_c00166{height:105.669375pt;}
.h3_c00166{height:105.796687pt;}
.h2_c00166{height:108.781875pt;}
.h4_c00166{height:108.912937pt;}
.h1_c00166{height:219.005437pt;}
.h0_c00166{height:720.000000pt;}
.w1_c00166{width:1279.999981pt;}
.w0_c00166{width:1280.000000pt;}
.x0_c00166{left:0.000000pt;}
.x2_c00166{left:28.927981pt;}
.x1_c00166{left:153.626648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1602a8b4a5cb1b83622f7d5b.woff')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.202148;font-style:normal;font-weight:normal;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_31d450cb554125319c81f456.woff')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls1_c00167{letter-spacing:0.000000px;}
.ls0_c00167{letter-spacing:0.242400px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00167{word-spacing:-59.830464px;}
.ws1_c00167{word-spacing:-59.588064px;}
.ws2_c00167{word-spacing:0.000000px;}
._0_c00167{margin-left:-6.855264px;}
._6_c00167{margin-left:-5.035536px;}
._2_c00167{margin-left:-3.691296px;}
._1_c00167{margin-left:-2.636640px;}
._3_c00167{margin-left:-1.316304px;}
._4_c00167{width:1.302048px;}
._5_c00167{width:4.192272px;}
.fc1_c00167{color:rgb(0,0,0);}
.fc0_c00167{color:rgb(255,255,255);}
.fs2_c00167{font-size:119.520000px;}
.fs1_c00167{font-size:119.664000px;}
.fs4_c00167{font-size:168.480000px;}
.fs3_c00167{font-size:168.624000px;}
.fs0_c00167{font-size:263.664000px;}
.y0_c00167{bottom:0.000000px;}
.ya_c00167{bottom:151.995000px;}
.y9_c00167{bottom:280.185000px;}
.y3_c00167{bottom:315.150000px;}
.y2_c00167{bottom:386.460000px;}
.y8_c00167{bottom:408.420000px;}
.y1_c00167{bottom:457.770000px;}
.y7_c00167{bottom:536.655000px;}
.y6_c00167{bottom:638.205000px;}
.y5_c00167{bottom:670.965000px;}
.y4_c00167{bottom:704.130000px;}
.h3_c00167{height:122.379609px;}
.h2_c00167{height:122.527055px;}
.h5_c00167{height:172.511016px;}
.h4_c00167{height:172.658461px;}
.h1_c00167{height:269.972367px;}
.h0_c00167{height:810.000000px;}
.w1_c00167{width:1439.999979px;}
.w0_c00167{width:1440.000000px;}
.x0_c00167{left:0.000000px;}
.x1_c00167{left:109.835979px;}
.x2_c00167{left:571.829979px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls1_c00167{letter-spacing:0.000000pt;}
.ls0_c00167{letter-spacing:0.215467pt;}
.ws0_c00167{word-spacing:-53.182635pt;}
.ws1_c00167{word-spacing:-52.967168pt;}
.ws2_c00167{word-spacing:0.000000pt;}
._0_c00167{margin-left:-6.093568pt;}
._6_c00167{margin-left:-4.476032pt;}
._2_c00167{margin-left:-3.281152pt;}
._1_c00167{margin-left:-2.343680pt;}
._3_c00167{margin-left:-1.170048pt;}
._4_c00167{width:1.157376pt;}
._5_c00167{width:3.726464pt;}
.fs2_c00167{font-size:106.240000pt;}
.fs1_c00167{font-size:106.368000pt;}
.fs4_c00167{font-size:149.760000pt;}
.fs3_c00167{font-size:149.888000pt;}
.fs0_c00167{font-size:234.368000pt;}
.y0_c00167{bottom:0.000000pt;}
.ya_c00167{bottom:135.106667pt;}
.y9_c00167{bottom:249.053333pt;}
.y3_c00167{bottom:280.133333pt;}
.y2_c00167{bottom:343.520000pt;}
.y8_c00167{bottom:363.040000pt;}
.y1_c00167{bottom:406.906667pt;}
.y7_c00167{bottom:477.026667pt;}
.y6_c00167{bottom:567.293333pt;}
.y5_c00167{bottom:596.413333pt;}
.y4_c00167{bottom:625.893333pt;}
.h3_c00167{height:108.781875pt;}
.h2_c00167{height:108.912937pt;}
.h5_c00167{height:153.343125pt;}
.h4_c00167{height:153.474187pt;}
.h1_c00167{height:239.975437pt;}
.h0_c00167{height:720.000000pt;}
.w1_c00167{width:1279.999981pt;}
.w0_c00167{width:1280.000000pt;}
.x0_c00167{left:0.000000pt;}
.x1_c00167{left:97.631981pt;}
.x2_c00167{left:508.293314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b24402cb4ea64f6d5c043e8e.woff')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.172852;font-style:normal;font-weight:normal;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_202f1287606a789219ade98e.woff')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.172852;font-style: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;}
.ls0_c00168{letter-spacing:0.000000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00168{word-spacing:-24.440544px;}
.ws1_c00168{word-spacing:0.000000px;}
._2_c00168{margin-left:-9.384480px;}
._3_c00168{margin-left:-3.830400px;}
._0_c00168{margin-left:-2.681280px;}
._5_c00168{margin-left:-1.532160px;}
._6_c00168{width:1.532160px;}
._1_c00168{width:2.681280px;}
._4_c00168{width:4.213440px;}
.fc0_c00168{color:rgb(14,40,65);}
.fs1_c00168{font-size:108.000000px;}
.fs2_c00168{font-size:108.144000px;}
.fs0_c00168{font-size:191.520000px;}
.y0_c00168{bottom:0.000000px;}
.y4_c00168{bottom:229.605000px;}
.y3_c00168{bottom:267.765000px;}
.y2_c00168{bottom:492.840000px;}
.y1_c00168{bottom:544.710000px;}
.h2_c00168{height:107.419922px;}
.h3_c00168{height:107.563148px;}
.h1_c00168{height:190.491328px;}
.h0_c00168{height:810.000000px;}
.w1_c00168{width:1439.999979px;}
.w0_c00168{width:1440.000000px;}
.x0_c00168{left:0.000000px;}
.x1_c00168{left:74.879979px;}
.x2_c00168{left:123.875979px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls0_c00168{letter-spacing:0.000000pt;}
.ws0_c00168{word-spacing:-21.724928pt;}
.ws1_c00168{word-spacing:0.000000pt;}
._2_c00168{margin-left:-8.341760pt;}
._3_c00168{margin-left:-3.404800pt;}
._0_c00168{margin-left:-2.383360pt;}
._5_c00168{margin-left:-1.361920pt;}
._6_c00168{width:1.361920pt;}
._1_c00168{width:2.383360pt;}
._4_c00168{width:3.745280pt;}
.fs1_c00168{font-size:96.000000pt;}
.fs2_c00168{font-size:96.128000pt;}
.fs0_c00168{font-size:170.240000pt;}
.y0_c00168{bottom:0.000000pt;}
.y4_c00168{bottom:204.093333pt;}
.y3_c00168{bottom:238.013333pt;}
.y2_c00168{bottom:438.080000pt;}
.y1_c00168{bottom:484.186667pt;}
.h2_c00168{height:95.484375pt;}
.h3_c00168{height:95.611688pt;}
.h1_c00168{height:169.325625pt;}
.h0_c00168{height:720.000000pt;}
.w1_c00168{width:1279.999981pt;}
.w0_c00168{width:1280.000000pt;}
.x0_c00168{left:0.000000pt;}
.x1_c00168{left:66.559981pt;}
.x2_c00168{left:110.111981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00169{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
}
.y0_c00169{bottom:0.000000px;}
.h1_c00169{height:1620.000000px;}
.h0_c00169{height:1620.225000px;}
.w0_c00169{width:2880.405000px;}
.w1_c00169{width:2880.750000px;}
.x0_c00169{left:0.000000px;}
@media print{
.y0_c00169{bottom:0.000000pt;}
.h1_c00169{height:1440.000000pt;}
.h0_c00169{height:1440.200000pt;}
.w0_c00169{width:2560.360000pt;}
.w1_c00169{width:2560.666667pt;}
.x0_c00169{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_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;}
.sc__c00170{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
}
.y0_c00170{bottom:0.000000px;}
.h1_c00170{height:1620.000000px;}
.h0_c00170{height:1620.225000px;}
.w0_c00170{width:2880.405000px;}
.w1_c00170{width:2880.750000px;}
.x0_c00170{left:0.000000px;}
@media print{
.y0_c00170{bottom:0.000000pt;}
.h1_c00170{height:1440.000000pt;}
.h0_c00170{height:1440.200000pt;}
.w0_c00170{width:2560.360000pt;}
.w1_c00170{width:2560.666667pt;}
.x0_c00170{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_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;}
.sc__c00171{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
}
.y0_c00171{bottom:0.000000px;}
.h1_c00171{height:1620.000000px;}
.h0_c00171{height:1620.225000px;}
.w0_c00171{width:2880.405000px;}
.w1_c00171{width:2880.750000px;}
.x0_c00171{left:0.000000px;}
@media print{
.y0_c00171{bottom:0.000000pt;}
.h1_c00171{height:1440.000000pt;}
.h0_c00171{height:1440.200000pt;}
.w0_c00171{width:2560.360000pt;}
.w1_c00171{width:2560.666667pt;}
.x0_c00171{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_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;}
.sc__c00172{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
}
.y0_c00172{bottom:0.000000px;}
.h1_c00172{height:1620.000000px;}
.h0_c00172{height:1620.225000px;}
.w0_c00172{width:2880.405000px;}
.w1_c00172{width:2880.750000px;}
.x0_c00172{left:0.000000px;}
@media print{
.y0_c00172{bottom:0.000000pt;}
.h1_c00172{height:1440.000000pt;}
.h0_c00172{height:1440.200000pt;}
.w0_c00172{width:2560.360000pt;}
.w1_c00172{width:2560.666667pt;}
.x0_c00172{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_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;}
.sc__c00173{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
}
.y0_c00173{bottom:0.000000px;}
.h1_c00173{height:1620.000000px;}
.h0_c00173{height:1620.225000px;}
.w0_c00173{width:2880.405000px;}
.w1_c00173{width:2880.750000px;}
.x0_c00173{left:0.000000px;}
@media print{
.y0_c00173{bottom:0.000000pt;}
.h1_c00173{height:1440.000000pt;}
.h0_c00173{height:1440.200000pt;}
.w0_c00173{width:2560.360000pt;}
.w1_c00173{width:2560.666667pt;}
.x0_c00173{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_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;}
.sc__c00174{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
}
.y0_c00174{bottom:0.000000px;}
.h1_c00174{height:1620.000000px;}
.h0_c00174{height:1620.225000px;}
.w0_c00174{width:2880.405000px;}
.w1_c00174{width:2880.750000px;}
.x0_c00174{left:0.000000px;}
@media print{
.y0_c00174{bottom:0.000000pt;}
.h1_c00174{height:1440.000000pt;}
.h0_c00174{height:1440.200000pt;}
.w0_c00174{width:2560.360000pt;}
.w1_c00174{width:2560.666667pt;}
.x0_c00174{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_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;}
.sc__c00175{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
}
.y0_c00175{bottom:0.000000px;}
.h1_c00175{height:1620.000000px;}
.h0_c00175{height:1620.225000px;}
.w0_c00175{width:2880.405000px;}
.w1_c00175{width:2880.750000px;}
.x0_c00175{left:0.000000px;}
@media print{
.y0_c00175{bottom:0.000000pt;}
.h1_c00175{height:1440.000000pt;}
.h0_c00175{height:1440.200000pt;}
.w0_c00175{width:2560.360000pt;}
.w1_c00175{width:2560.666667pt;}
.x0_c00175{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_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;}
.sc__c00176{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
}
.y0_c00176{bottom:0.000000px;}
.h1_c00176{height:1620.000000px;}
.h0_c00176{height:1620.225000px;}
.w0_c00176{width:2880.405000px;}
.w1_c00176{width:2880.750000px;}
.x0_c00176{left:0.000000px;}
@media print{
.y0_c00176{bottom:0.000000pt;}
.h1_c00176{height:1440.000000pt;}
.h0_c00176{height:1440.200000pt;}
.w0_c00176{width:2560.360000pt;}
.w1_c00176{width:2560.666667pt;}
.x0_c00176{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_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_e185e1f873c6958b343edf40.woff')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.202637;font-style:normal;font-weight:normal;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_a9d19abcfed156995813f204.woff')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.202637;font-style:normal;font-weight:normal;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_28d84fef273fa1276cd8a990.woff')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00177;src:url('chunks/assets/font_861a3cb52cd08e40c1878fbd.woff')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.161621;font-style: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;}
.ls2_c00177{letter-spacing:0.000000px;}
.ls0_c00177{letter-spacing:0.201600px;}
.ls1_c00177{letter-spacing:0.288000px;}
.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:-32.832000px;}
.ws2_c00177{word-spacing:-26.467200px;}
.ws1_c00177{word-spacing:-26.265600px;}
.ws3_c00177{word-spacing:0.000000px;}
._0_c00177{margin-left:-13.527360px;}
._4_c00177{margin-left:-10.939200px;}
._6_c00177{margin-left:-8.678400px;}
._5_c00177{margin-left:-6.782400px;}
._2_c00177{margin-left:-4.213440px;}
._7_c00177{margin-left:-3.129600px;}
._1_c00177{margin-left:-1.108800px;}
._3_c00177{width:1.108800px;}
._8_c00177{width:2.966400px;}
.fc1_c00177{color:rgb(0,0,0);}
.fc0_c00177{color:rgb(255,255,255);}
.fs2_c00177{font-size:115.200000px;}
.fs1_c00177{font-size:144.000000px;}
.fs3_c00177{font-size:167.904000px;}
.fs0_c00177{font-size:221.760000px;}
.y0_c00177{bottom:0.000000px;}
.y4_c00177{bottom:56.268000px;}
.y3_c00177{bottom:212.550000px;}
.y2_c00177{bottom:270.690000px;}
.y1_c00177{bottom:449.565000px;}
.h3_c00177{height:129.867188px;}
.h2_c00177{height:130.992188px;}
.h4_c00177{height:152.736891px;}
.h1_c00177{height:201.727969px;}
.h0_c00177{height:810.000000px;}
.w0_c00177{width:1440.000000px;}
.x0_c00177{left:0.000000px;}
.x1_c00177{left:73.836000px;}
.x2_c00177{left:260.250000px;}
.x3_c00177{left:268.890000px;}
.x4_c00177{left:538.125000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls2_c00177{letter-spacing:0.000000pt;}
.ls0_c00177{letter-spacing:0.179200pt;}
.ls1_c00177{letter-spacing:0.256000pt;}
.ws0_c00177{word-spacing:-29.184000pt;}
.ws2_c00177{word-spacing:-23.526400pt;}
.ws1_c00177{word-spacing:-23.347200pt;}
.ws3_c00177{word-spacing:0.000000pt;}
._0_c00177{margin-left:-12.024320pt;}
._4_c00177{margin-left:-9.723733pt;}
._6_c00177{margin-left:-7.714133pt;}
._5_c00177{margin-left:-6.028800pt;}
._2_c00177{margin-left:-3.745280pt;}
._7_c00177{margin-left:-2.781867pt;}
._1_c00177{margin-left:-0.985600pt;}
._3_c00177{width:0.985600pt;}
._8_c00177{width:2.636800pt;}
.fs2_c00177{font-size:102.400000pt;}
.fs1_c00177{font-size:128.000000pt;}
.fs3_c00177{font-size:149.248000pt;}
.fs0_c00177{font-size:197.120000pt;}
.y0_c00177{bottom:0.000000pt;}
.y4_c00177{bottom:50.016000pt;}
.y3_c00177{bottom:188.933333pt;}
.y2_c00177{bottom:240.613333pt;}
.y1_c00177{bottom:399.613333pt;}
.h3_c00177{height:115.437500pt;}
.h2_c00177{height:116.437500pt;}
.h4_c00177{height:135.766125pt;}
.h1_c00177{height:179.313750pt;}
.h0_c00177{height:720.000000pt;}
.w0_c00177{width:1280.000000pt;}
.x0_c00177{left:0.000000pt;}
.x1_c00177{left:65.632000pt;}
.x2_c00177{left:231.333333pt;}
.x3_c00177{left:239.013333pt;}
.x4_c00177{left:478.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_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_2c8a15babb5a012fbaeaf3c3.woff')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.202637;font-style:normal;font-weight:normal;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_d7e6c5c70a0946bf4b6db28a.woff')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.202637;font-style:normal;font-weight:normal;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_aef2a8d9ec05f52cc1b8d272.woff')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.161621;font-style:normal;font-weight:normal;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_65a2b6f03ec32b541628edab.woff')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:1.161621;font-style:normal;font-weight:normal;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_1b36404e1ad82bbd37a02e71.woff')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00178;src:url('chunks/assets/font_2b4ba0f826c84ee5b4dcba89.woff')format("woff");}.ff6_c00178{font-family:ff6_c00178;line-height:1.115234;font-style: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);}
.m1_c00178{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls3_c00178{letter-spacing:-0.144000px;}
.ls2_c00178{letter-spacing:0.000000px;}
.ls4_c00178{letter-spacing:0.106800px;}
.ls0_c00178{letter-spacing:0.144000px;}
.ls1_c00178{letter-spacing:0.216000px;}
.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;}
}
.ws3_c00178{word-spacing:-33.533520px;}
.ws0_c00178{word-spacing:-32.688000px;}
.ws2_c00178{word-spacing:-16.632000px;}
.ws1_c00178{word-spacing:-16.416000px;}
.ws4_c00178{word-spacing:0.000000px;}
._7_c00178{margin-left:-6.552000px;}
._6_c00178{margin-left:-4.824000px;}
._0_c00178{margin-left:-3.600000px;}
._5_c00178{margin-left:-2.400000px;}
._1_c00178{margin-left:-1.152000px;}
._3_c00178{width:1.008000px;}
._4_c00178{width:2.040000px;}
._2_c00178{width:3.168000px;}
.fc2_c00178{color:rgb(67,67,67);}
.fc1_c00178{color:rgb(0,0,0);}
.fc0_c00178{color:rgb(255,255,255);}
.fs1_c00178{font-size:72.000000px;}
.fs2_c00178{font-size:72.144000px;}
.fs3_c00178{font-size:120.240000px;}
.fs0_c00178{font-size:144.000000px;}
.y0_c00178{bottom:0.000000px;}
.y22_c00178{bottom:71.856000px;}
.y1e_c00178{bottom:85.392000px;}
.y1d_c00178{bottom:106.992000px;}
.y21_c00178{bottom:107.856000px;}
.y1c_c00178{bottom:128.592000px;}
.y20_c00178{bottom:143.856000px;}
.y1b_c00178{bottom:150.225000px;}
.y1a_c00178{bottom:171.825000px;}
.y1f_c00178{bottom:179.850000px;}
.y19_c00178{bottom:193.425000px;}
.y18_c00178{bottom:215.025000px;}
.y17_c00178{bottom:236.625000px;}
.y16_c00178{bottom:258.225000px;}
.y15_c00178{bottom:279.825000px;}
.y14_c00178{bottom:301.425000px;}
.y13_c00178{bottom:323.070000px;}
.y12_c00178{bottom:344.670000px;}
.y11_c00178{bottom:366.270000px;}
.y10_c00178{bottom:387.870000px;}
.yf_c00178{bottom:409.470000px;}
.ye_c00178{bottom:431.070000px;}
.yd_c00178{bottom:452.670000px;}
.yc_c00178{bottom:474.270000px;}
.yb_c00178{bottom:495.870000px;}
.ya_c00178{bottom:517.500000px;}
.y9_c00178{bottom:539.100000px;}
.y8_c00178{bottom:560.700000px;}
.y7_c00178{bottom:582.300000px;}
.y6_c00178{bottom:603.900000px;}
.y5_c00178{bottom:625.500000px;}
.y4_c00178{bottom:647.100000px;}
.y3_c00178{bottom:668.700000px;}
.y2_c00178{bottom:690.330000px;}
.y1_c00178{bottom:722.595000px;}
.h2_c00178{height:64.933594px;}
.h3_c00178{height:65.063461px;}
.h4_c00178{height:125.406562px;}
.h1_c00178{height:130.992188px;}
.h0_c00178{height:810.000000px;}
.w0_c00178{width:1440.000000px;}
.x0_c00178{left:0.000000px;}
.x2_c00178{left:44.820000px;}
.x1_c00178{left:107.460000px;}
.x3_c00178{left:751.890000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls3_c00178{letter-spacing:-0.128000pt;}
.ls2_c00178{letter-spacing:0.000000pt;}
.ls4_c00178{letter-spacing:0.094933pt;}
.ls0_c00178{letter-spacing:0.128000pt;}
.ls1_c00178{letter-spacing:0.192000pt;}
.ws3_c00178{word-spacing:-29.807573pt;}
.ws0_c00178{word-spacing:-29.056000pt;}
.ws2_c00178{word-spacing:-14.784000pt;}
.ws1_c00178{word-spacing:-14.592000pt;}
.ws4_c00178{word-spacing:0.000000pt;}
._7_c00178{margin-left:-5.824000pt;}
._6_c00178{margin-left:-4.288000pt;}
._0_c00178{margin-left:-3.200000pt;}
._5_c00178{margin-left:-2.133333pt;}
._1_c00178{margin-left:-1.024000pt;}
._3_c00178{width:0.896000pt;}
._4_c00178{width:1.813333pt;}
._2_c00178{width:2.816000pt;}
.fs1_c00178{font-size:64.000000pt;}
.fs2_c00178{font-size:64.128000pt;}
.fs3_c00178{font-size:106.880000pt;}
.fs0_c00178{font-size:128.000000pt;}
.y0_c00178{bottom:0.000000pt;}
.y22_c00178{bottom:63.872000pt;}
.y1e_c00178{bottom:75.904000pt;}
.y1d_c00178{bottom:95.104000pt;}
.y21_c00178{bottom:95.872000pt;}
.y1c_c00178{bottom:114.304000pt;}
.y20_c00178{bottom:127.872000pt;}
.y1b_c00178{bottom:133.533333pt;}
.y1a_c00178{bottom:152.733333pt;}
.y1f_c00178{bottom:159.866667pt;}
.y19_c00178{bottom:171.933333pt;}
.y18_c00178{bottom:191.133333pt;}
.y17_c00178{bottom:210.333333pt;}
.y16_c00178{bottom:229.533333pt;}
.y15_c00178{bottom:248.733333pt;}
.y14_c00178{bottom:267.933333pt;}
.y13_c00178{bottom:287.173333pt;}
.y12_c00178{bottom:306.373333pt;}
.y11_c00178{bottom:325.573333pt;}
.y10_c00178{bottom:344.773333pt;}
.yf_c00178{bottom:363.973333pt;}
.ye_c00178{bottom:383.173333pt;}
.yd_c00178{bottom:402.373333pt;}
.yc_c00178{bottom:421.573333pt;}
.yb_c00178{bottom:440.773333pt;}
.ya_c00178{bottom:460.000000pt;}
.y9_c00178{bottom:479.200000pt;}
.y8_c00178{bottom:498.400000pt;}
.y7_c00178{bottom:517.600000pt;}
.y6_c00178{bottom:536.800000pt;}
.y5_c00178{bottom:556.000000pt;}
.y4_c00178{bottom:575.200000pt;}
.y3_c00178{bottom:594.400000pt;}
.y2_c00178{bottom:613.626667pt;}
.y1_c00178{bottom:642.306667pt;}
.h2_c00178{height:57.718750pt;}
.h3_c00178{height:57.834187pt;}
.h4_c00178{height:111.472500pt;}
.h1_c00178{height:116.437500pt;}
.h0_c00178{height:720.000000pt;}
.w0_c00178{width:1280.000000pt;}
.x0_c00178{left:0.000000pt;}
.x2_c00178{left:39.840000pt;}
.x1_c00178{left:95.520000pt;}
.x3_c00178{left:668.346667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e45b225023512f78755149d9.woff')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.172852;font-style:normal;font-weight:normal;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_1d315e9157fd92dc3e6bac97.woff')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.172852;font-style:normal;font-weight:normal;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_b5bea88b0f65bf927423868f.woff')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.202637;font-style:normal;font-weight:normal;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_5a0ff068519c2346cf332543.woff')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.202637;font-style:normal;font-weight:normal;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_ef3f661f61b281346ab44d38.woff')format("woff");}.ff5_c00179{font-family:ff5_c00179;line-height:1.161621;font-style: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);}
.m1_c00179{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_c00179{vertical-align:-57.000000px;}
.v0_c00179{vertical-align:0.000000px;}
.v2_c00179{vertical-align:7.920000px;}
.ls8_c00179{letter-spacing:-0.144000px;}
.ls6_c00179{letter-spacing:-0.058320px;}
.ls7_c00179{letter-spacing:0.000000px;}
.ls4_c00179{letter-spacing:0.288000px;}
.ls5_c00179{letter-spacing:1.008000px;}
.ls2_c00179{letter-spacing:1.728000px;}
.ls3_c00179{letter-spacing:122.688000px;}
.ls0_c00179{letter-spacing:360.174240px;}
.ls1_c00179{letter-spacing:367.674240px;}
.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;}
}
.ws3_c00179{word-spacing:-32.832000px;}
.ws4_c00179{word-spacing:-32.688000px;}
.ws1_c00179{word-spacing:-13.505760px;}
.ws0_c00179{word-spacing:-13.447440px;}
.ws5_c00179{word-spacing:0.000000px;}
.ws2_c00179{word-spacing:351.903120px;}
._4_c00179{margin-left:-4.896000px;}
._5_c00179{margin-left:-3.888000px;}
._2_c00179{margin-left:-1.608000px;}
._0_c00179{width:1.075680px;}
._3_c00179{width:3.124320px;}
._1_c00179{width:366.426720px;}
.fc1_c00179{color:rgb(255,0,0);}
.fc2_c00179{color:rgb(255,255,255);}
.fc0_c00179{color:rgb(0,0,0);}
.fs0_c00179{font-size:59.760000px;}
.fs2_c00179{font-size:95.760000px;}
.fs1_c00179{font-size:95.904000px;}
.fs3_c00179{font-size:144.000000px;}
.y0_c00179{bottom:0.000000px;}
.y16_c00179{bottom:13.644000px;}
.y1_c00179{bottom:16.740000px;}
.y10_c00179{bottom:28.548000px;}
.y11_c00179{bottom:136.800000px;}
.y12_c00179{bottom:245.055000px;}
.yf_c00179{bottom:258.840000px;}
.ye_c00179{bottom:280.260000px;}
.y13_c00179{bottom:353.310000px;}
.y7_c00179{bottom:367.200000px;}
.yd_c00179{bottom:385.710000px;}
.y6_c00179{bottom:396.975000px;}
.yc_c00179{bottom:434.985000px;}
.y5_c00179{bottom:435.780000px;}
.yb_c00179{bottom:455.250000px;}
.y14_c00179{bottom:461.550000px;}
.y4_c00179{bottom:472.140000px;}
.ya_c00179{bottom:480.990000px;}
.y18_c00179{bottom:491.250000px;}
.y9_c00179{bottom:506.625000px;}
.y3_c00179{bottom:507.345000px;}
.y17_c00179{bottom:535.650000px;}
.y2_c00179{bottom:545.580000px;}
.y8_c00179{bottom:549.720000px;}
.y15_c00179{bottom:569.805000px;}
.y1b_c00179{bottom:651.270000px;}
.y1a_c00179{bottom:694.470000px;}
.y19_c00179{bottom:737.670000px;}
.h2_c00179{height:59.439023px;}
.h4_c00179{height:95.245664px;}
.h3_c00179{height:95.388891px;}
.h5_c00179{height:130.992188px;}
.h1_c00179{height:610.380000px;}
.h0_c00179{height:810.000000px;}
.w1_c00179{width:1366.200000px;}
.w0_c00179{width:1440.000000px;}
.x0_c00179{left:0.000000px;}
.x11_c00179{left:36.252000px;}
.x10_c00179{left:43.884000px;}
.x1_c00179{left:48.960000px;}
.x2_c00179{left:107.310000px;}
.x12_c00179{left:133.920000px;}
.x8_c00179{left:171.030000px;}
.x14_c00179{left:183.600000px;}
.x3_c00179{left:223.530000px;}
.x9_c00179{left:288.180000px;}
.x4_c00179{left:347.220000px;}
.xa_c00179{left:408.135000px;}
.x15_c00179{left:491.970000px;}
.xb_c00179{left:526.215000px;}
.xc_c00179{left:648.000000px;}
.x5_c00179{left:729.435000px;}
.x13_c00179{left:734.865000px;}
.xd_c00179{left:773.565000px;}
.x6_c00179{left:845.640000px;}
.xe_c00179{left:893.520000px;}
.x7_c00179{left:984.240000px;}
.xf_c00179{left:1011.600000px;}
@media print{
.v1_c00179{vertical-align:-50.666667pt;}
.v0_c00179{vertical-align:0.000000pt;}
.v2_c00179{vertical-align:7.040000pt;}
.ls8_c00179{letter-spacing:-0.128000pt;}
.ls6_c00179{letter-spacing:-0.051840pt;}
.ls7_c00179{letter-spacing:0.000000pt;}
.ls4_c00179{letter-spacing:0.256000pt;}
.ls5_c00179{letter-spacing:0.896000pt;}
.ls2_c00179{letter-spacing:1.536000pt;}
.ls3_c00179{letter-spacing:109.056000pt;}
.ls0_c00179{letter-spacing:320.154880pt;}
.ls1_c00179{letter-spacing:326.821547pt;}
.ws3_c00179{word-spacing:-29.184000pt;}
.ws4_c00179{word-spacing:-29.056000pt;}
.ws1_c00179{word-spacing:-12.005120pt;}
.ws0_c00179{word-spacing:-11.953280pt;}
.ws5_c00179{word-spacing:0.000000pt;}
.ws2_c00179{word-spacing:312.802773pt;}
._4_c00179{margin-left:-4.352000pt;}
._5_c00179{margin-left:-3.456000pt;}
._2_c00179{margin-left:-1.429333pt;}
._0_c00179{width:0.956160pt;}
._3_c00179{width:2.777173pt;}
._1_c00179{width:325.712640pt;}
.fs0_c00179{font-size:53.120000pt;}
.fs2_c00179{font-size:85.120000pt;}
.fs1_c00179{font-size:85.248000pt;}
.fs3_c00179{font-size:128.000000pt;}
.y0_c00179{bottom:0.000000pt;}
.y16_c00179{bottom:12.128000pt;}
.y1_c00179{bottom:14.880000pt;}
.y10_c00179{bottom:25.376000pt;}
.y11_c00179{bottom:121.600000pt;}
.y12_c00179{bottom:217.826667pt;}
.yf_c00179{bottom:230.080000pt;}
.ye_c00179{bottom:249.120000pt;}
.y13_c00179{bottom:314.053333pt;}
.y7_c00179{bottom:326.400000pt;}
.yd_c00179{bottom:342.853333pt;}
.y6_c00179{bottom:352.866667pt;}
.yc_c00179{bottom:386.653333pt;}
.y5_c00179{bottom:387.360000pt;}
.yb_c00179{bottom:404.666667pt;}
.y14_c00179{bottom:410.266667pt;}
.y4_c00179{bottom:419.680000pt;}
.ya_c00179{bottom:427.546667pt;}
.y18_c00179{bottom:436.666667pt;}
.y9_c00179{bottom:450.333333pt;}
.y3_c00179{bottom:450.973333pt;}
.y17_c00179{bottom:476.133333pt;}
.y2_c00179{bottom:484.960000pt;}
.y8_c00179{bottom:488.640000pt;}
.y15_c00179{bottom:506.493333pt;}
.y1b_c00179{bottom:578.906667pt;}
.y1a_c00179{bottom:617.306667pt;}
.y19_c00179{bottom:655.706667pt;}
.h2_c00179{height:52.834688pt;}
.h4_c00179{height:84.662813pt;}
.h3_c00179{height:84.790125pt;}
.h5_c00179{height:116.437500pt;}
.h1_c00179{height:542.560000pt;}
.h0_c00179{height:720.000000pt;}
.w1_c00179{width:1214.400000pt;}
.w0_c00179{width:1280.000000pt;}
.x0_c00179{left:0.000000pt;}
.x11_c00179{left:32.224000pt;}
.x10_c00179{left:39.008000pt;}
.x1_c00179{left:43.520000pt;}
.x2_c00179{left:95.386667pt;}
.x12_c00179{left:119.040000pt;}
.x8_c00179{left:152.026667pt;}
.x14_c00179{left:163.200000pt;}
.x3_c00179{left:198.693333pt;}
.x9_c00179{left:256.160000pt;}
.x4_c00179{left:308.640000pt;}
.xa_c00179{left:362.786667pt;}
.x15_c00179{left:437.306667pt;}
.xb_c00179{left:467.746667pt;}
.xc_c00179{left:576.000000pt;}
.x5_c00179{left:648.386667pt;}
.x13_c00179{left:653.213333pt;}
.xd_c00179{left:687.613333pt;}
.x6_c00179{left:751.680000pt;}
.xe_c00179{left:794.240000pt;}
.x7_c00179{left:874.880000pt;}
.xf_c00179{left:899.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_897654f8414b40ac36ec263b.woff')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.202637;font-style:normal;font-weight:normal;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_4e59ef3ac35a09ec45e64bae.woff')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.202637;font-style:normal;font-weight:normal;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_d58c8b3dfa22916c07c83281.woff')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:0.732910;font-style:normal;font-weight:normal;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_8716b7727dae2f281d322340.woff')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.161621;font-style:normal;font-weight:normal;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_9f8ccea9a6aecdcc41f219f4.woff')format("woff");}.ff5_c00180{font-family:ff5_c00180;line-height:1.161621;font-style:normal;font-weight:normal;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_510f91fc217f28406a322233.woff')format("woff");}.ff6_c00180{font-family:ff6_c00180;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00180;src:url('chunks/assets/font_fdb61e503a12e065f395228d.woff')format("woff");}.ff7_c00180{font-family:ff7_c00180;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00180{letter-spacing:-0.353400px;}
.lsa_c00180{letter-spacing:-0.288000px;}
.lsb_c00180{letter-spacing:-0.253200px;}
.ls9_c00180{letter-spacing:-0.209400px;}
.ls7_c00180{letter-spacing:-0.144000px;}
.ls6_c00180{letter-spacing:0.000000px;}
.ls4_c00180{letter-spacing:0.036000px;}
.ls5_c00180{letter-spacing:0.042480px;}
.lsc_c00180{letter-spacing:0.954000px;}
.ls3_c00180{letter-spacing:1.296000px;}
.ls1_c00180{letter-spacing:232.968000px;}
.ls2_c00180{letter-spacing:255.888000px;}
.ls0_c00180{letter-spacing:1807.068000px;}
.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:-32.832000px;}
.ws1_c00180{word-spacing:-32.688000px;}
.ws6_c00180{word-spacing:-24.624000px;}
.ws5_c00180{word-spacing:-24.480000px;}
.ws3_c00180{word-spacing:-24.447432px;}
.ws4_c00180{word-spacing:-24.336000px;}
.ws2_c00180{word-spacing:-24.303432px;}
.ws7_c00180{word-spacing:0.000000px;}
._0_c00180{margin-left:-1.440000px;}
._2_c00180{width:1.440000px;}
._1_c00180{width:3.456000px;}
._4_c00180{width:278.532002px;}
._3_c00180{width:279.924000px;}
.fc2_c00180{color:transparent;}
.fc1_c00180{color:rgb(0,0,0);}
.fc0_c00180{color:rgb(255,255,255);}
.fs3_c00180{font-size:84.240000px;}
.fs2_c00180{font-size:108.000000px;}
.fs1_c00180{font-size:108.144000px;}
.fs0_c00180{font-size:144.000000px;}
.y0_c00180{bottom:0.000000px;}
.y29_c00180{bottom:44.640000px;}
.y2e_c00180{bottom:73.440000px;}
.y25_c00180{bottom:77.940000px;}
.y2d_c00180{bottom:98.640000px;}
.y1b_c00180{bottom:102.960000px;}
.y9_c00180{bottom:102.990000px;}
.y2c_c00180{bottom:103.032000px;}
.y11_c00180{bottom:103.035000px;}
.y6_c00180{bottom:103.065000px;}
.yc_c00180{bottom:103.110000px;}
.y14_c00180{bottom:103.140000px;}
.y26_c00180{bottom:103.170000px;}
.y2a_c00180{bottom:103.212000px;}
.y23_c00180{bottom:111.240000px;}
.y3_c00180{bottom:137.370000px;}
.y21_c00180{bottom:144.540000px;}
.y2b_c00180{bottom:147.852000px;}
.y1f_c00180{bottom:178.560000px;}
.y28_c00180{bottom:180.930000px;}
.y27_c00180{bottom:181.110000px;}
.y1d_c00180{bottom:212.580000px;}
.y24_c00180{bottom:214.230000px;}
.y1a_c00180{bottom:245.700000px;}
.y22_c00180{bottom:247.500000px;}
.y18_c00180{bottom:278.280000px;}
.y20_c00180{bottom:281.520000px;}
.y16_c00180{bottom:310.680000px;}
.y1e_c00180{bottom:315.540000px;}
.y13_c00180{bottom:343.440000px;}
.y1c_c00180{bottom:348.660000px;}
.y10_c00180{bottom:376.380000px;}
.y19_c00180{bottom:381.315000px;}
.ye_c00180{bottom:409.140000px;}
.y17_c00180{bottom:413.715000px;}
.yb_c00180{bottom:442.260000px;}
.y15_c00180{bottom:446.580000px;}
.y8_c00180{bottom:475.020000px;}
.y12_c00180{bottom:479.415000px;}
.y5_c00180{bottom:507.780000px;}
.y2_c00180{bottom:508.140000px;}
.yf_c00180{bottom:512.250000px;}
.yd_c00180{bottom:545.370000px;}
.ya_c00180{bottom:578.010000px;}
.y7_c00180{bottom:610.845000px;}
.y4_c00180{bottom:645.510000px;}
.y1_c00180{bottom:720.795000px;}
.hc_c00180{height:75.972305px;}
.hb_c00180{height:77.783203px;}
.h5_c00180{height:77.886914px;}
.h7_c00180{height:78.626953px;}
.ha_c00180{height:78.731789px;}
.h6_c00180{height:97.400391px;}
.h9_c00180{height:97.530258px;}
.h8_c00180{height:98.244141px;}
.h4_c00180{height:98.375133px;}
.h1_c00180{height:130.992188px;}
.h3_c00180{height:226.800000px;}
.h2_c00180{height:301.860000px;}
.h0_c00180{height:810.000000px;}
.w2_c00180{width:143.460000px;}
.w3_c00180{width:143.640000px;}
.w1_c00180{width:597.960000px;}
.w0_c00180{width:1440.000000px;}
.x0_c00180{left:0.000000px;}
.x3_c00180{left:4.212000px;}
.x13_c00180{left:28.335000px;}
.x12_c00180{left:40.575000px;}
.x14_c00180{left:59.115000px;}
.x19_c00180{left:60.375000px;}
.x1c_c00180{left:68.970000px;}
.x2_c00180{left:70.560000px;}
.x1e_c00180{left:76.392000px;}
.xf_c00180{left:84.165000px;}
.xc_c00180{left:88.272000px;}
.x1b_c00180{left:99.900000px;}
.x7_c00180{left:102.495000px;}
.xd_c00180{left:114.660000px;}
.x15_c00180{left:123.195000px;}
.xe_c00180{left:131.292000px;}
.x4_c00180{left:241.815000px;}
.x10_c00180{left:319.575000px;}
.x16_c00180{left:427.065000px;}
.x11_c00180{left:444.345000px;}
.x1_c00180{left:509.400000px;}
.x18_c00180{left:521.205000px;}
.x1d_c00180{left:527.325000px;}
.x5_c00180{left:561.345000px;}
.x17_c00180{left:584.925000px;}
.x6_c00180{left:668.520000px;}
.x8_c00180{left:811.980000px;}
.x9_c00180{left:955.620000px;}
.x1a_c00180{left:1024.560000px;}
.xa_c00180{left:1099.080000px;}
.xb_c00180{left:1242.540000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls8_c00180{letter-spacing:-0.314133pt;}
.lsa_c00180{letter-spacing:-0.256000pt;}
.lsb_c00180{letter-spacing:-0.225067pt;}
.ls9_c00180{letter-spacing:-0.186133pt;}
.ls7_c00180{letter-spacing:-0.128000pt;}
.ls6_c00180{letter-spacing:0.000000pt;}
.ls4_c00180{letter-spacing:0.032000pt;}
.ls5_c00180{letter-spacing:0.037760pt;}
.lsc_c00180{letter-spacing:0.848000pt;}
.ls3_c00180{letter-spacing:1.152000pt;}
.ls1_c00180{letter-spacing:207.082667pt;}
.ls2_c00180{letter-spacing:227.456000pt;}
.ls0_c00180{letter-spacing:1606.282667pt;}
.ws0_c00180{word-spacing:-29.184000pt;}
.ws1_c00180{word-spacing:-29.056000pt;}
.ws6_c00180{word-spacing:-21.888000pt;}
.ws5_c00180{word-spacing:-21.760000pt;}
.ws3_c00180{word-spacing:-21.731051pt;}
.ws4_c00180{word-spacing:-21.632000pt;}
.ws2_c00180{word-spacing:-21.603051pt;}
.ws7_c00180{word-spacing:0.000000pt;}
._0_c00180{margin-left:-1.280000pt;}
._2_c00180{width:1.280000pt;}
._1_c00180{width:3.072000pt;}
._4_c00180{width:247.584002pt;}
._3_c00180{width:248.821333pt;}
.fs3_c00180{font-size:74.880000pt;}
.fs2_c00180{font-size:96.000000pt;}
.fs1_c00180{font-size:96.128000pt;}
.fs0_c00180{font-size:128.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.y29_c00180{bottom:39.680000pt;}
.y2e_c00180{bottom:65.280000pt;}
.y25_c00180{bottom:69.280000pt;}
.y2d_c00180{bottom:87.680000pt;}
.y1b_c00180{bottom:91.520000pt;}
.y9_c00180{bottom:91.546667pt;}
.y2c_c00180{bottom:91.584000pt;}
.y11_c00180{bottom:91.586667pt;}
.y6_c00180{bottom:91.613333pt;}
.yc_c00180{bottom:91.653333pt;}
.y14_c00180{bottom:91.680000pt;}
.y26_c00180{bottom:91.706667pt;}
.y2a_c00180{bottom:91.744000pt;}
.y23_c00180{bottom:98.880000pt;}
.y3_c00180{bottom:122.106667pt;}
.y21_c00180{bottom:128.480000pt;}
.y2b_c00180{bottom:131.424000pt;}
.y1f_c00180{bottom:158.720000pt;}
.y28_c00180{bottom:160.826667pt;}
.y27_c00180{bottom:160.986667pt;}
.y1d_c00180{bottom:188.960000pt;}
.y24_c00180{bottom:190.426667pt;}
.y1a_c00180{bottom:218.400000pt;}
.y22_c00180{bottom:220.000000pt;}
.y18_c00180{bottom:247.360000pt;}
.y20_c00180{bottom:250.240000pt;}
.y16_c00180{bottom:276.160000pt;}
.y1e_c00180{bottom:280.480000pt;}
.y13_c00180{bottom:305.280000pt;}
.y1c_c00180{bottom:309.920000pt;}
.y10_c00180{bottom:334.560000pt;}
.y19_c00180{bottom:338.946667pt;}
.ye_c00180{bottom:363.680000pt;}
.y17_c00180{bottom:367.746667pt;}
.yb_c00180{bottom:393.120000pt;}
.y15_c00180{bottom:396.960000pt;}
.y8_c00180{bottom:422.240000pt;}
.y12_c00180{bottom:426.146667pt;}
.y5_c00180{bottom:451.360000pt;}
.y2_c00180{bottom:451.680000pt;}
.yf_c00180{bottom:455.333333pt;}
.yd_c00180{bottom:484.773333pt;}
.ya_c00180{bottom:513.786667pt;}
.y7_c00180{bottom:542.973333pt;}
.y4_c00180{bottom:573.786667pt;}
.y1_c00180{bottom:640.706667pt;}
.hc_c00180{height:67.530937pt;}
.hb_c00180{height:69.140625pt;}
.h5_c00180{height:69.232812pt;}
.h7_c00180{height:69.890625pt;}
.ha_c00180{height:69.983812pt;}
.h6_c00180{height:86.578125pt;}
.h9_c00180{height:86.693562pt;}
.h8_c00180{height:87.328125pt;}
.h4_c00180{height:87.444562pt;}
.h1_c00180{height:116.437500pt;}
.h3_c00180{height:201.600000pt;}
.h2_c00180{height:268.320000pt;}
.h0_c00180{height:720.000000pt;}
.w2_c00180{width:127.520000pt;}
.w3_c00180{width:127.680000pt;}
.w1_c00180{width:531.520000pt;}
.w0_c00180{width:1280.000000pt;}
.x0_c00180{left:0.000000pt;}
.x3_c00180{left:3.744000pt;}
.x13_c00180{left:25.186667pt;}
.x12_c00180{left:36.066667pt;}
.x14_c00180{left:52.546667pt;}
.x19_c00180{left:53.666667pt;}
.x1c_c00180{left:61.306667pt;}
.x2_c00180{left:62.720000pt;}
.x1e_c00180{left:67.904000pt;}
.xf_c00180{left:74.813333pt;}
.xc_c00180{left:78.464000pt;}
.x1b_c00180{left:88.800000pt;}
.x7_c00180{left:91.106667pt;}
.xd_c00180{left:101.920000pt;}
.x15_c00180{left:109.506667pt;}
.xe_c00180{left:116.704000pt;}
.x4_c00180{left:214.946667pt;}
.x10_c00180{left:284.066667pt;}
.x16_c00180{left:379.613333pt;}
.x11_c00180{left:394.973333pt;}
.x1_c00180{left:452.800000pt;}
.x18_c00180{left:463.293333pt;}
.x1d_c00180{left:468.733333pt;}
.x5_c00180{left:498.973333pt;}
.x17_c00180{left:519.933333pt;}
.x6_c00180{left:594.240000pt;}
.x8_c00180{left:721.760000pt;}
.x9_c00180{left:849.440000pt;}
.x1a_c00180{left:910.720000pt;}
.xa_c00180{left:976.960000pt;}
.xb_c00180{left:1104.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c4a25048be388fdcc27201cc.woff')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.202637;font-style:normal;font-weight:normal;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_03447b1f90ca17817a47822d.woff')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.202637;font-style:normal;font-weight:normal;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_77752806e7a7c6f8a1a564a1.woff')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.161621;font-style:normal;font-weight:normal;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_12c7b522b2179ef816ad6f99.woff')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:1.161621;font-style: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;}
.ls3_c00181{letter-spacing:-0.288000px;}
.ls2_c00181{letter-spacing:-0.144000px;}
.ls4_c00181{letter-spacing:-0.036000px;}
.ls1_c00181{letter-spacing:0.000000px;}
.ls0_c00181{letter-spacing:256.008000px;}
.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:-24.624000px;}
.ws1_c00181{word-spacing:0.000000px;}
._2_c00181{margin-left:-4.612608px;}
._0_c00181{margin-left:-1.153152px;}
._3_c00181{width:1.008000px;}
._1_c00181{width:2.162160px;}
.fc3_c00181{color:transparent;}
.fc2_c00181{color:rgb(255,0,0);}
.fc1_c00181{color:rgb(0,0,0);}
.fc0_c00181{color:rgb(255,255,255);}
.fs2_c00181{font-size:108.000000px;}
.fs3_c00181{font-size:108.144000px;}
.fs1_c00181{font-size:144.000000px;}
.fs0_c00181{font-size:144.144000px;}
.y0_c00181{bottom:0.000000px;}
.y1e_c00181{bottom:48.240000px;}
.y21_c00181{bottom:70.992000px;}
.y1c_c00181{bottom:91.980000px;}
.y1f_c00181{bottom:102.990000px;}
.y14_c00181{bottom:103.035000px;}
.yc_c00181{bottom:103.065000px;}
.y11_c00181{bottom:103.140000px;}
.y1a_c00181{bottom:133.200000px;}
.y3_c00181{bottom:137.265000px;}
.y6_c00181{bottom:137.310000px;}
.y9_c00181{bottom:137.340000px;}
.y20_c00181{bottom:151.230000px;}
.y18_c00181{bottom:175.320000px;}
.y16_c00181{bottom:182.340000px;}
.y1d_c00181{bottom:195.045000px;}
.y1b_c00181{bottom:236.265000px;}
.y13_c00181{bottom:265.140000px;}
.y19_c00181{bottom:278.355000px;}
.y10_c00181{bottom:306.360000px;}
.y17_c00181{bottom:319.650000px;}
.ye_c00181{bottom:347.760000px;}
.y15_c00181{bottom:368.175000px;}
.yb_c00181{bottom:392.400000px;}
.y8_c00181{bottom:398.340000px;}
.y12_c00181{bottom:409.500000px;}
.y5_c00181{bottom:442.440000px;}
.yf_c00181{bottom:450.825000px;}
.y2_c00181{bottom:486.900000px;}
.yd_c00181{bottom:495.465000px;}
.ya_c00181{bottom:535.680000px;}
.y7_c00181{bottom:579.750000px;}
.y4_c00181{bottom:624.165000px;}
.y1_c00181{bottom:699.585000px;}
.h5_c00181{height:97.400391px;}
.h6_c00181{height:97.530258px;}
.h3_c00181{height:130.992188px;}
.h1_c00181{height:131.123180px;}
.h4_c00181{height:226.800000px;}
.h2_c00181{height:302.400000px;}
.h0_c00181{height:810.000000px;}
.w2_c00181{width:120.600000px;}
.w1_c00181{width:538.560000px;}
.w0_c00181{width:1440.000000px;}
.x0_c00181{left:0.000000px;}
.x3_c00181{left:4.350000px;}
.x10_c00181{left:17.850000px;}
.x13_c00181{left:42.690000px;}
.x1c_c00181{left:61.230000px;}
.x6_c00181{left:93.165000px;}
.x18_c00181{left:95.070000px;}
.x2_c00181{left:244.440000px;}
.x15_c00181{left:284.610000px;}
.x11_c00181{left:288.030000px;}
.x1_c00181{left:297.795000px;}
.x12_c00181{left:353.190000px;}
.x1f_c00181{left:354.780000px;}
.x16_c00181{left:459.210000px;}
.x1b_c00181{left:500.970000px;}
.x1a_c00181{left:524.415000px;}
.x1e_c00181{left:582.555000px;}
.x14_c00181{left:589.755000px;}
.x1d_c00181{left:607.395000px;}
.xf_c00181{left:621.255000px;}
.x4_c00181{left:738.435000px;}
.x17_c00181{left:748.695000px;}
.x5_c00181{left:783.000000px;}
.x8_c00181{left:903.600000px;}
.x7_c00181{left:931.245000px;}
.xa_c00181{left:1024.200000px;}
.x9_c00181{left:1051.890000px;}
.xc_c00181{left:1144.800000px;}
.xb_c00181{left:1172.490000px;}
.x19_c00181{left:1179.075000px;}
.xe_c00181{left:1265.400000px;}
.xd_c00181{left:1293.090000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls3_c00181{letter-spacing:-0.256000pt;}
.ls2_c00181{letter-spacing:-0.128000pt;}
.ls4_c00181{letter-spacing:-0.032000pt;}
.ls1_c00181{letter-spacing:0.000000pt;}
.ls0_c00181{letter-spacing:227.562667pt;}
.ws0_c00181{word-spacing:-21.888000pt;}
.ws1_c00181{word-spacing:0.000000pt;}
._2_c00181{margin-left:-4.100096pt;}
._0_c00181{margin-left:-1.025024pt;}
._3_c00181{width:0.896000pt;}
._1_c00181{width:1.921920pt;}
.fs2_c00181{font-size:96.000000pt;}
.fs3_c00181{font-size:96.128000pt;}
.fs1_c00181{font-size:128.000000pt;}
.fs0_c00181{font-size:128.128000pt;}
.y0_c00181{bottom:0.000000pt;}
.y1e_c00181{bottom:42.880000pt;}
.y21_c00181{bottom:63.104000pt;}
.y1c_c00181{bottom:81.760000pt;}
.y1f_c00181{bottom:91.546667pt;}
.y14_c00181{bottom:91.586667pt;}
.yc_c00181{bottom:91.613333pt;}
.y11_c00181{bottom:91.680000pt;}
.y1a_c00181{bottom:118.400000pt;}
.y3_c00181{bottom:122.013333pt;}
.y6_c00181{bottom:122.053333pt;}
.y9_c00181{bottom:122.080000pt;}
.y20_c00181{bottom:134.426667pt;}
.y18_c00181{bottom:155.840000pt;}
.y16_c00181{bottom:162.080000pt;}
.y1d_c00181{bottom:173.373333pt;}
.y1b_c00181{bottom:210.013333pt;}
.y13_c00181{bottom:235.680000pt;}
.y19_c00181{bottom:247.426667pt;}
.y10_c00181{bottom:272.320000pt;}
.y17_c00181{bottom:284.133333pt;}
.ye_c00181{bottom:309.120000pt;}
.y15_c00181{bottom:327.266667pt;}
.yb_c00181{bottom:348.800000pt;}
.y8_c00181{bottom:354.080000pt;}
.y12_c00181{bottom:364.000000pt;}
.y5_c00181{bottom:393.280000pt;}
.yf_c00181{bottom:400.733333pt;}
.y2_c00181{bottom:432.800000pt;}
.yd_c00181{bottom:440.413333pt;}
.ya_c00181{bottom:476.160000pt;}
.y7_c00181{bottom:515.333333pt;}
.y4_c00181{bottom:554.813333pt;}
.y1_c00181{bottom:621.853333pt;}
.h5_c00181{height:86.578125pt;}
.h6_c00181{height:86.693562pt;}
.h3_c00181{height:116.437500pt;}
.h1_c00181{height:116.553937pt;}
.h4_c00181{height:201.600000pt;}
.h2_c00181{height:268.800000pt;}
.h0_c00181{height:720.000000pt;}
.w2_c00181{width:107.200000pt;}
.w1_c00181{width:478.720000pt;}
.w0_c00181{width:1280.000000pt;}
.x0_c00181{left:0.000000pt;}
.x3_c00181{left:3.866667pt;}
.x10_c00181{left:15.866667pt;}
.x13_c00181{left:37.946667pt;}
.x1c_c00181{left:54.426667pt;}
.x6_c00181{left:82.813333pt;}
.x18_c00181{left:84.506667pt;}
.x2_c00181{left:217.280000pt;}
.x15_c00181{left:252.986667pt;}
.x11_c00181{left:256.026667pt;}
.x1_c00181{left:264.706667pt;}
.x12_c00181{left:313.946667pt;}
.x1f_c00181{left:315.360000pt;}
.x16_c00181{left:408.186667pt;}
.x1b_c00181{left:445.306667pt;}
.x1a_c00181{left:466.146667pt;}
.x1e_c00181{left:517.826667pt;}
.x14_c00181{left:524.226667pt;}
.x1d_c00181{left:539.906667pt;}
.xf_c00181{left:552.226667pt;}
.x4_c00181{left:656.386667pt;}
.x17_c00181{left:665.506667pt;}
.x5_c00181{left:696.000000pt;}
.x8_c00181{left:803.200000pt;}
.x7_c00181{left:827.773333pt;}
.xa_c00181{left:910.400000pt;}
.x9_c00181{left:935.013333pt;}
.xc_c00181{left:1017.600000pt;}
.xb_c00181{left:1042.213333pt;}
.x19_c00181{left:1048.066667pt;}
.xe_c00181{left:1124.800000pt;}
.xd_c00181{left:1149.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd86e40e6b47a796792ce440.woff')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.202637;font-style:normal;font-weight:normal;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_643d50f1e42a3218e6c0abbb.woff')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.202637;font-style:normal;font-weight:normal;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_76d6200fd5822df9faed7498.woff')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.161621;font-style:normal;font-weight:normal;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_218be4194108e15c0d389b55.woff')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.161621;font-style:normal;font-weight:normal;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_d70348107d747dae09901266.woff')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00182{letter-spacing:-0.238800px;}
.lsa_c00182{letter-spacing:-0.163800px;}
.ls8_c00182{letter-spacing:-0.097800px;}
.ls6_c00182{letter-spacing:-0.021600px;}
.ls4_c00182{letter-spacing:0.000000px;}
.ls7_c00182{letter-spacing:0.029520px;}
.ls1_c00182{letter-spacing:0.177000px;}
.ls2_c00182{letter-spacing:0.198720px;}
.ls5_c00182{letter-spacing:0.248400px;}
.lsb_c00182{letter-spacing:0.278400px;}
.ls0_c00182{letter-spacing:1.695168px;}
.ls3_c00182{letter-spacing:792.818208px;}
.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:-32.864832px;}
.ws1_c00182{word-spacing:-30.070800px;}
.ws2_c00182{word-spacing:-30.041280px;}
.ws4_c00182{word-spacing:-25.641792px;}
.ws3_c00182{word-spacing:-25.608960px;}
.ws5_c00182{word-spacing:0.000000px;}
._2_c00182{margin-left:-9.024240px;}
._3_c00182{margin-left:-4.756752px;}
._7_c00182{margin-left:-3.395136px;}
._0_c00182{margin-left:-1.209984px;}
._4_c00182{width:1.058976px;}
._1_c00182{width:2.131680px;}
._5_c00182{width:3.455328px;}
._8_c00182{width:496.650288px;}
._a_c00182{width:730.860480px;}
._9_c00182{width:743.820480px;}
._6_c00182{width:788.049024px;}
._c_c00182{width:816.791040px;}
._b_c00182{width:1077.431040px;}
.fc1_c00182{color:rgb(255,0,0);}
.fc2_c00182{color:rgb(0,0,0);}
.fc0_c00182{color:rgb(255,255,255);}
.fs3_c00182{font-size:112.320000px;}
.fs4_c00182{font-size:112.464000px;}
.fs2_c00182{font-size:131.760000px;}
.fs1_c00182{font-size:144.000000px;}
.fs0_c00182{font-size:144.144000px;}
.y0_c00182{bottom:0.000000px;}
.y1a_c00182{bottom:0.719970px;}
.y1e_c00182{bottom:29.628000px;}
.y18_c00182{bottom:45.180000px;}
.y1d_c00182{bottom:73.980000px;}
.y13_c00182{bottom:106.890000px;}
.yc_c00182{bottom:106.920000px;}
.y1b_c00182{bottom:106.920030px;}
.yf_c00182{bottom:106.995000px;}
.y6_c00182{bottom:107.025000px;}
.y9_c00182{bottom:107.070000px;}
.y1c_c00182{bottom:107.640000px;}
.y19_c00182{bottom:152.070000px;}
.y12_c00182{bottom:190.440000px;}
.y17_c00182{bottom:196.530000px;}
.y16_c00182{bottom:230.190000px;}
.y15_c00182{bottom:263.670000px;}
.ye_c00182{bottom:268.380000px;}
.y14_c00182{bottom:297.330000px;}
.yb_c00182{bottom:312.840000px;}
.y11_c00182{bottom:341.715000px;}
.y8_c00182{bottom:357.120000px;}
.y10_c00182{bottom:375.375000px;}
.y5_c00182{bottom:401.580000px;}
.yd_c00182{bottom:419.760000px;}
.ya_c00182{bottom:464.190000px;}
.y7_c00182{bottom:508.605000px;}
.y4_c00182{bottom:567.615000px;}
.y3_c00182{bottom:607.215000px;}
.y2_c00182{bottom:682.230000px;}
.y1_c00182{bottom:725.430000px;}
.h7_c00182{height:101.296406px;}
.h8_c00182{height:101.426273px;}
.h6_c00182{height:102.173906px;}
.h3_c00182{height:118.828477px;}
.h4_c00182{height:119.857852px;}
.h2_c00182{height:130.992188px;}
.h1_c00182{height:131.123180px;}
.hb_c00182{height:158.040000px;}
.h5_c00182{height:235.260000px;}
.ha_c00182{height:336.780000px;}
.h9_c00182{height:728.100000px;}
.h0_c00182{height:810.000000px;}
.w1_c00182{width:117.000000px;}
.w3_c00182{width:192.060000px;}
.w2_c00182{width:266.940000px;}
.w4_c00182{width:383.940000px;}
.w0_c00182{width:1440.000000px;}
.x0_c00182{left:0.000000px;}
.x5_c00182{left:10.830000px;}
.x3_c00182{left:44.820000px;}
.x1_c00182{left:65.700000px;}
.x13_c00182{left:171.435000px;}
.x4_c00182{left:204.660000px;}
.x6_c00182{left:258.870000px;}
.xb_c00182{left:266.610000px;}
.x7_c00182{left:321.660000px;}
.xf_c00182{left:351.615000px;}
.xc_c00182{left:354.315000px;}
.x10_c00182{left:360.615000px;}
.x17_c00182{left:405.075000px;}
.x8_c00182{left:501.195000px;}
.x9_c00182{left:588.600000px;}
.x12_c00182{left:609.375000px;}
.x18_c00182{left:615.630000px;}
.x11_c00182{left:635.835000px;}
.x2_c00182{left:640.905000px;}
.xa_c00182{left:720.000000px;}
.xd_c00182{left:780.660000px;}
.xe_c00182{left:1074.570000px;}
.x16_c00182{left:1076.190000px;}
.x14_c00182{left:1082.130000px;}
.x15_c00182{left:1118.130000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls9_c00182{letter-spacing:-0.212267pt;}
.lsa_c00182{letter-spacing:-0.145600pt;}
.ls8_c00182{letter-spacing:-0.086933pt;}
.ls6_c00182{letter-spacing:-0.019200pt;}
.ls4_c00182{letter-spacing:0.000000pt;}
.ls7_c00182{letter-spacing:0.026240pt;}
.ls1_c00182{letter-spacing:0.157333pt;}
.ls2_c00182{letter-spacing:0.176640pt;}
.ls5_c00182{letter-spacing:0.220800pt;}
.lsb_c00182{letter-spacing:0.247467pt;}
.ls0_c00182{letter-spacing:1.506816pt;}
.ls3_c00182{letter-spacing:704.727296pt;}
.ws0_c00182{word-spacing:-29.213184pt;}
.ws1_c00182{word-spacing:-26.729600pt;}
.ws2_c00182{word-spacing:-26.703360pt;}
.ws4_c00182{word-spacing:-22.792704pt;}
.ws3_c00182{word-spacing:-22.763520pt;}
.ws5_c00182{word-spacing:0.000000pt;}
._2_c00182{margin-left:-8.021547pt;}
._3_c00182{margin-left:-4.228224pt;}
._7_c00182{margin-left:-3.017899pt;}
._0_c00182{margin-left:-1.075541pt;}
._4_c00182{width:0.941312pt;}
._1_c00182{width:1.894827pt;}
._5_c00182{width:3.071403pt;}
._8_c00182{width:441.466923pt;}
._a_c00182{width:649.653760pt;}
._9_c00182{width:661.173760pt;}
._6_c00182{width:700.488021pt;}
._c_c00182{width:726.036480pt;}
._b_c00182{width:957.716480pt;}
.fs3_c00182{font-size:99.840000pt;}
.fs4_c00182{font-size:99.968000pt;}
.fs2_c00182{font-size:117.120000pt;}
.fs1_c00182{font-size:128.000000pt;}
.fs0_c00182{font-size:128.128000pt;}
.y0_c00182{bottom:0.000000pt;}
.y1a_c00182{bottom:0.639973pt;}
.y1e_c00182{bottom:26.336000pt;}
.y18_c00182{bottom:40.160000pt;}
.y1d_c00182{bottom:65.760000pt;}
.y13_c00182{bottom:95.013333pt;}
.yc_c00182{bottom:95.040000pt;}
.y1b_c00182{bottom:95.040027pt;}
.yf_c00182{bottom:95.106667pt;}
.y6_c00182{bottom:95.133333pt;}
.y9_c00182{bottom:95.173333pt;}
.y1c_c00182{bottom:95.680000pt;}
.y19_c00182{bottom:135.173333pt;}
.y12_c00182{bottom:169.280000pt;}
.y17_c00182{bottom:174.693333pt;}
.y16_c00182{bottom:204.613333pt;}
.y15_c00182{bottom:234.373333pt;}
.ye_c00182{bottom:238.560000pt;}
.y14_c00182{bottom:264.293333pt;}
.yb_c00182{bottom:278.080000pt;}
.y11_c00182{bottom:303.746667pt;}
.y8_c00182{bottom:317.440000pt;}
.y10_c00182{bottom:333.666667pt;}
.y5_c00182{bottom:356.960000pt;}
.yd_c00182{bottom:373.120000pt;}
.ya_c00182{bottom:412.613333pt;}
.y7_c00182{bottom:452.093333pt;}
.y4_c00182{bottom:504.546667pt;}
.y3_c00182{bottom:539.746667pt;}
.y2_c00182{bottom:606.426667pt;}
.y1_c00182{bottom:644.826667pt;}
.h7_c00182{height:90.041250pt;}
.h8_c00182{height:90.156687pt;}
.h6_c00182{height:90.821250pt;}
.h3_c00182{height:105.625312pt;}
.h4_c00182{height:106.540312pt;}
.h2_c00182{height:116.437500pt;}
.h1_c00182{height:116.553937pt;}
.hb_c00182{height:140.480000pt;}
.h5_c00182{height:209.120000pt;}
.ha_c00182{height:299.360000pt;}
.h9_c00182{height:647.200000pt;}
.h0_c00182{height:720.000000pt;}
.w1_c00182{width:104.000000pt;}
.w3_c00182{width:170.720000pt;}
.w2_c00182{width:237.280000pt;}
.w4_c00182{width:341.280000pt;}
.w0_c00182{width:1280.000000pt;}
.x0_c00182{left:0.000000pt;}
.x5_c00182{left:9.626667pt;}
.x3_c00182{left:39.840000pt;}
.x1_c00182{left:58.400000pt;}
.x13_c00182{left:152.386667pt;}
.x4_c00182{left:181.920000pt;}
.x6_c00182{left:230.106667pt;}
.xb_c00182{left:236.986667pt;}
.x7_c00182{left:285.920000pt;}
.xf_c00182{left:312.546667pt;}
.xc_c00182{left:314.946667pt;}
.x10_c00182{left:320.546667pt;}
.x17_c00182{left:360.066667pt;}
.x8_c00182{left:445.506667pt;}
.x9_c00182{left:523.200000pt;}
.x12_c00182{left:541.666667pt;}
.x18_c00182{left:547.226667pt;}
.x11_c00182{left:565.186667pt;}
.x2_c00182{left:569.693333pt;}
.xa_c00182{left:640.000000pt;}
.xd_c00182{left:693.920000pt;}
.xe_c00182{left:955.173333pt;}
.x16_c00182{left:956.613333pt;}
.x14_c00182{left:961.893333pt;}
.x15_c00182{left:993.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b84cec0a436398274a155f8d.woff')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.202637;font-style:normal;font-weight:normal;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_0d607a97f96894da4106247d.woff')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.202637;font-style:normal;font-weight:normal;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_d0443039fe4ae9d51fad1e3f.woff')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.161621;font-style:normal;font-weight:normal;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_406ae28843b673458df73763.woff')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.161621;font-style: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;}
.ls5_c00183{letter-spacing:-0.144000px;}
.ls3_c00183{letter-spacing:0.000000px;}
.ls4_c00183{letter-spacing:0.248400px;}
.ls1_c00183{letter-spacing:0.288000px;}
.ls2_c00183{letter-spacing:1.008000px;}
.ls0_c00183{letter-spacing:1.695168px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00183{word-spacing:-32.864832px;}
.ws1_c00183{word-spacing:0.000000px;}
._2_c00183{margin-left:-9.024240px;}
._3_c00183{margin-left:-4.756752px;}
._0_c00183{margin-left:-1.209984px;}
._4_c00183{width:1.058976px;}
._1_c00183{width:2.131680px;}
._5_c00183{width:3.455328px;}
.fc1_c00183{color:rgb(255,0,0);}
.fc2_c00183{color:rgb(0,0,0);}
.fc0_c00183{color:rgb(255,255,255);}
.fs1_c00183{font-size:144.000000px;}
.fs0_c00183{font-size:144.144000px;}
.y0_c00183{bottom:0.000000px;}
.yd_c00183{bottom:156.630000px;}
.yc_c00183{bottom:199.830000px;}
.yb_c00183{bottom:243.210000px;}
.ya_c00183{bottom:286.455000px;}
.y9_c00183{bottom:329.655000px;}
.y8_c00183{bottom:372.675000px;}
.y7_c00183{bottom:415.875000px;}
.y6_c00183{bottom:459.255000px;}
.y5_c00183{bottom:502.485000px;}
.y4_c00183{bottom:545.505000px;}
.y3_c00183{bottom:588.705000px;}
.y2_c00183{bottom:682.230000px;}
.y1_c00183{bottom:725.430000px;}
.h3_c00183{height:129.867188px;}
.h4_c00183{height:129.997055px;}
.h2_c00183{height:130.992188px;}
.h1_c00183{height:131.123180px;}
.h0_c00183{height:810.000000px;}
.w0_c00183{width:1440.000000px;}
.x0_c00183{left:0.000000px;}
.x3_c00183{left:44.820000px;}
.x1_c00183{left:65.700000px;}
.x2_c00183{left:640.905000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls5_c00183{letter-spacing:-0.128000pt;}
.ls3_c00183{letter-spacing:0.000000pt;}
.ls4_c00183{letter-spacing:0.220800pt;}
.ls1_c00183{letter-spacing:0.256000pt;}
.ls2_c00183{letter-spacing:0.896000pt;}
.ls0_c00183{letter-spacing:1.506816pt;}
.ws0_c00183{word-spacing:-29.213184pt;}
.ws1_c00183{word-spacing:0.000000pt;}
._2_c00183{margin-left:-8.021547pt;}
._3_c00183{margin-left:-4.228224pt;}
._0_c00183{margin-left:-1.075541pt;}
._4_c00183{width:0.941312pt;}
._1_c00183{width:1.894827pt;}
._5_c00183{width:3.071403pt;}
.fs1_c00183{font-size:128.000000pt;}
.fs0_c00183{font-size:128.128000pt;}
.y0_c00183{bottom:0.000000pt;}
.yd_c00183{bottom:139.226667pt;}
.yc_c00183{bottom:177.626667pt;}
.yb_c00183{bottom:216.186667pt;}
.ya_c00183{bottom:254.626667pt;}
.y9_c00183{bottom:293.026667pt;}
.y8_c00183{bottom:331.266667pt;}
.y7_c00183{bottom:369.666667pt;}
.y6_c00183{bottom:408.226667pt;}
.y5_c00183{bottom:446.653333pt;}
.y4_c00183{bottom:484.893333pt;}
.y3_c00183{bottom:523.293333pt;}
.y2_c00183{bottom:606.426667pt;}
.y1_c00183{bottom:644.826667pt;}
.h3_c00183{height:115.437500pt;}
.h4_c00183{height:115.552937pt;}
.h2_c00183{height:116.437500pt;}
.h1_c00183{height:116.553937pt;}
.h0_c00183{height:720.000000pt;}
.w0_c00183{width:1280.000000pt;}
.x0_c00183{left:0.000000pt;}
.x3_c00183{left:39.840000pt;}
.x1_c00183{left:58.400000pt;}
.x2_c00183{left:569.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_101012134c8b13b6348264c5.woff')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.202637;font-style:normal;font-weight:normal;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_e8e4db9e6f8264df389e74ab.woff')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.202637;font-style:normal;font-weight:normal;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_861a3cb52cd08e40c1878fbd.woff')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.161621;font-style:normal;font-weight:normal;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_e117c9b6d0dc114bedf452cb.woff')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:0.834473;font-style: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;}
.ls1_c00184{letter-spacing:0.000000px;}
.ls0_c00184{letter-spacing:60.739200px;}
.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:-32.864832px;}
.ws1_c00184{word-spacing:-32.832000px;}
.ws2_c00184{word-spacing:0.000000px;}
._3_c00184{margin-left:-5.210640px;}
._0_c00184{margin-left:-3.315312px;}
._2_c00184{margin-left:-1.209984px;}
._1_c00184{width:1.860768px;}
.fc2_c00184{color:rgb(144,194,38);}
.fc3_c00184{color:rgb(64,64,64);}
.fc1_c00184{color:rgb(0,0,0);}
.fc0_c00184{color:rgb(255,255,255);}
.fs1_c00184{font-size:115.200000px;}
.fs2_c00184{font-size:144.000000px;}
.fs0_c00184{font-size:144.144000px;}
.y0_c00184{bottom:0.000000px;}
.y9_c00184{bottom:332.970000px;}
.y8_c00184{bottom:376.200000px;}
.y7_c00184{bottom:434.340000px;}
.y6_c00184{bottom:492.660000px;}
.y5_c00184{bottom:550.830000px;}
.y4_c00184{bottom:608.970000px;}
.y3_c00184{bottom:667.290000px;}
.y1_c00184{bottom:725.430000px;}
.y2_c00184{bottom:725.610000px;}
.h2_c00184{height:129.997055px;}
.h3_c00184{height:130.992188px;}
.h1_c00184{height:131.123180px;}
.h0_c00184{height:810.000000px;}
.w0_c00184{width:1440.000000px;}
.x0_c00184{left:0.000000px;}
.x2_c00184{left:44.820000px;}
.x1_c00184{left:463.575000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls1_c00184{letter-spacing:0.000000pt;}
.ls0_c00184{letter-spacing:53.990400pt;}
.ws0_c00184{word-spacing:-29.213184pt;}
.ws1_c00184{word-spacing:-29.184000pt;}
.ws2_c00184{word-spacing:0.000000pt;}
._3_c00184{margin-left:-4.631680pt;}
._0_c00184{margin-left:-2.946944pt;}
._2_c00184{margin-left:-1.075541pt;}
._1_c00184{width:1.654016pt;}
.fs1_c00184{font-size:102.400000pt;}
.fs2_c00184{font-size:128.000000pt;}
.fs0_c00184{font-size:128.128000pt;}
.y0_c00184{bottom:0.000000pt;}
.y9_c00184{bottom:295.973333pt;}
.y8_c00184{bottom:334.400000pt;}
.y7_c00184{bottom:386.080000pt;}
.y6_c00184{bottom:437.920000pt;}
.y5_c00184{bottom:489.626667pt;}
.y4_c00184{bottom:541.306667pt;}
.y3_c00184{bottom:593.146667pt;}
.y1_c00184{bottom:644.826667pt;}
.y2_c00184{bottom:644.986667pt;}
.h2_c00184{height:115.552937pt;}
.h3_c00184{height:116.437500pt;}
.h1_c00184{height:116.553937pt;}
.h0_c00184{height:720.000000pt;}
.w0_c00184{width:1280.000000pt;}
.x0_c00184{left:0.000000pt;}
.x2_c00184{left:39.840000pt;}
.x1_c00184{left:412.066667pt;}
}





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

.ir_c00185:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00185;src:url('chunks/assets/font_a715de9431b6200ebbb785e4.woff')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.161621;font-style:normal;font-weight:normal;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_f2bd2cf3b9f78e05b993c6c0.woff')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.161621;font-style:normal;font-weight:normal;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_63d819006bb7e1a7803ba686.woff')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.172852;font-style: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;}
.ls5_c00185{letter-spacing:0.000000px;}
.ls1_c00185{letter-spacing:0.029520px;}
.ls3_c00185{letter-spacing:0.165888px;}
.ls0_c00185{letter-spacing:0.198720px;}
.ls2_c00185{letter-spacing:0.885888px;}
.ls4_c00185{letter-spacing:1.605888px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00185{word-spacing:-30.074112px;}
.ws0_c00185{word-spacing:-30.070800px;}
.ws1_c00185{word-spacing:-30.041280px;}
.ws3_c00185{word-spacing:0.000000px;}
._6_c00185{margin-left:-12.135168px;}
._3_c00185{margin-left:-8.094240px;}
._4_c00185{margin-left:-6.360000px;}
._5_c00185{margin-left:-2.474064px;}
._0_c00185{margin-left:-1.279296px;}
._2_c00185{width:1.516368px;}
._1_c00185{width:2.969040px;}
.fc0_c00185{color:rgb(0,0,0);}
.fs1_c00185{font-size:131.760000px;}
.fs2_c00185{font-size:131.904000px;}
.fs3_c00185{font-size:167.760000px;}
.fs0_c00185{font-size:319.824000px;}
.y0_c00185{bottom:0.000000px;}
.y7_c00185{bottom:176.070000px;}
.y6_c00185{bottom:232.770000px;}
.y5_c00185{bottom:268.410000px;}
.y4_c00185{bottom:319.035000px;}
.y3_c00185{bottom:369.795000px;}
.y2_c00185{bottom:420.375000px;}
.y1_c00185{bottom:485.025000px;}
.h2_c00185{height:118.828477px;}
.h3_c00185{height:118.958344px;}
.h4_c00185{height:166.858945px;}
.h1_c00185{height:288.435023px;}
.h0_c00185{height:810.000000px;}
.w0_c00185{width:1440.000000px;}
.x0_c00185{left:0.000000px;}
.x2_c00185{left:67.320000px;}
.x1_c00185{left:198.435000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls5_c00185{letter-spacing:0.000000pt;}
.ls1_c00185{letter-spacing:0.026240pt;}
.ls3_c00185{letter-spacing:0.147456pt;}
.ls0_c00185{letter-spacing:0.176640pt;}
.ls2_c00185{letter-spacing:0.787456pt;}
.ls4_c00185{letter-spacing:1.427456pt;}
.ws2_c00185{word-spacing:-26.732544pt;}
.ws0_c00185{word-spacing:-26.729600pt;}
.ws1_c00185{word-spacing:-26.703360pt;}
.ws3_c00185{word-spacing:0.000000pt;}
._6_c00185{margin-left:-10.786816pt;}
._3_c00185{margin-left:-7.194880pt;}
._4_c00185{margin-left:-5.653333pt;}
._5_c00185{margin-left:-2.199168pt;}
._0_c00185{margin-left:-1.137152pt;}
._2_c00185{width:1.347883pt;}
._1_c00185{width:2.639147pt;}
.fs1_c00185{font-size:117.120000pt;}
.fs2_c00185{font-size:117.248000pt;}
.fs3_c00185{font-size:149.120000pt;}
.fs0_c00185{font-size:284.288000pt;}
.y0_c00185{bottom:0.000000pt;}
.y7_c00185{bottom:156.506667pt;}
.y6_c00185{bottom:206.906667pt;}
.y5_c00185{bottom:238.586667pt;}
.y4_c00185{bottom:283.586667pt;}
.y3_c00185{bottom:328.706667pt;}
.y2_c00185{bottom:373.666667pt;}
.y1_c00185{bottom:431.133333pt;}
.h2_c00185{height:105.625312pt;}
.h3_c00185{height:105.740750pt;}
.h4_c00185{height:148.319063pt;}
.h1_c00185{height:256.386687pt;}
.h0_c00185{height:720.000000pt;}
.w0_c00185{width:1280.000000pt;}
.x0_c00185{left:0.000000pt;}
.x2_c00185{left:59.840000pt;}
.x1_c00185{left:176.386667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66fd64437c96683f84150a58.woff')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00186;src:url('chunks/assets/font_a64fb5c28ee20d15c33cd6e8.woff')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.088379;font-style:normal;font-weight:normal;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_37d5a733317b19af32663e7f.woff')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:0.921387;font-style: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;}
.ls4_c00186{letter-spacing:-0.216000px;}
.ls3_c00186{letter-spacing:0.000000px;}
.ls2_c00186{letter-spacing:0.108000px;}
.ls0_c00186{letter-spacing:0.216000px;}
.ls1_c00186{letter-spacing:0.486000px;}
.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:-27.108000px;}
.ws3_c00186{word-spacing:-1.080000px;}
.ws1_c00186{word-spacing:0.000000px;}
.ws4_c00186{word-spacing:0.216000px;}
.ws2_c00186{word-spacing:0.324000px;}
._0_c00186{margin-left:-8.596800px;}
._1_c00186{margin-left:-6.404400px;}
._3_c00186{margin-left:-3.348000px;}
._2_c00186{margin-left:-1.404000px;}
._4_c00186{width:1.188000px;}
.fc1_c00186{color:rgb(255,255,255);}
.fc0_c00186{color:rgb(105,36,12);}
.fs0_c00186{font-size:108.000000px;}
.fs1_c00186{font-size:167.760000px;}
.y0_c00186{bottom:0.000000px;}
.y2_c00186{bottom:141.651000px;}
.y1_c00186{bottom:188.820000px;}
.y3_c00186{bottom:455.688600px;}
.h1_c00186{height:94.289062px;}
.h2_c00186{height:117.710508px;}
.h0_c00186{height:810.000000px;}
.w0_c00186{width:1080.000000px;}
.x0_c00186{left:0.000000px;}
.x2_c00186{left:117.833100px;}
.x1_c00186{left:202.650000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls4_c00186{letter-spacing:-0.192000pt;}
.ls3_c00186{letter-spacing:0.000000pt;}
.ls2_c00186{letter-spacing:0.096000pt;}
.ls0_c00186{letter-spacing:0.192000pt;}
.ls1_c00186{letter-spacing:0.432000pt;}
.ws0_c00186{word-spacing:-24.096000pt;}
.ws3_c00186{word-spacing:-0.960000pt;}
.ws1_c00186{word-spacing:0.000000pt;}
.ws4_c00186{word-spacing:0.192000pt;}
.ws2_c00186{word-spacing:0.288000pt;}
._0_c00186{margin-left:-7.641600pt;}
._1_c00186{margin-left:-5.692800pt;}
._3_c00186{margin-left:-2.976000pt;}
._2_c00186{margin-left:-1.248000pt;}
._4_c00186{width:1.056000pt;}
.fs0_c00186{font-size:96.000000pt;}
.fs1_c00186{font-size:149.120000pt;}
.y0_c00186{bottom:0.000000pt;}
.y2_c00186{bottom:125.912000pt;}
.y1_c00186{bottom:167.840000pt;}
.y3_c00186{bottom:405.056533pt;}
.h1_c00186{height:83.812500pt;}
.h2_c00186{height:104.631562pt;}
.h0_c00186{height:720.000000pt;}
.w0_c00186{width:960.000000pt;}
.x0_c00186{left:0.000000pt;}
.x2_c00186{left:104.740533pt;}
.x1_c00186{left:180.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00187{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
}
.y0_c00187{bottom:0.000000px;}
.h0_c00187{height:810.000000px;}
.w0_c00187{width:1080.000000px;}
.x0_c00187{left:0.000000px;}
@media print{
.y0_c00187{bottom:0.000000pt;}
.h0_c00187{height:720.000000pt;}
.w0_c00187{width:960.000000pt;}
.x0_c00187{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_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_81d084bae0dc26c1bf9ececd.woff')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:0.722656;font-style:normal;font-weight:normal;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_6c9a1fcdeb153b2260b75d4c.woff')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:0.921387;font-style:normal;font-weight:normal;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_75b3ba2ee8daf8c623152940.woff')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00188;src:url('chunks/assets/font_99984c58e6bbfbdb238273b5.woff')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.088379;font-style:normal;font-weight:normal;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_433773a47e5256ae29c2b11b.woff')format("woff");}.ff5_c00188{font-family:ff5_c00188;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls5_c00188{letter-spacing:-1.923840px;}
.ls3_c00188{letter-spacing:-0.240480px;}
.ls4_c00188{letter-spacing:0.000000px;}
.ls2_c00188{letter-spacing:0.216432px;}
.ls1_c00188{letter-spacing:0.240480px;}
.ls0_c00188{letter-spacing:5.221440px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00188{word-spacing:-120.240000px;}
.ws0_c00188{word-spacing:-30.300480px;}
.ws4_c00188{word-spacing:-2.164320px;}
.ws2_c00188{word-spacing:0.000000px;}
.ws3_c00188{word-spacing:0.480960px;}
.ws5_c00188{word-spacing:1.202400px;}
.ws6_c00188{word-spacing:1.923840px;}
._1_c00188{margin-left:-2.428848px;}
._2_c00188{margin-left:-1.238472px;}
._0_c00188{width:1.142280px;}
._4_c00188{width:2.392776px;}
._5_c00188{width:3.727440px;}
._3_c00188{width:6.408792px;}
.fc2_c00188{color:rgb(255,255,255);}
.fc1_c00188{color:rgb(0,0,0);}
.fc0_c00188{color:rgb(158,54,17);}
.fs2_c00188{font-size:66.240000px;}
.fs0_c00188{font-size:102.240000px;}
.fs1_c00188{font-size:120.240000px;}
.y0_c00188{bottom:0.000000px;}
.y7_c00188{bottom:41.437350px;}
.y6_c00188{bottom:276.649380px;}
.y5_c00188{bottom:327.060000px;}
.y4_c00188{bottom:377.449380px;}
.y3_c00188{bottom:427.860000px;}
.y2_c00188{bottom:478.249380px;}
.y1_c00188{bottom:528.660000px;}
.h4_c00188{height:46.477969px;}
.h1_c00188{height:84.367617px;}
.h3_c00188{height:87.009609px;}
.h2_c00188{height:104.975156px;}
.h0_c00188{height:810.000000px;}
.w0_c00188{width:1080.000000px;}
.x0_c00188{left:0.000000px;}
.x1_c00188{left:91.800000px;}
.x2_c00188{left:121.846860px;}
.x3_c00188{left:1026.288600px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls5_c00188{letter-spacing:-1.710080pt;}
.ls3_c00188{letter-spacing:-0.213760pt;}
.ls4_c00188{letter-spacing:0.000000pt;}
.ls2_c00188{letter-spacing:0.192384pt;}
.ls1_c00188{letter-spacing:0.213760pt;}
.ls0_c00188{letter-spacing:4.641280pt;}
.ws1_c00188{word-spacing:-106.880000pt;}
.ws0_c00188{word-spacing:-26.933760pt;}
.ws4_c00188{word-spacing:-1.923840pt;}
.ws2_c00188{word-spacing:0.000000pt;}
.ws3_c00188{word-spacing:0.427520pt;}
.ws5_c00188{word-spacing:1.068800pt;}
.ws6_c00188{word-spacing:1.710080pt;}
._1_c00188{margin-left:-2.158976pt;}
._2_c00188{margin-left:-1.100864pt;}
._0_c00188{width:1.015360pt;}
._4_c00188{width:2.126912pt;}
._5_c00188{width:3.313280pt;}
._3_c00188{width:5.696704pt;}
.fs2_c00188{font-size:58.880000pt;}
.fs0_c00188{font-size:90.880000pt;}
.fs1_c00188{font-size:106.880000pt;}
.y0_c00188{bottom:0.000000pt;}
.y7_c00188{bottom:36.833200pt;}
.y6_c00188{bottom:245.910560pt;}
.y5_c00188{bottom:290.720000pt;}
.y4_c00188{bottom:335.510560pt;}
.y3_c00188{bottom:380.320000pt;}
.y2_c00188{bottom:425.110560pt;}
.y1_c00188{bottom:469.920000pt;}
.h4_c00188{height:41.313750pt;}
.h1_c00188{height:74.993437pt;}
.h3_c00188{height:77.341875pt;}
.h2_c00188{height:93.311250pt;}
.h0_c00188{height:720.000000pt;}
.w0_c00188{width:960.000000pt;}
.x0_c00188{left:0.000000pt;}
.x1_c00188{left:81.600000pt;}
.x2_c00188{left:108.308320pt;}
.x3_c00188{left:912.256533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_86ae68033d63e5ecc934deef.woff')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:0.921387;font-style:normal;font-weight:normal;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_f2faf487dd2824645803e52e.woff')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:0.942383;font-style:normal;font-weight:normal;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_055649219a9298433233a7ed.woff')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_ef53bffb66e0d63902c70d6c.woff')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:1.088379;font-style: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;}
.ls5_c00189{letter-spacing:-0.324000px;}
.ls6_c00189{letter-spacing:-0.289440px;}
.ls7_c00189{letter-spacing:-0.241200px;}
.ls3_c00189{letter-spacing:-0.108000px;}
.ls4_c00189{letter-spacing:0.000000px;}
.ls1_c00189{letter-spacing:0.216000px;}
.ls2_c00189{letter-spacing:0.324000px;}
.ls0_c00189{letter-spacing:0.361440px;}
.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:-108.000000px;}
.ws5_c00189{word-spacing:-48.240000px;}
.ws3_c00189{word-spacing:-27.000000px;}
.ws0_c00189{word-spacing:-26.892000px;}
.ws2_c00189{word-spacing:-26.676000px;}
.ws4_c00189{word-spacing:-11.770560px;}
.wsf_c00189{word-spacing:-1.013040px;}
.ws7_c00189{word-spacing:-0.324000px;}
.wse_c00189{word-spacing:-0.216000px;}
.ws6_c00189{word-spacing:0.000000px;}
.ws8_c00189{word-spacing:0.108000px;}
.wsd_c00189{word-spacing:0.648000px;}
.ws9_c00189{word-spacing:0.864000px;}
.wsc_c00189{word-spacing:1.188000px;}
.wsa_c00189{word-spacing:1.620000px;}
.wsb_c00189{word-spacing:2.160000px;}
._6_c00189{margin-left:-14.850000px;}
._4_c00189{margin-left:-5.410800px;}
._5_c00189{margin-left:-2.818800px;}
._0_c00189{margin-left:-1.004400px;}
._2_c00189{width:1.512000px;}
._7_c00189{width:2.797200px;}
._3_c00189{width:3.909600px;}
._1_c00189{width:5.065200px;}
.fc1_c00189{color:rgb(255,255,255);}
.fc0_c00189{color:rgb(105,36,12);}
.fs2_c00189{font-size:48.240000px;}
.fs0_c00189{font-size:84.240000px;}
.fs1_c00189{font-size:108.000000px;}
.fs3_c00189{font-size:167.760000px;}
.y0_c00189{bottom:0.000000px;}
.y5_c00189{bottom:103.860000px;}
.y4_c00189{bottom:126.540000px;}
.y3_c00189{bottom:149.220000px;}
.y2_c00189{bottom:171.900000px;}
.y1_c00189{bottom:194.580000px;}
.y6_c00189{bottom:455.688600px;}
.h1_c00189{height:78.152344px;}
.h2_c00189{height:117.710508px;}
.h0_c00189{height:810.000000px;}
.w0_c00189{width:1080.000000px;}
.x0_c00189{left:0.000000px;}
.x4_c00189{left:94.722150px;}
.x1_c00189{left:111.471150px;}
.x2_c00189{left:113.811150px;}
.x5_c00189{left:118.509150px;}
.x3_c00189{left:147.291150px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls5_c00189{letter-spacing:-0.288000pt;}
.ls6_c00189{letter-spacing:-0.257280pt;}
.ls7_c00189{letter-spacing:-0.214400pt;}
.ls3_c00189{letter-spacing:-0.096000pt;}
.ls4_c00189{letter-spacing:0.000000pt;}
.ls1_c00189{letter-spacing:0.192000pt;}
.ls2_c00189{letter-spacing:0.288000pt;}
.ls0_c00189{letter-spacing:0.321280pt;}
.ws1_c00189{word-spacing:-96.000000pt;}
.ws5_c00189{word-spacing:-42.880000pt;}
.ws3_c00189{word-spacing:-24.000000pt;}
.ws0_c00189{word-spacing:-23.904000pt;}
.ws2_c00189{word-spacing:-23.712000pt;}
.ws4_c00189{word-spacing:-10.462720pt;}
.wsf_c00189{word-spacing:-0.900480pt;}
.ws7_c00189{word-spacing:-0.288000pt;}
.wse_c00189{word-spacing:-0.192000pt;}
.ws6_c00189{word-spacing:0.000000pt;}
.ws8_c00189{word-spacing:0.096000pt;}
.wsd_c00189{word-spacing:0.576000pt;}
.ws9_c00189{word-spacing:0.768000pt;}
.wsc_c00189{word-spacing:1.056000pt;}
.wsa_c00189{word-spacing:1.440000pt;}
.wsb_c00189{word-spacing:1.920000pt;}
._6_c00189{margin-left:-13.200000pt;}
._4_c00189{margin-left:-4.809600pt;}
._5_c00189{margin-left:-2.505600pt;}
._0_c00189{margin-left:-0.892800pt;}
._2_c00189{width:1.344000pt;}
._7_c00189{width:2.486400pt;}
._3_c00189{width:3.475200pt;}
._1_c00189{width:4.502400pt;}
.fs2_c00189{font-size:42.880000pt;}
.fs0_c00189{font-size:74.880000pt;}
.fs1_c00189{font-size:96.000000pt;}
.fs3_c00189{font-size:149.120000pt;}
.y0_c00189{bottom:0.000000pt;}
.y5_c00189{bottom:92.320000pt;}
.y4_c00189{bottom:112.480000pt;}
.y3_c00189{bottom:132.640000pt;}
.y2_c00189{bottom:152.800000pt;}
.y1_c00189{bottom:172.960000pt;}
.y6_c00189{bottom:405.056533pt;}
.h1_c00189{height:69.468750pt;}
.h2_c00189{height:104.631562pt;}
.h0_c00189{height:720.000000pt;}
.w0_c00189{width:960.000000pt;}
.x0_c00189{left:0.000000pt;}
.x4_c00189{left:84.197467pt;}
.x1_c00189{left:99.085467pt;}
.x2_c00189{left:101.165467pt;}
.x5_c00189{left:105.341467pt;}
.x3_c00189{left:130.925467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ff4cfe06fab51a97d903164.woff')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:0.722656;font-style:normal;font-weight:normal;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_7a0b82e0ea3fdfb23546f429.woff')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00190;src:url('chunks/assets/font_7a135f07b7590831b09bf0dc.woff')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.088379;font-style: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;}
.lsa_c00190{letter-spacing:-7.756560px;}
.lsd_c00190{letter-spacing:-1.532160px;}
.lsf_c00190{letter-spacing:-0.529920px;}
.ls9_c00190{letter-spacing:-0.191520px;}
.lsb_c00190{letter-spacing:-0.095760px;}
.lsc_c00190{letter-spacing:0.000000px;}
.ls2_c00190{letter-spacing:0.095760px;}
.lse_c00190{letter-spacing:0.132480px;}
.ls6_c00190{letter-spacing:0.198720px;}
.ls3_c00190{letter-spacing:0.287280px;}
.ls8_c00190{letter-spacing:0.331200px;}
.ls7_c00190{letter-spacing:13.049280px;}
.ls1_c00190{letter-spacing:23.652720px;}
.ls4_c00190{letter-spacing:24.035760px;}
.ls0_c00190{letter-spacing:49.137120px;}
.ls5_c00190{letter-spacing:60.678720px;}
.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:-23.844240px;}
.ws1_c00190{word-spacing:-23.748480px;}
.ws3_c00190{word-spacing:-16.692480px;}
.ws2_c00190{word-spacing:-2.417760px;}
.wse_c00190{word-spacing:-2.318400px;}
.ws13_c00190{word-spacing:-1.656000px;}
.ws6_c00190{word-spacing:-0.957600px;}
.ws10_c00190{word-spacing:-0.861120px;}
.wsa_c00190{word-spacing:-0.670320px;}
.wsf_c00190{word-spacing:-0.331200px;}
.ws11_c00190{word-spacing:-0.132480px;}
.ws7_c00190{word-spacing:-0.095760px;}
.ws4_c00190{word-spacing:0.000000px;}
.wsb_c00190{word-spacing:0.095760px;}
.ws8_c00190{word-spacing:0.478800px;}
.ws12_c00190{word-spacing:0.529920px;}
.wsc_c00190{word-spacing:0.766080px;}
.ws5_c00190{word-spacing:1.436400px;}
.wsd_c00190{word-spacing:2.106720px;}
.ws9_c00190{word-spacing:7.756560px;}
._0_c00190{margin-left:-4.855032px;}
._2_c00190{margin-left:-3.380328px;}
._3_c00190{margin-left:-1.216152px;}
._4_c00190{width:1.034208px;}
._1_c00190{width:2.240784px;}
._5_c00190{width:3.677184px;}
.fc2_c00190{color:rgb(0,0,0);}
.fc1_c00190{color:rgb(255,0,0);}
.fc0_c00190{color:rgb(158,54,17);}
.fs4_c00190{font-size:56.160000px;}
.fs3_c00190{font-size:66.240000px;}
.fs0_c00190{font-size:81.360000px;}
.fs1_c00190{font-size:95.760000px;}
.fs2_c00190{font-size:108.000000px;}
.y0_c00190{bottom:0.000000px;}
.ya_c00190{bottom:107.904240px;}
.y9_c00190{bottom:136.704060px;}
.y8_c00190{bottom:165.503880px;}
.y7_c00190{bottom:194.303700px;}
.y6_c00190{bottom:223.823700px;}
.y5_c00190{bottom:273.503910px;}
.ye_c00190{bottom:280.697940px;}
.yd_c00190{bottom:300.503700px;}
.y4_c00190{bottom:302.303730px;}
.y3_c00190{bottom:331.103550px;}
.yc_c00190{bottom:338.303850px;}
.y2_c00190{bottom:377.903880px;}
.y1_c00190{bottom:406.703700px;}
.yb_c00190{bottom:413.903850px;}
.h3_c00190{height:57.830625px;}
.h1_c00190{height:83.602969px;}
.h2_c00190{height:94.289062px;}
.h0_c00190{height:810.000000px;}
.w0_c00190{width:1080.000000px;}
.x0_c00190{left:0.000000px;}
.x1_c00190{left:85.050000px;}
.x2_c00190{left:106.650000px;}
.x3_c00190{left:557.550000px;}
.x4_c00190{left:579.199680px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.lsa_c00190{letter-spacing:-6.894720pt;}
.lsd_c00190{letter-spacing:-1.361920pt;}
.lsf_c00190{letter-spacing:-0.471040pt;}
.ls9_c00190{letter-spacing:-0.170240pt;}
.lsb_c00190{letter-spacing:-0.085120pt;}
.lsc_c00190{letter-spacing:0.000000pt;}
.ls2_c00190{letter-spacing:0.085120pt;}
.lse_c00190{letter-spacing:0.117760pt;}
.ls6_c00190{letter-spacing:0.176640pt;}
.ls3_c00190{letter-spacing:0.255360pt;}
.ls8_c00190{letter-spacing:0.294400pt;}
.ls7_c00190{letter-spacing:11.599360pt;}
.ls1_c00190{letter-spacing:21.024640pt;}
.ls4_c00190{letter-spacing:21.365120pt;}
.ls0_c00190{letter-spacing:43.677440pt;}
.ls5_c00190{letter-spacing:53.936640pt;}
.ws0_c00190{word-spacing:-21.194880pt;}
.ws1_c00190{word-spacing:-21.109760pt;}
.ws3_c00190{word-spacing:-14.837760pt;}
.ws2_c00190{word-spacing:-2.149120pt;}
.wse_c00190{word-spacing:-2.060800pt;}
.ws13_c00190{word-spacing:-1.472000pt;}
.ws6_c00190{word-spacing:-0.851200pt;}
.ws10_c00190{word-spacing:-0.765440pt;}
.wsa_c00190{word-spacing:-0.595840pt;}
.wsf_c00190{word-spacing:-0.294400pt;}
.ws11_c00190{word-spacing:-0.117760pt;}
.ws7_c00190{word-spacing:-0.085120pt;}
.ws4_c00190{word-spacing:0.000000pt;}
.wsb_c00190{word-spacing:0.085120pt;}
.ws8_c00190{word-spacing:0.425600pt;}
.ws12_c00190{word-spacing:0.471040pt;}
.wsc_c00190{word-spacing:0.680960pt;}
.ws5_c00190{word-spacing:1.276800pt;}
.wsd_c00190{word-spacing:1.872640pt;}
.ws9_c00190{word-spacing:6.894720pt;}
._0_c00190{margin-left:-4.315584pt;}
._2_c00190{margin-left:-3.004736pt;}
._3_c00190{margin-left:-1.081024pt;}
._4_c00190{width:0.919296pt;}
._1_c00190{width:1.991808pt;}
._5_c00190{width:3.268608pt;}
.fs4_c00190{font-size:49.920000pt;}
.fs3_c00190{font-size:58.880000pt;}
.fs0_c00190{font-size:72.320000pt;}
.fs1_c00190{font-size:85.120000pt;}
.fs2_c00190{font-size:96.000000pt;}
.y0_c00190{bottom:0.000000pt;}
.ya_c00190{bottom:95.914880pt;}
.y9_c00190{bottom:121.514720pt;}
.y8_c00190{bottom:147.114560pt;}
.y7_c00190{bottom:172.714400pt;}
.y6_c00190{bottom:198.954400pt;}
.y5_c00190{bottom:243.114587pt;}
.ye_c00190{bottom:249.509280pt;}
.yd_c00190{bottom:267.114400pt;}
.y4_c00190{bottom:268.714427pt;}
.y3_c00190{bottom:294.314267pt;}
.yc_c00190{bottom:300.714533pt;}
.y2_c00190{bottom:335.914560pt;}
.y1_c00190{bottom:361.514400pt;}
.yb_c00190{bottom:367.914533pt;}
.h3_c00190{height:51.405000pt;}
.h1_c00190{height:74.313750pt;}
.h2_c00190{height:83.812500pt;}
.h0_c00190{height:720.000000pt;}
.w0_c00190{width:960.000000pt;}
.x0_c00190{left:0.000000pt;}
.x1_c00190{left:75.600000pt;}
.x2_c00190{left:94.800000pt;}
.x3_c00190{left:495.600000pt;}
.x4_c00190{left:514.844160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_009ff1b9b7a1d2f3ab42a5e6.woff')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00191;src:url('chunks/assets/font_ac344a4a558498424bb714e1.woff')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.088379;font-style:normal;font-weight:normal;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_73dd2fe159e5e21cebd88286.woff')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls6_c00191{letter-spacing:-3.967920px;}
.ls5_c00191{letter-spacing:-1.923840px;}
.ls4_c00191{letter-spacing:0.000000px;}
.ls3_c00191{letter-spacing:0.120240px;}
.ls0_c00191{letter-spacing:0.240480px;}
.ls1_c00191{letter-spacing:0.252504px;}
.ls2_c00191{letter-spacing:0.360720px;}
.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;}
}
.ws1_c00191{word-spacing:-120.240000px;}
.ws5_c00191{word-spacing:-30.420720px;}
.ws2_c00191{word-spacing:-30.300480px;}
.ws0_c00191{word-spacing:-30.180240px;}
.ws3_c00191{word-spacing:-30.060000px;}
.ws6_c00191{word-spacing:-2.164320px;}
.ws4_c00191{word-spacing:-1.515024px;}
.ws9_c00191{word-spacing:-1.442880px;}
.ws7_c00191{word-spacing:-0.721440px;}
.wsb_c00191{word-spacing:-0.240480px;}
.ws8_c00191{word-spacing:0.000000px;}
.wsa_c00191{word-spacing:0.721440px;}
.wsc_c00191{word-spacing:3.967920px;}
._6_c00191{margin-left:-9.547056px;}
._2_c00191{margin-left:-5.014008px;}
._7_c00191{margin-left:-3.919824px;}
._4_c00191{margin-left:-2.597184px;}
._1_c00191{margin-left:-1.010016px;}
._3_c00191{width:1.370736px;}
._0_c00191{width:2.777544px;}
._8_c00191{width:4.340664px;}
._5_c00191{width:23.326560px;}
.fc2_c00191{color:rgb(255,255,255);}
.fc1_c00191{color:rgb(0,0,0);}
.fc0_c00191{color:rgb(255,0,0);}
.fs1_c00191{font-size:66.240000px;}
.fs0_c00191{font-size:120.240000px;}
.y0_c00191{bottom:0.000000px;}
.y6_c00191{bottom:41.437350px;}
.y5_c00191{bottom:280.258200px;}
.y4_c00191{bottom:330.668820px;}
.y3_c00191{bottom:435.247560px;}
.y2_c00191{bottom:478.443780px;}
.y1_c00191{bottom:521.640000px;}
.h2_c00191{height:46.477969px;}
.h1_c00191{height:104.975156px;}
.h0_c00191{height:810.000000px;}
.w0_c00191{width:1080.000000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:91.800000px;}
.x2_c00191{left:1026.288600px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls6_c00191{letter-spacing:-3.527040pt;}
.ls5_c00191{letter-spacing:-1.710080pt;}
.ls4_c00191{letter-spacing:0.000000pt;}
.ls3_c00191{letter-spacing:0.106880pt;}
.ls0_c00191{letter-spacing:0.213760pt;}
.ls1_c00191{letter-spacing:0.224448pt;}
.ls2_c00191{letter-spacing:0.320640pt;}
.ws1_c00191{word-spacing:-106.880000pt;}
.ws5_c00191{word-spacing:-27.040640pt;}
.ws2_c00191{word-spacing:-26.933760pt;}
.ws0_c00191{word-spacing:-26.826880pt;}
.ws3_c00191{word-spacing:-26.720000pt;}
.ws6_c00191{word-spacing:-1.923840pt;}
.ws4_c00191{word-spacing:-1.346688pt;}
.ws9_c00191{word-spacing:-1.282560pt;}
.ws7_c00191{word-spacing:-0.641280pt;}
.wsb_c00191{word-spacing:-0.213760pt;}
.ws8_c00191{word-spacing:0.000000pt;}
.wsa_c00191{word-spacing:0.641280pt;}
.wsc_c00191{word-spacing:3.527040pt;}
._6_c00191{margin-left:-8.486272pt;}
._2_c00191{margin-left:-4.456896pt;}
._7_c00191{margin-left:-3.484288pt;}
._4_c00191{margin-left:-2.308608pt;}
._1_c00191{margin-left:-0.897792pt;}
._3_c00191{width:1.218432pt;}
._0_c00191{width:2.468928pt;}
._8_c00191{width:3.858368pt;}
._5_c00191{width:20.734720pt;}
.fs1_c00191{font-size:58.880000pt;}
.fs0_c00191{font-size:106.880000pt;}
.y0_c00191{bottom:0.000000pt;}
.y6_c00191{bottom:36.833200pt;}
.y5_c00191{bottom:249.118400pt;}
.y4_c00191{bottom:293.927840pt;}
.y3_c00191{bottom:386.886720pt;}
.y2_c00191{bottom:425.283360pt;}
.y1_c00191{bottom:463.680000pt;}
.h2_c00191{height:41.313750pt;}
.h1_c00191{height:93.311250pt;}
.h0_c00191{height:720.000000pt;}
.w0_c00191{width:960.000000pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:81.600000pt;}
.x2_c00191{left:912.256533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_572616927ce2282471214633.woff')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.103516;font-style:normal;font-weight:normal;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_1ff4cfe06fab51a97d903164.woff')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:0.722656;font-style:normal;font-weight:normal;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_70cb611f534f9d4ae6b4297e.woff')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00192;src:url('chunks/assets/font_8cd8b9b9bdbc45284bda2c05.woff')format("woff");}.ff4_c00192{font-family:ff4_c00192;line-height:1.088379;font-style:normal;font-weight:normal;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_d06ca0d2ca052db3e1d4884b.woff')format("woff");}.ff5_c00192{font-family:ff5_c00192;line-height:0.913574;font-style:normal;font-weight:normal;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_1bbf36a62d79c7f2ecc04736.woff')format("woff");}.ff6_c00192{font-family:ff6_c00192;line-height:0.921387;font-style: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;}
.ls6_c00192{letter-spacing:-14.994720px;}
.ls3_c00192{letter-spacing:-0.252000px;}
.ls4_c00192{letter-spacing:-0.192240px;}
.ls2_c00192{letter-spacing:0.000000px;}
.ls5_c00192{letter-spacing:0.192240px;}
.ls0_c00192{letter-spacing:11.544480px;}
.ls1_c00192{letter-spacing:86.508000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00192{word-spacing:-192.240000px;}
.ws0_c00192{word-spacing:-48.060000px;}
.ws2_c00192{word-spacing:-47.867760px;}
.ws7_c00192{word-spacing:-1.153440px;}
.ws9_c00192{word-spacing:-0.768960px;}
.wsa_c00192{word-spacing:-0.576720px;}
.ws4_c00192{word-spacing:-0.252000px;}
.ws3_c00192{word-spacing:0.000000px;}
.ws6_c00192{word-spacing:0.192240px;}
.ws5_c00192{word-spacing:0.252000px;}
.ws8_c00192{word-spacing:0.384480px;}
.wsb_c00192{word-spacing:14.994720px;}
._9_c00192{margin-left:-15.670296px;}
._5_c00192{margin-left:-14.650704px;}
._8_c00192{margin-left:-9.637992px;}
._0_c00192{margin-left:-8.341200px;}
._7_c00192{margin-left:-6.319944px;}
._4_c00192{margin-left:-4.940568px;}
._2_c00192{margin-left:-3.679200px;}
._3_c00192{margin-left:-2.016000px;}
._1_c00192{width:1.134000px;}
._6_c00192{width:3.840264px;}
._a_c00192{width:5.957856px;}
.fc3_c00192{color:rgb(211,72,23);}
.fc2_c00192{color:rgb(158,54,17);}
.fc4_c00192{color:rgb(255,255,255);}
.fc1_c00192{color:rgb(0,0,0);}
.fc0_c00192{color:rgb(255,0,0);}
.fs3_c00192{font-size:66.240000px;}
.fs1_c00192{font-size:163.440000px;}
.fs2_c00192{font-size:192.240000px;}
.fs0_c00192{font-size:252.000000px;}
.y0_c00192{bottom:0.000000px;}
.yb_c00192{bottom:41.437350px;}
.ya_c00192{bottom:150.362820px;}
.y9_c00192{bottom:202.219560px;}
.y8_c00192{bottom:254.076300px;}
.y7_c00192{bottom:305.933040px;}
.y6_c00192{bottom:357.789780px;}
.y5_c00192{bottom:409.646520px;}
.y4_c00192{bottom:461.503260px;}
.y3_c00192{bottom:513.360000px;}
.y2_c00192{bottom:604.800000px;}
.y1_c00192{bottom:672.840000px;}
.h3_c00192{height:46.477969px;}
.h2_c00192{height:167.834531px;}
.h1_c00192{height:234.281250px;}
.h0_c00192{height:810.000000px;}
.w0_c00192{width:1080.000000px;}
.x0_c00192{left:0.000000px;}
.x1_c00192{left:91.800000px;}
.x2_c00192{left:113.400000px;}
.x3_c00192{left:1026.288600px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls6_c00192{letter-spacing:-13.328640pt;}
.ls3_c00192{letter-spacing:-0.224000pt;}
.ls4_c00192{letter-spacing:-0.170880pt;}
.ls2_c00192{letter-spacing:0.000000pt;}
.ls5_c00192{letter-spacing:0.170880pt;}
.ls0_c00192{letter-spacing:10.261760pt;}
.ls1_c00192{letter-spacing:76.896000pt;}
.ws1_c00192{word-spacing:-170.880000pt;}
.ws0_c00192{word-spacing:-42.720000pt;}
.ws2_c00192{word-spacing:-42.549120pt;}
.ws7_c00192{word-spacing:-1.025280pt;}
.ws9_c00192{word-spacing:-0.683520pt;}
.wsa_c00192{word-spacing:-0.512640pt;}
.ws4_c00192{word-spacing:-0.224000pt;}
.ws3_c00192{word-spacing:0.000000pt;}
.ws6_c00192{word-spacing:0.170880pt;}
.ws5_c00192{word-spacing:0.224000pt;}
.ws8_c00192{word-spacing:0.341760pt;}
.wsb_c00192{word-spacing:13.328640pt;}
._9_c00192{margin-left:-13.929152pt;}
._5_c00192{margin-left:-13.022848pt;}
._8_c00192{margin-left:-8.567104pt;}
._0_c00192{margin-left:-7.414400pt;}
._7_c00192{margin-left:-5.617728pt;}
._4_c00192{margin-left:-4.391616pt;}
._2_c00192{margin-left:-3.270400pt;}
._3_c00192{margin-left:-1.792000pt;}
._1_c00192{width:1.008000pt;}
._6_c00192{width:3.413568pt;}
._a_c00192{width:5.295872pt;}
.fs3_c00192{font-size:58.880000pt;}
.fs1_c00192{font-size:145.280000pt;}
.fs2_c00192{font-size:170.880000pt;}
.fs0_c00192{font-size:224.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.yb_c00192{bottom:36.833200pt;}
.ya_c00192{bottom:133.655840pt;}
.y9_c00192{bottom:179.750720pt;}
.y8_c00192{bottom:225.845600pt;}
.y7_c00192{bottom:271.940480pt;}
.y6_c00192{bottom:318.035360pt;}
.y5_c00192{bottom:364.130240pt;}
.y4_c00192{bottom:410.225120pt;}
.y3_c00192{bottom:456.320000pt;}
.y2_c00192{bottom:537.600000pt;}
.y1_c00192{bottom:598.080000pt;}
.h3_c00192{height:41.313750pt;}
.h2_c00192{height:149.186250pt;}
.h1_c00192{height:208.250000pt;}
.h0_c00192{height:720.000000pt;}
.w0_c00192{width:960.000000pt;}
.x0_c00192{left:0.000000pt;}
.x1_c00192{left:81.600000pt;}
.x2_c00192{left:100.800000pt;}
.x3_c00192{left:912.256533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b069ea7335703583701ca4bf.woff')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:0.921387;font-style:normal;font-weight:normal;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_5ecb39520171efddbcdcbb62.woff')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_16bb0500b0ca024d3abbf67b.woff')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.088379;font-style:normal;font-weight:normal;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_870731829c3c58ba0d6f36c9.woff')format("woff");}.ff4_c00193{font-family:ff4_c00193;line-height:0.942383;font-style:normal;font-weight:normal;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_1ff4cfe06fab51a97d903164.woff')format("woff");}.ff5_c00193{font-family:ff5_c00193;line-height:0.722656;font-style: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;}
.ls14_c00193{letter-spacing:-6.143040px;}
.ls10_c00193{letter-spacing:-3.654720px;}
.ls1a_c00193{letter-spacing:-3.096000px;}
.ls12_c00193{letter-spacing:-2.177280px;}
.lsd_c00193{letter-spacing:-1.788480px;}
.ls17_c00193{letter-spacing:-0.936000px;}
.lsb_c00193{letter-spacing:-0.360720px;}
.lse_c00193{letter-spacing:-0.311040px;}
.ls16_c00193{letter-spacing:-0.288000px;}
.lsf_c00193{letter-spacing:-0.233280px;}
.ls18_c00193{letter-spacing:-0.216000px;}
.ls11_c00193{letter-spacing:-0.155520px;}
.ls19_c00193{letter-spacing:-0.144000px;}
.ls15_c00193{letter-spacing:-0.120240px;}
.lsc_c00193{letter-spacing:0.000000px;}
.ls8_c00193{letter-spacing:0.072000px;}
.ls2_c00193{letter-spacing:0.077760px;}
.lsa_c00193{letter-spacing:0.144000px;}
.ls6_c00193{letter-spacing:0.155520px;}
.ls3_c00193{letter-spacing:0.233280px;}
.ls0_c00193{letter-spacing:0.311040px;}
.ls5_c00193{letter-spacing:0.334368px;}
.ls9_c00193{letter-spacing:0.352800px;}
.ls1_c00193{letter-spacing:0.365472px;}
.ls13_c00193{letter-spacing:0.388800px;}
.ls4_c00193{letter-spacing:19.440000px;}
.ls7_c00193{letter-spacing:56.062080px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00193{word-spacing:-77.760000px;}
.wse_c00193{word-spacing:-72.000000px;}
.ws9_c00193{word-spacing:-30.060000px;}
.ws7_c00193{word-spacing:-19.828800px;}
.ws2_c00193{word-spacing:-19.751040px;}
.ws5_c00193{word-spacing:-19.517760px;}
.ws4_c00193{word-spacing:-19.440000px;}
.ws8_c00193{word-spacing:-19.284480px;}
.ws6_c00193{word-spacing:-19.206720px;}
.ws3_c00193{word-spacing:-19.128960px;}
.wsd_c00193{word-spacing:-18.144000px;}
.ws11_c00193{word-spacing:-18.000000px;}
.wsf_c00193{word-spacing:-17.856000px;}
.wsc_c00193{word-spacing:-17.784000px;}
.ws0_c00193{word-spacing:-17.651520px;}
.wsb_c00193{word-spacing:-17.064000px;}
.ws10_c00193{word-spacing:-14.904000px;}
.ws1f_c00193{word-spacing:-1.710720px;}
.ws24_c00193{word-spacing:-1.010880px;}
.ws23_c00193{word-spacing:-0.855360px;}
.ws22_c00193{word-spacing:-0.777600px;}
.ws1d_c00193{word-spacing:-0.544320px;}
.ws29_c00193{word-spacing:-0.504000px;}
.ws20_c00193{word-spacing:-0.466560px;}
.ws21_c00193{word-spacing:-0.311040px;}
.ws14_c00193{word-spacing:-0.077760px;}
.ws13_c00193{word-spacing:0.000000px;}
.ws2d_c00193{word-spacing:0.144000px;}
.ws1a_c00193{word-spacing:0.155520px;}
.ws28_c00193{word-spacing:0.216000px;}
.ws17_c00193{word-spacing:0.233280px;}
.ws2c_c00193{word-spacing:0.288000px;}
.ws27_c00193{word-spacing:0.360720px;}
.ws12_c00193{word-spacing:0.601200px;}
.ws18_c00193{word-spacing:0.622080px;}
.ws1b_c00193{word-spacing:0.855360px;}
.ws2a_c00193{word-spacing:0.936000px;}
.wsa_c00193{word-spacing:1.080000px;}
.ws16_c00193{word-spacing:1.399680px;}
.ws2e_c00193{word-spacing:1.584000px;}
.ws25_c00193{word-spacing:1.632960px;}
.ws2b_c00193{word-spacing:1.656000px;}
.ws15_c00193{word-spacing:1.788480px;}
.ws1c_c00193{word-spacing:2.332800px;}
.ws1e_c00193{word-spacing:2.877120px;}
.ws2f_c00193{word-spacing:3.096000px;}
.ws19_c00193{word-spacing:3.654720px;}
.ws26_c00193{word-spacing:6.143040px;}
._7_c00193{margin-left:-8.390376px;}
._2_c00193{margin-left:-6.283008px;}
._c_c00193{margin-left:-5.003352px;}
._8_c00193{margin-left:-3.998016px;}
._3_c00193{margin-left:-2.882664px;}
._1_c00193{margin-left:-1.692936px;}
._0_c00193{width:1.094184px;}
._4_c00193{width:2.280600px;}
._6_c00193{width:3.488112px;}
._5_c00193{width:4.623408px;}
._a_c00193{width:6.500736px;}
._b_c00193{width:7.618176px;}
._9_c00193{width:19.661040px;}
.fc3_c00193{color:rgb(255,255,255);}
.fc2_c00193{color:rgb(0,0,0);}
.fc1_c00193{color:rgb(255,0,0);}
.fc0_c00193{color:rgb(158,54,17);}
.fs2_c00193{font-size:66.240000px;}
.fs3_c00193{font-size:72.000000px;}
.fs1_c00193{font-size:77.760000px;}
.fs0_c00193{font-size:120.240000px;}
.y0_c00193{bottom:0.000000px;}
.y20_c00193{bottom:41.437350px;}
.y11_c00193{bottom:113.194800px;}
.y10_c00193{bottom:129.582720px;}
.y1f_c00193{bottom:137.755050px;}
.yf_c00193{bottom:145.970640px;}
.y1e_c00193{bottom:152.875050px;}
.ye_c00193{bottom:180.360000px;}
.y1d_c00193{bottom:185.995050px;}
.y1c_c00193{bottom:201.115050px;}
.yd_c00193{bottom:214.698960px;}
.yc_c00193{bottom:231.086880px;}
.y1b_c00193{bottom:234.235050px;}
.yb_c00193{bottom:247.474800px;}
.y1a_c00193{bottom:249.355050px;}
.ya_c00193{bottom:263.862720px;}
.y9_c00193{bottom:280.250640px;}
.y19_c00193{bottom:282.475050px;}
.y8_c00193{bottom:314.640000px;}
.y18_c00193{bottom:315.595050px;}
.y17_c00193{bottom:330.715050px;}
.y16_c00193{bottom:345.835050px;}
.y15_c00193{bottom:360.955050px;}
.y14_c00193{bottom:376.075050px;}
.y7_c00193{bottom:377.419680px;}
.y6_c00193{bottom:393.807600px;}
.y13_c00193{bottom:409.195050px;}
.y5_c00193{bottom:419.196240px;}
.y12_c00193{bottom:424.315050px;}
.y4_c00193{bottom:435.584160px;}
.y3_c00193{bottom:451.972080px;}
.y2_c00193{bottom:468.360000px;}
.y1_c00193{bottom:521.100000px;}
.h9_c00193{height:46.477969px;}
.h6_c00193{height:50.519531px;}
.h7_c00193{height:52.101562px;}
.h3_c00193{height:54.561094px;}
.h4_c00193{height:56.269688px;}
.h8_c00193{height:62.859375px;}
.h2_c00193{height:67.888125px;}
.h1_c00193{height:84.367617px;}
.h5_c00193{height:87.009609px;}
.h0_c00193{height:810.000000px;}
.w0_c00193{width:1080.000000px;}
.x0_c00193{left:0.000000px;}
.x1_c00193{left:91.800000px;}
.x3_c00193{left:551.299950px;}
.x2_c00193{left:580.185000px;}
.x4_c00193{left:1026.288600px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls14_c00193{letter-spacing:-5.460480pt;}
.ls10_c00193{letter-spacing:-3.248640pt;}
.ls1a_c00193{letter-spacing:-2.752000pt;}
.ls12_c00193{letter-spacing:-1.935360pt;}
.lsd_c00193{letter-spacing:-1.589760pt;}
.ls17_c00193{letter-spacing:-0.832000pt;}
.lsb_c00193{letter-spacing:-0.320640pt;}
.lse_c00193{letter-spacing:-0.276480pt;}
.ls16_c00193{letter-spacing:-0.256000pt;}
.lsf_c00193{letter-spacing:-0.207360pt;}
.ls18_c00193{letter-spacing:-0.192000pt;}
.ls11_c00193{letter-spacing:-0.138240pt;}
.ls19_c00193{letter-spacing:-0.128000pt;}
.ls15_c00193{letter-spacing:-0.106880pt;}
.lsc_c00193{letter-spacing:0.000000pt;}
.ls8_c00193{letter-spacing:0.064000pt;}
.ls2_c00193{letter-spacing:0.069120pt;}
.lsa_c00193{letter-spacing:0.128000pt;}
.ls6_c00193{letter-spacing:0.138240pt;}
.ls3_c00193{letter-spacing:0.207360pt;}
.ls0_c00193{letter-spacing:0.276480pt;}
.ls5_c00193{letter-spacing:0.297216pt;}
.ls9_c00193{letter-spacing:0.313600pt;}
.ls1_c00193{letter-spacing:0.324864pt;}
.ls13_c00193{letter-spacing:0.345600pt;}
.ls4_c00193{letter-spacing:17.280000pt;}
.ls7_c00193{letter-spacing:49.832960pt;}
.ws1_c00193{word-spacing:-69.120000pt;}
.wse_c00193{word-spacing:-64.000000pt;}
.ws9_c00193{word-spacing:-26.720000pt;}
.ws7_c00193{word-spacing:-17.625600pt;}
.ws2_c00193{word-spacing:-17.556480pt;}
.ws5_c00193{word-spacing:-17.349120pt;}
.ws4_c00193{word-spacing:-17.280000pt;}
.ws8_c00193{word-spacing:-17.141760pt;}
.ws6_c00193{word-spacing:-17.072640pt;}
.ws3_c00193{word-spacing:-17.003520pt;}
.wsd_c00193{word-spacing:-16.128000pt;}
.ws11_c00193{word-spacing:-16.000000pt;}
.wsf_c00193{word-spacing:-15.872000pt;}
.wsc_c00193{word-spacing:-15.808000pt;}
.ws0_c00193{word-spacing:-15.690240pt;}
.wsb_c00193{word-spacing:-15.168000pt;}
.ws10_c00193{word-spacing:-13.248000pt;}
.ws1f_c00193{word-spacing:-1.520640pt;}
.ws24_c00193{word-spacing:-0.898560pt;}
.ws23_c00193{word-spacing:-0.760320pt;}
.ws22_c00193{word-spacing:-0.691200pt;}
.ws1d_c00193{word-spacing:-0.483840pt;}
.ws29_c00193{word-spacing:-0.448000pt;}
.ws20_c00193{word-spacing:-0.414720pt;}
.ws21_c00193{word-spacing:-0.276480pt;}
.ws14_c00193{word-spacing:-0.069120pt;}
.ws13_c00193{word-spacing:0.000000pt;}
.ws2d_c00193{word-spacing:0.128000pt;}
.ws1a_c00193{word-spacing:0.138240pt;}
.ws28_c00193{word-spacing:0.192000pt;}
.ws17_c00193{word-spacing:0.207360pt;}
.ws2c_c00193{word-spacing:0.256000pt;}
.ws27_c00193{word-spacing:0.320640pt;}
.ws12_c00193{word-spacing:0.534400pt;}
.ws18_c00193{word-spacing:0.552960pt;}
.ws1b_c00193{word-spacing:0.760320pt;}
.ws2a_c00193{word-spacing:0.832000pt;}
.wsa_c00193{word-spacing:0.960000pt;}
.ws16_c00193{word-spacing:1.244160pt;}
.ws2e_c00193{word-spacing:1.408000pt;}
.ws25_c00193{word-spacing:1.451520pt;}
.ws2b_c00193{word-spacing:1.472000pt;}
.ws15_c00193{word-spacing:1.589760pt;}
.ws1c_c00193{word-spacing:2.073600pt;}
.ws1e_c00193{word-spacing:2.557440pt;}
.ws2f_c00193{word-spacing:2.752000pt;}
.ws19_c00193{word-spacing:3.248640pt;}
.ws26_c00193{word-spacing:5.460480pt;}
._7_c00193{margin-left:-7.458112pt;}
._2_c00193{margin-left:-5.584896pt;}
._c_c00193{margin-left:-4.447424pt;}
._8_c00193{margin-left:-3.553792pt;}
._3_c00193{margin-left:-2.562368pt;}
._1_c00193{margin-left:-1.504832pt;}
._0_c00193{width:0.972608pt;}
._4_c00193{width:2.027200pt;}
._6_c00193{width:3.100544pt;}
._5_c00193{width:4.109696pt;}
._a_c00193{width:5.778432pt;}
._b_c00193{width:6.771712pt;}
._9_c00193{width:17.476480pt;}
.fs2_c00193{font-size:58.880000pt;}
.fs3_c00193{font-size:64.000000pt;}
.fs1_c00193{font-size:69.120000pt;}
.fs0_c00193{font-size:106.880000pt;}
.y0_c00193{bottom:0.000000pt;}
.y20_c00193{bottom:36.833200pt;}
.y11_c00193{bottom:100.617600pt;}
.y10_c00193{bottom:115.184640pt;}
.y1f_c00193{bottom:122.448933pt;}
.yf_c00193{bottom:129.751680pt;}
.y1e_c00193{bottom:135.888933pt;}
.ye_c00193{bottom:160.320000pt;}
.y1d_c00193{bottom:165.328933pt;}
.y1c_c00193{bottom:178.768933pt;}
.yd_c00193{bottom:190.843520pt;}
.yc_c00193{bottom:205.410560pt;}
.y1b_c00193{bottom:208.208933pt;}
.yb_c00193{bottom:219.977600pt;}
.y1a_c00193{bottom:221.648933pt;}
.ya_c00193{bottom:234.544640pt;}
.y9_c00193{bottom:249.111680pt;}
.y19_c00193{bottom:251.088933pt;}
.y8_c00193{bottom:279.680000pt;}
.y18_c00193{bottom:280.528933pt;}
.y17_c00193{bottom:293.968933pt;}
.y16_c00193{bottom:307.408933pt;}
.y15_c00193{bottom:320.848933pt;}
.y14_c00193{bottom:334.288933pt;}
.y7_c00193{bottom:335.484160pt;}
.y6_c00193{bottom:350.051200pt;}
.y13_c00193{bottom:363.728933pt;}
.y5_c00193{bottom:372.618880pt;}
.y12_c00193{bottom:377.168933pt;}
.y4_c00193{bottom:387.185920pt;}
.y3_c00193{bottom:401.752960pt;}
.y2_c00193{bottom:416.320000pt;}
.y1_c00193{bottom:463.200000pt;}
.h9_c00193{height:41.313750pt;}
.h6_c00193{height:44.906250pt;}
.h7_c00193{height:46.312500pt;}
.h3_c00193{height:48.498750pt;}
.h4_c00193{height:50.017500pt;}
.h8_c00193{height:55.875000pt;}
.h2_c00193{height:60.345000pt;}
.h1_c00193{height:74.993437pt;}
.h5_c00193{height:77.341875pt;}
.h0_c00193{height:720.000000pt;}
.w0_c00193{width:960.000000pt;}
.x0_c00193{left:0.000000pt;}
.x1_c00193{left:81.600000pt;}
.x3_c00193{left:490.044400pt;}
.x2_c00193{left:515.720000pt;}
.x4_c00193{left:912.256533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5cc6600dd6436e075009c249.woff')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:0.921387;font-style:normal;font-weight:normal;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_1ff4cfe06fab51a97d903164.woff')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:0.722656;font-style:normal;font-weight:normal;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_e8cc1479bc494eb8e971f600.woff')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_2ed2a7dde9daa53adde6ade0.woff')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.088379;font-style:normal;font-weight:normal;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_da0bf5ce3ce8d68443d5d203.woff')format("woff");}.ff5_c00194{font-family:ff5_c00194;line-height:0.942383;font-style: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);}
.m1_c00194{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls9_c00194{letter-spacing:-1.769040px;}
.lsd_c00194{letter-spacing:-0.336960px;}
.lsf_c00194{letter-spacing:-0.306720px;}
.lsc_c00194{letter-spacing:-0.252720px;}
.lse_c00194{letter-spacing:-0.240480px;}
.ls10_c00194{letter-spacing:-0.204480px;}
.lsb_c00194{letter-spacing:-0.168480px;}
.ls8_c00194{letter-spacing:-0.084240px;}
.lsa_c00194{letter-spacing:0.000000px;}
.ls6_c00194{letter-spacing:0.143136px;}
.ls7_c00194{letter-spacing:0.240480px;}
.ls2_c00194{letter-spacing:0.252720px;}
.ls1_c00194{letter-spacing:20.554560px;}
.ls3_c00194{letter-spacing:20.925216px;}
.ls5_c00194{letter-spacing:25.151040px;}
.ls4_c00194{letter-spacing:46.828800px;}
.ls0_c00194{letter-spacing:53.753760px;}
.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:-84.240000px;}
.ws9_c00194{word-spacing:-25.560000px;}
.ws8_c00194{word-spacing:-25.253280px;}
.ws6_c00194{word-spacing:-20.975760px;}
.ws3_c00194{word-spacing:-20.891520px;}
.ws4_c00194{word-spacing:-20.807280px;}
.ws5_c00194{word-spacing:-20.723040px;}
.ws1a_c00194{word-spacing:-5.112000px;}
.ws11_c00194{word-spacing:-2.274480px;}
.ws12_c00194{word-spacing:-1.516320px;}
.ws2_c00194{word-spacing:-0.859248px;}
.ws13_c00194{word-spacing:-0.842400px;}
.ws1_c00194{word-spacing:-0.817128px;}
.wsf_c00194{word-spacing:-0.084240px;}
.wsc_c00194{word-spacing:0.000000px;}
.wsd_c00194{word-spacing:0.084240px;}
.ws19_c00194{word-spacing:0.204480px;}
.ws17_c00194{word-spacing:0.306720px;}
.ws7_c00194{word-spacing:0.572544px;}
.wse_c00194{word-spacing:0.589680px;}
.wsa_c00194{word-spacing:0.654336px;}
.ws16_c00194{word-spacing:0.715680px;}
.wsb_c00194{word-spacing:1.124640px;}
.ws14_c00194{word-spacing:1.202400px;}
.ws15_c00194{word-spacing:1.431360px;}
.ws10_c00194{word-spacing:1.769040px;}
.ws18_c00194{word-spacing:2.147040px;}
._1_c00194{margin-left:-10.732608px;}
._8_c00194{margin-left:-9.367488px;}
._5_c00194{margin-left:-8.098128px;}
._6_c00194{margin-left:-6.520176px;}
._b_c00194{margin-left:-5.177520px;}
._4_c00194{margin-left:-3.762864px;}
._7_c00194{margin-left:-2.173392px;}
._0_c00194{margin-left:-1.106208px;}
._3_c00194{width:1.735344px;}
._9_c00194{width:3.015792px;}
._c_c00194{width:6.417216px;}
._2_c00194{width:19.712160px;}
._a_c00194{width:26.959104px;}
.fc3_c00194{color:rgb(255,255,255);}
.fc2_c00194{color:rgb(204,153,0);}
.fc1_c00194{color:rgb(0,0,0);}
.fc0_c00194{color:rgb(158,54,17);}
.fs5_c00194{font-size:66.240000px;}
.fs1_c00194{font-size:71.280000px;}
.fs2_c00194{font-size:84.240000px;}
.fs3_c00194{font-size:86.400000px;}
.fs4_c00194{font-size:102.240000px;}
.fs0_c00194{font-size:120.240000px;}
.y0_c00194{bottom:0.000000px;}
.y23_c00194{bottom:41.437350px;}
.y22_c00194{bottom:89.282880px;}
.y21_c00194{bottom:110.702160px;}
.y12_c00194{bottom:130.998600px;}
.y20_c00194{bottom:132.121440px;}
.y11_c00194{bottom:148.646880px;}
.y1f_c00194{bottom:153.540720px;}
.y10_c00194{bottom:166.295160px;}
.y1e_c00194{bottom:174.960000px;}
.yf_c00194{bottom:183.943440px;}
.ye_c00194{bottom:201.591720px;}
.y1d_c00194{bottom:214.383600px;}
.yd_c00194{bottom:219.240000px;}
.y1c_c00194{bottom:235.802880px;}
.yc_c00194{bottom:254.863440px;}
.y1b_c00194{bottom:257.222160px;}
.yb_c00194{bottom:272.511720px;}
.y1a_c00194{bottom:278.641440px;}
.ya_c00194{bottom:290.160000px;}
.y19_c00194{bottom:300.060720px;}
.y18_c00194{bottom:321.480000px;}
.y9_c00194{bottom:325.775160px;}
.y8_c00194{bottom:343.423440px;}
.y17_c00194{bottom:360.908640px;}
.y7_c00194{bottom:361.071720px;}
.y6_c00194{bottom:378.720000px;}
.y16_c00194{bottom:400.322160px;}
.y5_c00194{bottom:414.335160px;}
.y15_c00194{bottom:421.741440px;}
.y4_c00194{bottom:431.983440px;}
.y14_c00194{bottom:443.160720px;}
.y3_c00194{bottom:449.631720px;}
.y13_c00194{bottom:464.580000px;}
.y2_c00194{bottom:467.280000px;}
.y1_c00194{bottom:521.100000px;}
.h6_c00194{height:46.477969px;}
.h2_c00194{height:59.107852px;}
.h4_c00194{height:60.958828px;}
.h3_c00194{height:73.545469px;}
.h1_c00194{height:84.367617px;}
.h5_c00194{height:89.260312px;}
.h0_c00194{height:810.000000px;}
.w0_c00194{width:1080.000000px;}
.x0_c00194{left:0.000000px;}
.x1_c00194{left:91.800000px;}
.x2_c00194{left:113.400000px;}
.x3_c00194{left:580.185000px;}
.x5_c00194{left:599.229000px;}
.x4_c00194{left:601.759440px;}
.x6_c00194{left:1026.288600px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls9_c00194{letter-spacing:-1.572480pt;}
.lsd_c00194{letter-spacing:-0.299520pt;}
.lsf_c00194{letter-spacing:-0.272640pt;}
.lsc_c00194{letter-spacing:-0.224640pt;}
.lse_c00194{letter-spacing:-0.213760pt;}
.ls10_c00194{letter-spacing:-0.181760pt;}
.lsb_c00194{letter-spacing:-0.149760pt;}
.ls8_c00194{letter-spacing:-0.074880pt;}
.lsa_c00194{letter-spacing:0.000000pt;}
.ls6_c00194{letter-spacing:0.127232pt;}
.ls7_c00194{letter-spacing:0.213760pt;}
.ls2_c00194{letter-spacing:0.224640pt;}
.ls1_c00194{letter-spacing:18.270720pt;}
.ls3_c00194{letter-spacing:18.600192pt;}
.ls5_c00194{letter-spacing:22.356480pt;}
.ls4_c00194{letter-spacing:41.625600pt;}
.ls0_c00194{letter-spacing:47.781120pt;}
.ws0_c00194{word-spacing:-74.880000pt;}
.ws9_c00194{word-spacing:-22.720000pt;}
.ws8_c00194{word-spacing:-22.447360pt;}
.ws6_c00194{word-spacing:-18.645120pt;}
.ws3_c00194{word-spacing:-18.570240pt;}
.ws4_c00194{word-spacing:-18.495360pt;}
.ws5_c00194{word-spacing:-18.420480pt;}
.ws1a_c00194{word-spacing:-4.544000pt;}
.ws11_c00194{word-spacing:-2.021760pt;}
.ws12_c00194{word-spacing:-1.347840pt;}
.ws2_c00194{word-spacing:-0.763776pt;}
.ws13_c00194{word-spacing:-0.748800pt;}
.ws1_c00194{word-spacing:-0.726336pt;}
.wsf_c00194{word-spacing:-0.074880pt;}
.wsc_c00194{word-spacing:0.000000pt;}
.wsd_c00194{word-spacing:0.074880pt;}
.ws19_c00194{word-spacing:0.181760pt;}
.ws17_c00194{word-spacing:0.272640pt;}
.ws7_c00194{word-spacing:0.508928pt;}
.wse_c00194{word-spacing:0.524160pt;}
.wsa_c00194{word-spacing:0.581632pt;}
.ws16_c00194{word-spacing:0.636160pt;}
.wsb_c00194{word-spacing:0.999680pt;}
.ws14_c00194{word-spacing:1.068800pt;}
.ws15_c00194{word-spacing:1.272320pt;}
.ws10_c00194{word-spacing:1.572480pt;}
.ws18_c00194{word-spacing:1.908480pt;}
._1_c00194{margin-left:-9.540096pt;}
._8_c00194{margin-left:-8.326656pt;}
._5_c00194{margin-left:-7.198336pt;}
._6_c00194{margin-left:-5.795712pt;}
._b_c00194{margin-left:-4.602240pt;}
._4_c00194{margin-left:-3.344768pt;}
._7_c00194{margin-left:-1.931904pt;}
._0_c00194{margin-left:-0.983296pt;}
._3_c00194{width:1.542528pt;}
._9_c00194{width:2.680704pt;}
._c_c00194{width:5.704192pt;}
._2_c00194{width:17.521920pt;}
._a_c00194{width:23.963648pt;}
.fs5_c00194{font-size:58.880000pt;}
.fs1_c00194{font-size:63.360000pt;}
.fs2_c00194{font-size:74.880000pt;}
.fs3_c00194{font-size:76.800000pt;}
.fs4_c00194{font-size:90.880000pt;}
.fs0_c00194{font-size:106.880000pt;}
.y0_c00194{bottom:0.000000pt;}
.y23_c00194{bottom:36.833200pt;}
.y22_c00194{bottom:79.362560pt;}
.y21_c00194{bottom:98.401920pt;}
.y12_c00194{bottom:116.443200pt;}
.y20_c00194{bottom:117.441280pt;}
.y11_c00194{bottom:132.130560pt;}
.y1f_c00194{bottom:136.480640pt;}
.y10_c00194{bottom:147.817920pt;}
.y1e_c00194{bottom:155.520000pt;}
.yf_c00194{bottom:163.505280pt;}
.ye_c00194{bottom:179.192640pt;}
.y1d_c00194{bottom:190.563200pt;}
.yd_c00194{bottom:194.880000pt;}
.y1c_c00194{bottom:209.602560pt;}
.yc_c00194{bottom:226.545280pt;}
.y1b_c00194{bottom:228.641920pt;}
.yb_c00194{bottom:242.232640pt;}
.y1a_c00194{bottom:247.681280pt;}
.ya_c00194{bottom:257.920000pt;}
.y19_c00194{bottom:266.720640pt;}
.y18_c00194{bottom:285.760000pt;}
.y9_c00194{bottom:289.577920pt;}
.y8_c00194{bottom:305.265280pt;}
.y17_c00194{bottom:320.807680pt;}
.y7_c00194{bottom:320.952640pt;}
.y6_c00194{bottom:336.640000pt;}
.y16_c00194{bottom:355.841920pt;}
.y5_c00194{bottom:368.297920pt;}
.y15_c00194{bottom:374.881280pt;}
.y4_c00194{bottom:383.985280pt;}
.y14_c00194{bottom:393.920640pt;}
.y3_c00194{bottom:399.672640pt;}
.y13_c00194{bottom:412.960000pt;}
.y2_c00194{bottom:415.360000pt;}
.y1_c00194{bottom:463.200000pt;}
.h6_c00194{height:41.313750pt;}
.h2_c00194{height:52.540312pt;}
.h4_c00194{height:54.185625pt;}
.h3_c00194{height:65.373750pt;}
.h1_c00194{height:74.993437pt;}
.h5_c00194{height:79.342500pt;}
.h0_c00194{height:720.000000pt;}
.w0_c00194{width:960.000000pt;}
.x0_c00194{left:0.000000pt;}
.x1_c00194{left:81.600000pt;}
.x2_c00194{left:100.800000pt;}
.x3_c00194{left:515.720000pt;}
.x5_c00194{left:532.648000pt;}
.x4_c00194{left:534.897280pt;}
.x6_c00194{left:912.256533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15936c3577aa05d5ffd9333b.woff')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:0.921387;font-style:normal;font-weight:normal;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_e6bfb411a71d9b21b263557c.woff')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.088379;font-style:normal;font-weight:normal;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_f772b044b4e77d27c5efe724.woff')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00195;src:url('chunks/assets/font_0f57c19d003a6108eda62b84.woff')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:0.942383;font-style: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;}
.ls7_c00195{letter-spacing:-4.320000px;}
.ls10_c00195{letter-spacing:-4.173120px;}
.ls9_c00195{letter-spacing:-0.324000px;}
.lsd_c00195{letter-spacing:-0.298800px;}
.lsf_c00195{letter-spacing:-0.179280px;}
.lse_c00195{letter-spacing:-0.119520px;}
.lsb_c00195{letter-spacing:-0.108000px;}
.ls6_c00195{letter-spacing:0.000000px;}
.ls4_c00195{letter-spacing:0.059760px;}
.lsa_c00195{letter-spacing:0.108000px;}
.ls3_c00195{letter-spacing:0.119520px;}
.ls2_c00195{letter-spacing:0.179280px;}
.ls0_c00195{letter-spacing:0.216000px;}
.ls5_c00195{letter-spacing:0.240480px;}
.ls1_c00195{letter-spacing:0.298800px;}
.ls8_c00195{letter-spacing:0.324000px;}
.lsc_c00195{letter-spacing:0.337680px;}
.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:-108.000000px;}
.wsd_c00195{word-spacing:-59.760000px;}
.ws6_c00195{word-spacing:-30.060000px;}
.ws4_c00195{word-spacing:-27.108000px;}
.ws3_c00195{word-spacing:-27.000000px;}
.ws2_c00195{word-spacing:-26.676000px;}
.ws1_c00195{word-spacing:-22.680000px;}
.ws7_c00195{word-spacing:-15.238800px;}
.wsc_c00195{word-spacing:-15.059520px;}
.ws8_c00195{word-spacing:-14.940000px;}
.wsf_c00195{word-spacing:-14.820480px;}
.wsa_c00195{word-spacing:-14.641200px;}
.ws5_c00195{word-spacing:-12.397680px;}
.ws13_c00195{word-spacing:-2.160000px;}
.ws12_c00195{word-spacing:-0.324000px;}
.ws1d_c00195{word-spacing:-0.298800px;}
.ws18_c00195{word-spacing:-0.119520px;}
.ws14_c00195{word-spacing:-0.108000px;}
.ws10_c00195{word-spacing:0.000000px;}
.ws23_c00195{word-spacing:0.059760px;}
.ws15_c00195{word-spacing:0.108000px;}
.ws19_c00195{word-spacing:0.179280px;}
.ws9_c00195{word-spacing:0.239040px;}
.ws1c_c00195{word-spacing:0.298800px;}
.ws11_c00195{word-spacing:0.324000px;}
.ws16_c00195{word-spacing:0.478080px;}
.ws20_c00195{word-spacing:0.597600px;}
.wsb_c00195{word-spacing:0.699192px;}
.ws1f_c00195{word-spacing:0.776880px;}
.wse_c00195{word-spacing:0.926280px;}
.ws21_c00195{word-spacing:1.195200px;}
.ws1b_c00195{word-spacing:1.792800px;}
.ws1a_c00195{word-spacing:1.912320px;}
.ws22_c00195{word-spacing:2.031840px;}
.ws1e_c00195{word-spacing:2.509920px;}
.ws17_c00195{word-spacing:3.167280px;}
.ws24_c00195{word-spacing:4.173120px;}
._3_c00195{margin-left:-7.981200px;}
._4_c00195{margin-left:-4.725792px;}
._5_c00195{margin-left:-2.559600px;}
._0_c00195{margin-left:-1.106208px;}
._2_c00195{width:1.220400px;}
._6_c00195{width:2.664000px;}
._1_c00195{width:4.136400px;}
._7_c00195{width:17.515008px;}
.fc2_c00195{color:rgb(255,0,0);}
.fc3_c00195{color:rgb(255,255,255);}
.fc1_c00195{color:rgb(0,0,0);}
.fc0_c00195{color:rgb(158,54,17);}
.fs2_c00195{font-size:48.240000px;}
.fs3_c00195{font-size:59.760000px;}
.fs4_c00195{font-size:66.240000px;}
.fs1_c00195{font-size:108.000000px;}
.fs0_c00195{font-size:120.240000px;}
.y0_c00195{bottom:0.000000px;}
.y1b_c00195{bottom:41.437350px;}
.y1a_c00195{bottom:58.925160px;}
.y19_c00195{bottom:71.519580px;}
.y18_c00195{bottom:102.116700px;}
.y17_c00195{bottom:132.713820px;}
.y16_c00195{bottom:145.308240px;}
.y15_c00195{bottom:175.905360px;}
.y14_c00195{bottom:206.502480px;}
.y13_c00195{bottom:237.099600px;}
.y12_c00195{bottom:249.694020px;}
.y8_c00195{bottom:259.560000px;}
.y11_c00195{bottom:280.291140px;}
.y7_c00195{bottom:293.931000px;}
.y10_c00195{bottom:310.888260px;}
.y6_c00195{bottom:341.100000px;}
.yf_c00195{bottom:341.485380px;}
.ye_c00195{bottom:354.079800px;}
.y5_c00195{bottom:370.260000px;}
.yd_c00195{bottom:384.676920px;}
.y4_c00195{bottom:399.420000px;}
.yc_c00195{bottom:415.274040px;}
.yb_c00195{bottom:427.868460px;}
.y3_c00195{bottom:428.580000px;}
.ya_c00195{bottom:440.462880px;}
.y2_c00195{bottom:457.740000px;}
.y9_c00195{bottom:471.060000px;}
.y1_c00195{bottom:521.100000px;}
.h5_c00195{height:41.931211px;}
.h3_c00195{height:42.115781px;}
.h7_c00195{height:43.244297px;}
.h8_c00195{height:46.477969px;}
.h6_c00195{height:52.173281px;}
.h1_c00195{height:84.367617px;}
.h4_c00195{height:87.009609px;}
.h2_c00195{height:94.289062px;}
.h0_c00195{height:810.000000px;}
.w0_c00195{width:1080.000000px;}
.x0_c00195{left:0.000000px;}
.x1_c00195{left:91.800000px;}
.x2_c00195{left:370.800000px;}
.x3_c00195{left:580.185000px;}
.x4_c00195{left:1022.152500px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls7_c00195{letter-spacing:-3.840000pt;}
.ls10_c00195{letter-spacing:-3.709440pt;}
.ls9_c00195{letter-spacing:-0.288000pt;}
.lsd_c00195{letter-spacing:-0.265600pt;}
.lsf_c00195{letter-spacing:-0.159360pt;}
.lse_c00195{letter-spacing:-0.106240pt;}
.lsb_c00195{letter-spacing:-0.096000pt;}
.ls6_c00195{letter-spacing:0.000000pt;}
.ls4_c00195{letter-spacing:0.053120pt;}
.lsa_c00195{letter-spacing:0.096000pt;}
.ls3_c00195{letter-spacing:0.106240pt;}
.ls2_c00195{letter-spacing:0.159360pt;}
.ls0_c00195{letter-spacing:0.192000pt;}
.ls5_c00195{letter-spacing:0.213760pt;}
.ls1_c00195{letter-spacing:0.265600pt;}
.ls8_c00195{letter-spacing:0.288000pt;}
.lsc_c00195{letter-spacing:0.300160pt;}
.ws0_c00195{word-spacing:-96.000000pt;}
.wsd_c00195{word-spacing:-53.120000pt;}
.ws6_c00195{word-spacing:-26.720000pt;}
.ws4_c00195{word-spacing:-24.096000pt;}
.ws3_c00195{word-spacing:-24.000000pt;}
.ws2_c00195{word-spacing:-23.712000pt;}
.ws1_c00195{word-spacing:-20.160000pt;}
.ws7_c00195{word-spacing:-13.545600pt;}
.wsc_c00195{word-spacing:-13.386240pt;}
.ws8_c00195{word-spacing:-13.280000pt;}
.wsf_c00195{word-spacing:-13.173760pt;}
.wsa_c00195{word-spacing:-13.014400pt;}
.ws5_c00195{word-spacing:-11.020160pt;}
.ws13_c00195{word-spacing:-1.920000pt;}
.ws12_c00195{word-spacing:-0.288000pt;}
.ws1d_c00195{word-spacing:-0.265600pt;}
.ws18_c00195{word-spacing:-0.106240pt;}
.ws14_c00195{word-spacing:-0.096000pt;}
.ws10_c00195{word-spacing:0.000000pt;}
.ws23_c00195{word-spacing:0.053120pt;}
.ws15_c00195{word-spacing:0.096000pt;}
.ws19_c00195{word-spacing:0.159360pt;}
.ws9_c00195{word-spacing:0.212480pt;}
.ws1c_c00195{word-spacing:0.265600pt;}
.ws11_c00195{word-spacing:0.288000pt;}
.ws16_c00195{word-spacing:0.424960pt;}
.ws20_c00195{word-spacing:0.531200pt;}
.wsb_c00195{word-spacing:0.621504pt;}
.ws1f_c00195{word-spacing:0.690560pt;}
.wse_c00195{word-spacing:0.823360pt;}
.ws21_c00195{word-spacing:1.062400pt;}
.ws1b_c00195{word-spacing:1.593600pt;}
.ws1a_c00195{word-spacing:1.699840pt;}
.ws22_c00195{word-spacing:1.806080pt;}
.ws1e_c00195{word-spacing:2.231040pt;}
.ws17_c00195{word-spacing:2.815360pt;}
.ws24_c00195{word-spacing:3.709440pt;}
._3_c00195{margin-left:-7.094400pt;}
._4_c00195{margin-left:-4.200704pt;}
._5_c00195{margin-left:-2.275200pt;}
._0_c00195{margin-left:-0.983296pt;}
._2_c00195{width:1.084800pt;}
._6_c00195{width:2.368000pt;}
._1_c00195{width:3.676800pt;}
._7_c00195{width:15.568896pt;}
.fs2_c00195{font-size:42.880000pt;}
.fs3_c00195{font-size:53.120000pt;}
.fs4_c00195{font-size:58.880000pt;}
.fs1_c00195{font-size:96.000000pt;}
.fs0_c00195{font-size:106.880000pt;}
.y0_c00195{bottom:0.000000pt;}
.y1b_c00195{bottom:36.833200pt;}
.y1a_c00195{bottom:52.377920pt;}
.y19_c00195{bottom:63.572960pt;}
.y18_c00195{bottom:90.770400pt;}
.y17_c00195{bottom:117.967840pt;}
.y16_c00195{bottom:129.162880pt;}
.y15_c00195{bottom:156.360320pt;}
.y14_c00195{bottom:183.557760pt;}
.y13_c00195{bottom:210.755200pt;}
.y12_c00195{bottom:221.950240pt;}
.y8_c00195{bottom:230.720000pt;}
.y11_c00195{bottom:249.147680pt;}
.y7_c00195{bottom:261.272000pt;}
.y10_c00195{bottom:276.345120pt;}
.y6_c00195{bottom:303.200000pt;}
.yf_c00195{bottom:303.542560pt;}
.ye_c00195{bottom:314.737600pt;}
.y5_c00195{bottom:329.120000pt;}
.yd_c00195{bottom:341.935040pt;}
.y4_c00195{bottom:355.040000pt;}
.yc_c00195{bottom:369.132480pt;}
.yb_c00195{bottom:380.327520pt;}
.y3_c00195{bottom:380.960000pt;}
.ya_c00195{bottom:391.522560pt;}
.y2_c00195{bottom:406.880000pt;}
.y9_c00195{bottom:418.720000pt;}
.y1_c00195{bottom:463.200000pt;}
.h5_c00195{height:37.272188pt;}
.h3_c00195{height:37.436250pt;}
.h7_c00195{height:38.439375pt;}
.h8_c00195{height:41.313750pt;}
.h6_c00195{height:46.376250pt;}
.h1_c00195{height:74.993437pt;}
.h4_c00195{height:77.341875pt;}
.h2_c00195{height:83.812500pt;}
.h0_c00195{height:720.000000pt;}
.w0_c00195{width:960.000000pt;}
.x0_c00195{left:0.000000pt;}
.x1_c00195{left:81.600000pt;}
.x2_c00195{left:329.600000pt;}
.x3_c00195{left:515.720000pt;}
.x4_c00195{left:908.580000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15f8af7eb4f4e996e15dd7ff.woff')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.103516;font-style:normal;font-weight:normal;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_385fe18808b742a6b40acc6f.woff')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00196;src:url('chunks/assets/font_37d5a733317b19af32663e7f.woff')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:0.921387;font-style: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);}
.m1_c00196{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls3_c00196{letter-spacing:-4.173120px;}
.ls1_c00196{letter-spacing:-0.120240px;}
.ls0_c00196{letter-spacing:0.000000px;}
.ls2_c00196{letter-spacing:0.240480px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00196{word-spacing:-1.082160px;}
.ws3_c00196{word-spacing:-0.721440px;}
.ws0_c00196{word-spacing:0.000000px;}
.ws1_c00196{word-spacing:0.120240px;}
.ws4_c00196{word-spacing:4.173120px;}
._2_c00196{margin-left:-3.102192px;}
._1_c00196{margin-left:-1.166328px;}
._0_c00196{width:30.665520px;}
.fc3_c00196{color:rgb(255,255,255);}
.fc2_c00196{color:rgb(0,0,0);}
.fc1_c00196{color:rgb(204,153,0);}
.fc0_c00196{color:rgb(255,0,0);}
.fs2_c00196{font-size:66.240000px;}
.fs1_c00196{font-size:120.240000px;}
.fs0_c00196{font-size:228.240000px;}
.y0_c00196{bottom:0.000000px;}
.y3_c00196{bottom:41.437350px;}
.y2_c00196{bottom:528.660000px;}
.y1_c00196{bottom:671.400000px;}
.h3_c00196{height:46.477969px;}
.h2_c00196{height:104.975156px;}
.h1_c00196{height:212.191875px;}
.h0_c00196{height:810.000000px;}
.w0_c00196{width:1080.000000px;}
.x0_c00196{left:0.000000px;}
.x2_c00196{left:91.800000px;}
.x1_c00196{left:422.280000px;}
.x3_c00196{left:1022.152500px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls3_c00196{letter-spacing:-3.709440pt;}
.ls1_c00196{letter-spacing:-0.106880pt;}
.ls0_c00196{letter-spacing:0.000000pt;}
.ls2_c00196{letter-spacing:0.213760pt;}
.ws2_c00196{word-spacing:-0.961920pt;}
.ws3_c00196{word-spacing:-0.641280pt;}
.ws0_c00196{word-spacing:0.000000pt;}
.ws1_c00196{word-spacing:0.106880pt;}
.ws4_c00196{word-spacing:3.709440pt;}
._2_c00196{margin-left:-2.757504pt;}
._1_c00196{margin-left:-1.036736pt;}
._0_c00196{width:27.258240pt;}
.fs2_c00196{font-size:58.880000pt;}
.fs1_c00196{font-size:106.880000pt;}
.fs0_c00196{font-size:202.880000pt;}
.y0_c00196{bottom:0.000000pt;}
.y3_c00196{bottom:36.833200pt;}
.y2_c00196{bottom:469.920000pt;}
.y1_c00196{bottom:596.800000pt;}
.h3_c00196{height:41.313750pt;}
.h2_c00196{height:93.311250pt;}
.h1_c00196{height:188.615000pt;}
.h0_c00196{height:720.000000pt;}
.w0_c00196{width:960.000000pt;}
.x0_c00196{left:0.000000pt;}
.x2_c00196{left:81.600000pt;}
.x1_c00196{left:375.360000pt;}
.x3_c00196{left:908.580000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49d2920579017f74e54792a9.woff')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:0.921387;font-style: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;}
.ls0_c00197{letter-spacing:-4.173120px;}
.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:4.173120px;}
.fc0_c00197{color:rgb(255,255,255);}
.fs0_c00197{font-size:66.240000px;}
.y0_c00197{bottom:0.000000px;}
.y1_c00197{bottom:41.437350px;}
.h1_c00197{height:46.477969px;}
.h0_c00197{height:810.000000px;}
.w0_c00197{width:1080.000000px;}
.x0_c00197{left:0.000000px;}
.x1_c00197{left:1022.152500px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls0_c00197{letter-spacing:-3.709440pt;}
.ws0_c00197{word-spacing:3.709440pt;}
.fs0_c00197{font-size:58.880000pt;}
.y0_c00197{bottom:0.000000pt;}
.y1_c00197{bottom:36.833200pt;}
.h1_c00197{height:41.313750pt;}
.h0_c00197{height:720.000000pt;}
.w0_c00197{width:960.000000pt;}
.x0_c00197{left:0.000000pt;}
.x1_c00197{left:908.580000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce05f5b418751bc219bf99e6.woff')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_e37f1f6cfe14f334ed6e8309.woff')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.088379;font-style:normal;font-weight:normal;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_5d13dde302dbdaa6eb0dc2db.woff')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:0.913574;font-style:normal;font-weight:normal;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_c5ad082d23f1bc2299ae5573.woff')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:0.921387;font-style: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);}
.m1_c00198{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls9_c00198{letter-spacing:-7.756560px;}
.lsd_c00198{letter-spacing:-4.173120px;}
.lsa_c00198{letter-spacing:-0.287280px;}
.ls7_c00198{letter-spacing:-0.191520px;}
.lsb_c00198{letter-spacing:-0.095760px;}
.ls8_c00198{letter-spacing:0.000000px;}
.ls2_c00198{letter-spacing:0.095760px;}
.lsc_c00198{letter-spacing:0.120240px;}
.ls6_c00198{letter-spacing:0.220248px;}
.ls5_c00198{letter-spacing:0.248976px;}
.ls1_c00198{letter-spacing:0.287280px;}
.ls4_c00198{letter-spacing:0.335160px;}
.ls0_c00198{letter-spacing:15.991920px;}
.ls3_c00198{letter-spacing:24.131520px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00198{word-spacing:-95.760000px;}
.wsa_c00198{word-spacing:-30.180240px;}
.ws5_c00198{word-spacing:-24.227280px;}
.ws8_c00198{word-spacing:-24.035760px;}
.ws6_c00198{word-spacing:-23.940000px;}
.ws7_c00198{word-spacing:-23.844240px;}
.ws0_c00198{word-spacing:-23.748480px;}
.ws2_c00198{word-spacing:-1.168272px;}
.ws17_c00198{word-spacing:-0.957600px;}
.ws13_c00198{word-spacing:-0.670320px;}
.wsb_c00198{word-spacing:-0.287280px;}
.wsc_c00198{word-spacing:-0.095760px;}
.wsf_c00198{word-spacing:0.000000px;}
.ws12_c00198{word-spacing:0.095760px;}
.wse_c00198{word-spacing:0.191520px;}
.ws10_c00198{word-spacing:0.287280px;}
.ws3_c00198{word-spacing:0.440496px;}
.ws16_c00198{word-spacing:0.670320px;}
.ws9_c00198{word-spacing:0.699048px;}
.ws11_c00198{word-spacing:0.766080px;}
.ws4_c00198{word-spacing:0.823536px;}
.ws18_c00198{word-spacing:4.173120px;}
.ws15_c00198{word-spacing:6.894720px;}
.ws14_c00198{word-spacing:7.565040px;}
.wsd_c00198{word-spacing:7.756560px;}
._a_c00198{margin-left:-10.284624px;}
._2_c00198{margin-left:-8.436456px;}
._b_c00198{margin-left:-7.210728px;}
._7_c00198{margin-left:-5.218920px;}
._1_c00198{margin-left:-4.041072px;}
._0_c00198{margin-left:-3.026016px;}
._3_c00198{margin-left:-1.091664px;}
._6_c00198{width:1.244880px;}
._9_c00198{width:2.595096px;}
._5_c00198{width:6.262704px;}
._4_c00198{width:8.455608px;}
._c_c00198{width:16.193016px;}
._8_c00198{width:25.663680px;}
.fc2_c00198{color:rgb(255,255,255);}
.fc1_c00198{color:rgb(204,153,0);}
.fc0_c00198{color:rgb(0,0,0);}
.fs2_c00198{font-size:66.240000px;}
.fs0_c00198{font-size:95.760000px;}
.fs1_c00198{font-size:120.240000px;}
.y0_c00198{bottom:0.000000px;}
.ya_c00198{bottom:41.437350px;}
.y9_c00198{bottom:267.300000px;}
.y8_c00198{bottom:316.250100px;}
.y7_c00198{bottom:360.135000px;}
.y6_c00198{bottom:386.062020px;}
.y5_c00198{bottom:429.991920px;}
.y4_c00198{bottom:455.918940px;}
.y3_c00198{bottom:481.845960px;}
.y2_c00198{bottom:507.772980px;}
.y1_c00198{bottom:533.700000px;}
.h4_c00198{height:46.477969px;}
.h1_c00198{height:83.602969px;}
.h2_c00198{height:83.782969px;}
.h3_c00198{height:104.975156px;}
.h0_c00198{height:810.000000px;}
.w0_c00198{width:1080.000000px;}
.x0_c00198{left:0.000000px;}
.x1_c00198{left:91.800000px;}
.x2_c00198{left:1022.152500px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls9_c00198{letter-spacing:-6.894720pt;}
.lsd_c00198{letter-spacing:-3.709440pt;}
.lsa_c00198{letter-spacing:-0.255360pt;}
.ls7_c00198{letter-spacing:-0.170240pt;}
.lsb_c00198{letter-spacing:-0.085120pt;}
.ls8_c00198{letter-spacing:0.000000pt;}
.ls2_c00198{letter-spacing:0.085120pt;}
.lsc_c00198{letter-spacing:0.106880pt;}
.ls6_c00198{letter-spacing:0.195776pt;}
.ls5_c00198{letter-spacing:0.221312pt;}
.ls1_c00198{letter-spacing:0.255360pt;}
.ls4_c00198{letter-spacing:0.297920pt;}
.ls0_c00198{letter-spacing:14.215040pt;}
.ls3_c00198{letter-spacing:21.450240pt;}
.ws1_c00198{word-spacing:-85.120000pt;}
.wsa_c00198{word-spacing:-26.826880pt;}
.ws5_c00198{word-spacing:-21.535360pt;}
.ws8_c00198{word-spacing:-21.365120pt;}
.ws6_c00198{word-spacing:-21.280000pt;}
.ws7_c00198{word-spacing:-21.194880pt;}
.ws0_c00198{word-spacing:-21.109760pt;}
.ws2_c00198{word-spacing:-1.038464pt;}
.ws17_c00198{word-spacing:-0.851200pt;}
.ws13_c00198{word-spacing:-0.595840pt;}
.wsb_c00198{word-spacing:-0.255360pt;}
.wsc_c00198{word-spacing:-0.085120pt;}
.wsf_c00198{word-spacing:0.000000pt;}
.ws12_c00198{word-spacing:0.085120pt;}
.wse_c00198{word-spacing:0.170240pt;}
.ws10_c00198{word-spacing:0.255360pt;}
.ws3_c00198{word-spacing:0.391552pt;}
.ws16_c00198{word-spacing:0.595840pt;}
.ws9_c00198{word-spacing:0.621376pt;}
.ws11_c00198{word-spacing:0.680960pt;}
.ws4_c00198{word-spacing:0.732032pt;}
.ws18_c00198{word-spacing:3.709440pt;}
.ws15_c00198{word-spacing:6.128640pt;}
.ws14_c00198{word-spacing:6.724480pt;}
.wsd_c00198{word-spacing:6.894720pt;}
._a_c00198{margin-left:-9.141888pt;}
._2_c00198{margin-left:-7.499072pt;}
._b_c00198{margin-left:-6.409536pt;}
._7_c00198{margin-left:-4.639040pt;}
._1_c00198{margin-left:-3.592064pt;}
._0_c00198{margin-left:-2.689792pt;}
._3_c00198{margin-left:-0.970368pt;}
._6_c00198{width:1.106560pt;}
._9_c00198{width:2.306752pt;}
._5_c00198{width:5.566848pt;}
._4_c00198{width:7.516096pt;}
._c_c00198{width:14.393792pt;}
._8_c00198{width:22.812160pt;}
.fs2_c00198{font-size:58.880000pt;}
.fs0_c00198{font-size:85.120000pt;}
.fs1_c00198{font-size:106.880000pt;}
.y0_c00198{bottom:0.000000pt;}
.ya_c00198{bottom:36.833200pt;}
.y9_c00198{bottom:237.600000pt;}
.y8_c00198{bottom:281.111200pt;}
.y7_c00198{bottom:320.120000pt;}
.y6_c00198{bottom:343.166240pt;}
.y5_c00198{bottom:382.215040pt;}
.y4_c00198{bottom:405.261280pt;}
.y3_c00198{bottom:428.307520pt;}
.y2_c00198{bottom:451.353760pt;}
.y1_c00198{bottom:474.400000pt;}
.h4_c00198{height:41.313750pt;}
.h1_c00198{height:74.313750pt;}
.h2_c00198{height:74.473750pt;}
.h3_c00198{height:93.311250pt;}
.h0_c00198{height:720.000000pt;}
.w0_c00198{width:960.000000pt;}
.x0_c00198{left:0.000000pt;}
.x1_c00198{left:81.600000pt;}
.x2_c00198{left:908.580000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_660a435169a42edb75c31bf7.woff')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.074219;font-style:normal;font-weight:normal;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_19ad63c36e91f076cfb2820c.woff')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.176270;font-style: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;}
.ls0_c00199{letter-spacing:0.000000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00199{word-spacing:-59.439600px;}
.ws1_c00199{word-spacing:0.000000px;}
._1_c00199{margin-left:-2.635200px;}
._0_c00199{margin-left:-1.512000px;}
._3_c00199{width:1.185840px;}
._2_c00199{width:2.300544px;}
.fc0_c00199{color:rgb(27,40,48);}
.fs2_c00199{font-size:131.760000px;}
.fs3_c00199{font-size:131.904000px;}
.fs0_c00199{font-size:216.000000px;}
.fs1_c00199{font-size:216.144000px;}
.y0_c00199{bottom:0.000000px;}
.ya_c00199{bottom:55.440000px;}
.y9_c00199{bottom:164.730000px;}
.y8_c00199{bottom:204.330000px;}
.y5_c00199{bottom:208.620000px;}
.y7_c00199{bottom:243.975000px;}
.y4_c00199{bottom:273.420000px;}
.y6_c00199{bottom:338.115000px;}
.y3_c00199{bottom:338.220000px;}
.y2_c00199{bottom:403.050000px;}
.y1_c00199{bottom:467.850000px;}
.h3_c00199{height:123.331992px;}
.h4_c00199{height:123.466781px;}
.h1_c00199{height:182.355469px;}
.h2_c00199{height:182.477039px;}
.h0_c00199{height:810.000000px;}
.w1_c00199{width:1439.999979px;}
.w0_c00199{width:1440.000000px;}
.x0_c00199{left:0.000000px;}
.x1_c00199{left:102.383979px;}
.x3_c00199{left:103.823979px;}
.x5_c00199{left:210.389979px;}
.x4_c00199{left:223.529979px;}
.x2_c00199{left:274.289979px;}
.x9_c00199{left:804.779979px;}
.x7_c00199{left:823.319979px;}
.x8_c00199{left:955.619979px;}
.x6_c00199{left:983.159979px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws0_c00199{word-spacing:-52.835200pt;}
.ws1_c00199{word-spacing:0.000000pt;}
._1_c00199{margin-left:-2.342400pt;}
._0_c00199{margin-left:-1.344000pt;}
._3_c00199{width:1.054080pt;}
._2_c00199{width:2.044928pt;}
.fs2_c00199{font-size:117.120000pt;}
.fs3_c00199{font-size:117.248000pt;}
.fs0_c00199{font-size:192.000000pt;}
.fs1_c00199{font-size:192.128000pt;}
.y0_c00199{bottom:0.000000pt;}
.ya_c00199{bottom:49.280000pt;}
.y9_c00199{bottom:146.426667pt;}
.y8_c00199{bottom:181.626667pt;}
.y5_c00199{bottom:185.440000pt;}
.y7_c00199{bottom:216.866667pt;}
.y4_c00199{bottom:243.040000pt;}
.y6_c00199{bottom:300.546667pt;}
.y3_c00199{bottom:300.640000pt;}
.y2_c00199{bottom:358.266667pt;}
.y1_c00199{bottom:415.866667pt;}
.h3_c00199{height:109.628437pt;}
.h4_c00199{height:109.748250pt;}
.h1_c00199{height:162.093750pt;}
.h2_c00199{height:162.201812pt;}
.h0_c00199{height:720.000000pt;}
.w1_c00199{width:1279.999981pt;}
.w0_c00199{width:1280.000000pt;}
.x0_c00199{left:0.000000pt;}
.x1_c00199{left:91.007981pt;}
.x3_c00199{left:92.287981pt;}
.x5_c00199{left:187.013314pt;}
.x4_c00199{left:198.693314pt;}
.x2_c00199{left:243.813314pt;}
.x9_c00199{left:715.359981pt;}
.x7_c00199{left:731.839981pt;}
.x8_c00199{left:849.439981pt;}
.x6_c00199{left:873.919981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10dc4271b96abcfb853ed570.woff')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.074219;font-style:normal;font-weight:normal;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_c0efd3771d3b36973fe60c26.woff')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.176270;font-style:normal;font-weight:normal;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_034f45e72a2877559b3df3bf.woff')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:1.176270;font-style: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;}
.v1_c00200{vertical-align:255.180000px;}
.ls0_c00200{letter-spacing:0.000000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00200{word-spacing:-58.500000px;}
.ws3_c00200{word-spacing:0.000000px;}
.ws0_c00200{word-spacing:728.154000px;}
.ws1_c00200{word-spacing:1054.188000px;}
._1_c00200{margin-left:-4.214592px;}
._0_c00200{width:1.170000px;}
.fc1_c00200{color:rgb(255,255,255);}
.fc0_c00200{color:rgb(27,40,48);}
.fs1_c00200{font-size:234.000000px;}
.fs2_c00200{font-size:234.144000px;}
.fs0_c00200{font-size:264.240000px;}
.y0_c00200{bottom:0.000000px;}
.y6_c00200{bottom:252.210000px;}
.y5_c00200{bottom:315.930000px;}
.y1_c00200{bottom:389.985000px;}
.y4_c00200{bottom:491.250000px;}
.y3_c00200{bottom:555.195000px;}
.y2_c00200{bottom:618.915000px;}
.h2_c00200{height:219.032227px;}
.h3_c00200{height:219.167016px;}
.h1_c00200{height:223.081523px;}
.h5_c00200{height:473.912227px;}
.h4_c00200{height:474.347016px;}
.h0_c00200{height:810.000000px;}
.w1_c00200{width:1439.999979px;}
.w0_c00200{width:1440.000000px;}
.x0_c00200{left:0.000000px;}
.x1_c00200{left:240.554979px;}
.x2_c00200{left:591.914979px;}
.x3_c00200{left:610.634979px;}
.x6_c00200{left:628.994979px;}
.x5_c00200{left:682.634979px;}
.x4_c00200{left:686.054979px;}
.x7_c00200{left:1019.909979px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.v1_c00200{vertical-align:226.826667pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws2_c00200{word-spacing:-52.000000pt;}
.ws3_c00200{word-spacing:0.000000pt;}
.ws0_c00200{word-spacing:647.248000pt;}
.ws1_c00200{word-spacing:937.056000pt;}
._1_c00200{margin-left:-3.746304pt;}
._0_c00200{width:1.040000pt;}
.fs1_c00200{font-size:208.000000pt;}
.fs2_c00200{font-size:208.128000pt;}
.fs0_c00200{font-size:234.880000pt;}
.y0_c00200{bottom:0.000000pt;}
.y6_c00200{bottom:224.186667pt;}
.y5_c00200{bottom:280.826667pt;}
.y1_c00200{bottom:346.653333pt;}
.y4_c00200{bottom:436.666667pt;}
.y3_c00200{bottom:493.506667pt;}
.y2_c00200{bottom:550.146667pt;}
.h2_c00200{height:194.695312pt;}
.h3_c00200{height:194.815125pt;}
.h1_c00200{height:198.294688pt;}
.h5_c00200{height:421.255313pt;}
.h4_c00200{height:421.641792pt;}
.h0_c00200{height:720.000000pt;}
.w1_c00200{width:1279.999981pt;}
.w0_c00200{width:1280.000000pt;}
.x0_c00200{left:0.000000pt;}
.x1_c00200{left:213.826648pt;}
.x2_c00200{left:526.146648pt;}
.x3_c00200{left:542.786648pt;}
.x6_c00200{left:559.106648pt;}
.x5_c00200{left:606.786648pt;}
.x4_c00200{left:609.826648pt;}
.x7_c00200{left:906.586648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15f048308ca012bf10873311.woff')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.074219;font-style:normal;font-weight:normal;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_8064cfba5b3ed91d4e9860af.woff')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.074219;font-style:normal;font-weight:normal;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_97fcb86986c3c63569d3ed4d.woff')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.176270;font-style:normal;font-weight:normal;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_42f2198ecd6d3718af7bb145.woff')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:1.176270;font-style: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.000000px;}
.ls3_c00201{letter-spacing:0.017280px;}
.ls0_c00201{letter-spacing:30.111840px;}
.ls1_c00201{letter-spacing:30.326400px;}
.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.366336px;}
.ws1_c00201{word-spacing:0.000000px;}
._1_c00201{margin-left:-2.406240px;}
._0_c00201{margin-left:-1.321920px;}
._3_c00201{width:1.188000px;}
._2_c00201{width:25.926240px;}
.fc1_c00201{color:rgb(0,0,0);}
.fc0_c00201{color:rgb(27,40,48);}
.fs3_c00201{font-size:108.000000px;}
.fs4_c00201{font-size:108.144000px;}
.fs1_c00201{font-size:120.240000px;}
.fs2_c00201{font-size:120.384000px;}
.fs0_c00201{font-size:264.384000px;}
.y0_c00201{bottom:0.000000px;}
.yd_c00201{bottom:102.456000px;}
.yc_c00201{bottom:131.976000px;}
.y8_c00201{bottom:152.460000px;}
.yb_c00201{bottom:161.535000px;}
.y7_c00201{bottom:181.980000px;}
.ya_c00201{bottom:202.395000px;}
.y9_c00201{bottom:231.915000px;}
.y6_c00201{bottom:431.430000px;}
.y5_c00201{bottom:464.220000px;}
.y4_c00201{bottom:496.980000px;}
.y3_c00201{bottom:529.740000px;}
.y2_c00201{bottom:562.500000px;}
.y1_c00201{bottom:679.035000px;}
.h4_c00201{height:101.091797px;}
.h5_c00201{height:101.226586px;}
.h2_c00201{height:112.548867px;}
.h3_c00201{height:112.683656px;}
.h1_c00201{height:223.203094px;}
.h0_c00201{height:810.000000px;}
.w1_c00201{width:1439.999979px;}
.w0_c00201{width:1440.000000px;}
.x0_c00201{left:0.000000px;}
.x1_c00201{left:261.464979px;}
.x7_c00201{left:396.509979px;}
.x6_c00201{left:409.649979px;}
.x3_c00201{left:547.049979px;}
.x2_c00201{left:551.549979px;}
.x4_c00201{left:556.769979px;}
.x5_c00201{left:566.489979px;}
.xb_c00201{left:797.369979px;}
.x8_c00201{left:799.529979px;}
.xa_c00201{left:806.729979px;}
.x9_c00201{left:853.169979px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls2_c00201{letter-spacing:0.000000pt;}
.ls3_c00201{letter-spacing:0.015360pt;}
.ls0_c00201{letter-spacing:26.766080pt;}
.ls1_c00201{letter-spacing:26.956800pt;}
.ws0_c00201{word-spacing:-0.325632pt;}
.ws1_c00201{word-spacing:0.000000pt;}
._1_c00201{margin-left:-2.138880pt;}
._0_c00201{margin-left:-1.175040pt;}
._3_c00201{width:1.056000pt;}
._2_c00201{width:23.045547pt;}
.fs3_c00201{font-size:96.000000pt;}
.fs4_c00201{font-size:96.128000pt;}
.fs1_c00201{font-size:106.880000pt;}
.fs2_c00201{font-size:107.008000pt;}
.fs0_c00201{font-size:235.008000pt;}
.y0_c00201{bottom:0.000000pt;}
.yd_c00201{bottom:91.072000pt;}
.yc_c00201{bottom:117.312000pt;}
.y8_c00201{bottom:135.520000pt;}
.yb_c00201{bottom:143.586667pt;}
.y7_c00201{bottom:161.760000pt;}
.ya_c00201{bottom:179.906667pt;}
.y9_c00201{bottom:206.146667pt;}
.y6_c00201{bottom:383.493333pt;}
.y5_c00201{bottom:412.640000pt;}
.y4_c00201{bottom:441.760000pt;}
.y3_c00201{bottom:470.880000pt;}
.y2_c00201{bottom:500.000000pt;}
.y1_c00201{bottom:603.586667pt;}
.h4_c00201{height:89.859375pt;}
.h5_c00201{height:89.979187pt;}
.h2_c00201{height:100.043437pt;}
.h3_c00201{height:100.163250pt;}
.h1_c00201{height:198.402750pt;}
.h0_c00201{height:720.000000pt;}
.w1_c00201{width:1279.999981pt;}
.w0_c00201{width:1280.000000pt;}
.x0_c00201{left:0.000000pt;}
.x1_c00201{left:232.413314pt;}
.x7_c00201{left:352.453314pt;}
.x6_c00201{left:364.133314pt;}
.x3_c00201{left:486.266648pt;}
.x2_c00201{left:490.266648pt;}
.x4_c00201{left:494.906648pt;}
.x5_c00201{left:503.546648pt;}
.xb_c00201{left:708.773314pt;}
.x8_c00201{left:710.693314pt;}
.xa_c00201{left:717.093314pt;}
.x9_c00201{left:758.373314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d36673d126b3fbb51be21a1.woff')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.074219;font-style:normal;font-weight:normal;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_ec3931d8c8507e3ee00c08cc.woff')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.074219;font-style:normal;font-weight:normal;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_023e415f1868cc1737b02df5.woff')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.074219;font-style: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;}
.ls2_c00202{letter-spacing:0.000000px;}
.ls0_c00202{letter-spacing:23.559264px;}
.ls1_c00202{letter-spacing:23.621040px;}
.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:-1.694880px;}
.ws1_c00202{word-spacing:0.000000px;}
._0_c00202{margin-left:-1.539072px;}
._1_c00202{width:1.013664px;}
._2_c00202{width:22.083840px;}
.fc0_c00202{color:rgb(27,40,48);}
.fs1_c00202{font-size:84.240000px;}
.fs2_c00202{font-size:84.384000px;}
.fs0_c00202{font-size:192.384000px;}
.y0_c00202{bottom:0.000000px;}
.y5_c00202{bottom:43.308000px;}
.y4_c00202{bottom:68.508000px;}
.y3_c00202{bottom:93.744000px;}
.y2_c00202{bottom:118.944000px;}
.y1_c00202{bottom:680.865000px;}
.h2_c00202{height:71.118633px;}
.h3_c00202{height:71.240203px;}
.h1_c00202{height:162.417938px;}
.h0_c00202{height:810.000000px;}
.w1_c00202{width:1439.999979px;}
.w0_c00202{width:1440.000000px;}
.x0_c00202{left:0.000000px;}
.x2_c00202{left:236.909979px;}
.x3_c00202{left:265.889979px;}
.x4_c00202{left:277.589979px;}
.x1_c00202{left:290.264979px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls2_c00202{letter-spacing:0.000000pt;}
.ls0_c00202{letter-spacing:20.941568pt;}
.ls1_c00202{letter-spacing:20.996480pt;}
.ws0_c00202{word-spacing:-1.506560pt;}
.ws1_c00202{word-spacing:0.000000pt;}
._0_c00202{margin-left:-1.368064pt;}
._1_c00202{width:0.901035pt;}
._2_c00202{width:19.630080pt;}
.fs1_c00202{font-size:74.880000pt;}
.fs2_c00202{font-size:75.008000pt;}
.fs0_c00202{font-size:171.008000pt;}
.y0_c00202{bottom:0.000000pt;}
.y5_c00202{bottom:38.496000pt;}
.y4_c00202{bottom:60.896000pt;}
.y3_c00202{bottom:83.328000pt;}
.y2_c00202{bottom:105.728000pt;}
.y1_c00202{bottom:605.213333pt;}
.h2_c00202{height:63.216562pt;}
.h3_c00202{height:63.324625pt;}
.h1_c00202{height:144.371500pt;}
.h0_c00202{height:720.000000pt;}
.w1_c00202{width:1279.999981pt;}
.w0_c00202{width:1280.000000pt;}
.x0_c00202{left:0.000000pt;}
.x2_c00202{left:210.586648pt;}
.x3_c00202{left:236.346648pt;}
.x4_c00202{left:246.746648pt;}
.x1_c00202{left:258.013314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_585085c1edada5d085c7c2d1.woff')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.074219;font-style:normal;font-weight:normal;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_d4f128a756a2b765bcb5ac73.woff')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.074219;font-style:normal;font-weight:normal;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_216e1c2295f90b863bb24228.woff')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.176270;font-style:normal;font-weight:normal;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_e2072a8caeded6a7c6fdf4c7.woff')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:1.176270;font-style:normal;font-weight:normal;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_2b1819d054bd247d11d0189e.woff')format("woff");}.ff5_c00203{font-family:ff5_c00203;line-height:1.148438;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls4_c00203{letter-spacing:-0.288000px;}
.ls3_c00203{letter-spacing:0.000000px;}
.ls1_c00203{letter-spacing:0.259200px;}
.ls0_c00203{letter-spacing:0.316800px;}
.ls2_c00203{letter-spacing:19.448640px;}
.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:-19.440000px;}
.ws1_c00203{word-spacing:0.000000px;}
._5_c00203{margin-left:-4.368960px;}
._4_c00203{margin-left:-2.316480px;}
._2_c00203{margin-left:-1.307520px;}
._0_c00203{width:1.074240px;}
._3_c00203{width:2.303040px;}
._1_c00203{width:20.753280px;}
.fc1_c00203{color:rgb(255,255,255);}
.fc0_c00203{color:rgb(27,40,48);}
.fs1_c00203{font-size:77.760000px;}
.fs0_c00203{font-size:264.240000px;}
.y0_c00203{bottom:0.000000px;}
.ye_c00203{bottom:98.964000px;}
.yd_c00203{bottom:174.030000px;}
.yc_c00203{bottom:249.090000px;}
.y3_c00203{bottom:306.180000px;}
.yb_c00203{bottom:324.150000px;}
.ya_c00203{bottom:384.300000px;}
.y2_c00203{bottom:385.380000px;}
.y9_c00203{bottom:414.000000px;}
.y1_c00203{bottom:464.610000px;}
.y8_c00203{bottom:474.270000px;}
.y7_c00203{bottom:549.330000px;}
.y6_c00203{bottom:624.390000px;}
.y5_c00203{bottom:688.680000px;}
.y4_c00203{bottom:710.100000px;}
.h2_c00203{height:72.786094px;}
.h1_c00203{height:223.081523px;}
.h0_c00203{height:810.000000px;}
.w1_c00203{width:1439.999979px;}
.w0_c00203{width:1440.000000px;}
.x0_c00203{left:0.000000px;}
.x1_c00203{left:120.059979px;}
.x2_c00203{left:140.759979px;}
.x3_c00203{left:227.339979px;}
.x4_c00203{left:549.794979px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls4_c00203{letter-spacing:-0.256000pt;}
.ls3_c00203{letter-spacing:0.000000pt;}
.ls1_c00203{letter-spacing:0.230400pt;}
.ls0_c00203{letter-spacing:0.281600pt;}
.ls2_c00203{letter-spacing:17.287680pt;}
.ws0_c00203{word-spacing:-17.280000pt;}
.ws1_c00203{word-spacing:0.000000pt;}
._5_c00203{margin-left:-3.883520pt;}
._4_c00203{margin-left:-2.059093pt;}
._2_c00203{margin-left:-1.162240pt;}
._0_c00203{width:0.954880pt;}
._3_c00203{width:2.047147pt;}
._1_c00203{width:18.447360pt;}
.fs1_c00203{font-size:69.120000pt;}
.fs0_c00203{font-size:234.880000pt;}
.y0_c00203{bottom:0.000000pt;}
.ye_c00203{bottom:87.968000pt;}
.yd_c00203{bottom:154.693333pt;}
.yc_c00203{bottom:221.413333pt;}
.y3_c00203{bottom:272.160000pt;}
.yb_c00203{bottom:288.133333pt;}
.ya_c00203{bottom:341.600000pt;}
.y2_c00203{bottom:342.560000pt;}
.y9_c00203{bottom:368.000000pt;}
.y1_c00203{bottom:412.986667pt;}
.y8_c00203{bottom:421.573333pt;}
.y7_c00203{bottom:488.293333pt;}
.y6_c00203{bottom:555.013333pt;}
.y5_c00203{bottom:612.160000pt;}
.y4_c00203{bottom:631.200000pt;}
.h2_c00203{height:64.698750pt;}
.h1_c00203{height:198.294688pt;}
.h0_c00203{height:720.000000pt;}
.w1_c00203{width:1279.999981pt;}
.w0_c00203{width:1280.000000pt;}
.x0_c00203{left:0.000000pt;}
.x1_c00203{left:106.719981pt;}
.x2_c00203{left:125.119981pt;}
.x3_c00203{left:202.079981pt;}
.x4_c00203{left:488.706648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b921827142829c4683fc6e53.woff')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.074219;font-style:normal;font-weight:normal;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_7542a4320711684fd692ca47.woff')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.074219;font-style:normal;font-weight:normal;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_35f91bc5cffd42b8788be38c.woff')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:1.176270;font-style:normal;font-weight:normal;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_eafb308c8f5255a9e63b7c39.woff')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:1.176270;font-style: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;}
.ls3_c00204{letter-spacing:0.000000px;}
.ls0_c00204{letter-spacing:0.276600px;}
.ls4_c00204{letter-spacing:0.504000px;}
.ls1_c00204{letter-spacing:26.640000px;}
.ls2_c00204{letter-spacing:27.288000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00204{word-spacing:-72.705600px;}
.ws3_c00204{word-spacing:-27.000000px;}
.ws2_c00204{word-spacing:-0.491904px;}
.ws4_c00204{word-spacing:0.000000px;}
.ws1_c00204{word-spacing:0.360000px;}
._1_c00204{margin-left:-2.643840px;}
._0_c00204{margin-left:-1.586304px;}
._3_c00204{width:1.282560px;}
._2_c00204{width:70.094112px;}
.fc1_c00204{color:rgb(0,0,0);}
.fc0_c00204{color:rgb(27,40,48);}
.fs1_c00204{font-size:90.000000px;}
.fs2_c00204{font-size:90.144000px;}
.fs3_c00204{font-size:108.000000px;}
.fs4_c00204{font-size:108.144000px;}
.fs0_c00204{font-size:264.384000px;}
.y0_c00204{bottom:0.000000px;}
.y14_c00204{bottom:93.456000px;}
.y19_c00204{bottom:108.252000px;}
.y13_c00204{bottom:122.976000px;}
.y1d_c00204{bottom:123.048000px;}
.y18_c00204{bottom:137.772000px;}
.y1c_c00204{bottom:152.385000px;}
.y12_c00204{bottom:152.535000px;}
.y17_c00204{bottom:167.115000px;}
.y11_c00204{bottom:181.875000px;}
.y1b_c00204{bottom:181.905000px;}
.y16_c00204{bottom:196.665000px;}
.y10_c00204{bottom:211.395000px;}
.y1a_c00204{bottom:211.425000px;}
.y15_c00204{bottom:226.185000px;}
.yf_c00204{bottom:240.915000px;}
.ye_c00204{bottom:427.140000px;}
.y7_c00204{bottom:439.200000px;}
.yd_c00204{bottom:451.650000px;}
.y6_c00204{bottom:463.860000px;}
.yc_c00204{bottom:476.310000px;}
.y5_c00204{bottom:488.340000px;}
.yb_c00204{bottom:500.790000px;}
.y4_c00204{bottom:513.030000px;}
.ya_c00204{bottom:525.450000px;}
.y3_c00204{bottom:537.510000px;}
.y9_c00204{bottom:549.930000px;}
.y2_c00204{bottom:562.170000px;}
.y8_c00204{bottom:574.590000px;}
.y1_c00204{bottom:679.035000px;}
.h2_c00204{height:84.243164px;}
.h3_c00204{height:84.377953px;}
.h4_c00204{height:101.091797px;}
.h5_c00204{height:101.226586px;}
.h1_c00204{height:223.203094px;}
.h0_c00204{height:810.000000px;}
.w1_c00204{width:1439.999979px;}
.w0_c00204{width:1440.000000px;}
.x0_c00204{left:0.000000px;}
.x11_c00204{left:175.319979px;}
.x13_c00204{left:190.079979px;}
.x1_c00204{left:212.654979px;}
.x12_c00204{left:215.639979px;}
.xf_c00204{left:223.199979px;}
.x10_c00204{left:256.319979px;}
.x4_c00204{left:314.714979px;}
.x3_c00204{left:322.994979px;}
.x6_c00204{left:324.794979px;}
.x5_c00204{left:329.654979px;}
.x2_c00204{left:334.694979px;}
.x7_c00204{left:376.094979px;}
.x15_c00204{left:602.609979px;}
.x16_c00204{left:608.189979px;}
.x17_c00204{left:622.589979px;}
.x14_c00204{left:628.529979px;}
.xd_c00204{left:785.264979px;}
.xc_c00204{left:787.424979px;}
.x9_c00204{left:801.464979px;}
.x8_c00204{left:812.984979px;}
.xe_c00204{left:818.924979px;}
.xa_c00204{left:824.684979px;}
.xb_c00204{left:834.404979px;}
.x18_c00204{left:1033.124979px;}
.x19_c00204{left:1054.769979px;}
.x1a_c00204{left:1070.789979px;}
.x1b_c00204{left:1075.109979px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls3_c00204{letter-spacing:0.000000pt;}
.ls0_c00204{letter-spacing:0.245867pt;}
.ls4_c00204{letter-spacing:0.448000pt;}
.ls1_c00204{letter-spacing:23.680000pt;}
.ls2_c00204{letter-spacing:24.256000pt;}
.ws0_c00204{word-spacing:-64.627200pt;}
.ws3_c00204{word-spacing:-24.000000pt;}
.ws2_c00204{word-spacing:-0.437248pt;}
.ws4_c00204{word-spacing:0.000000pt;}
.ws1_c00204{word-spacing:0.320000pt;}
._1_c00204{margin-left:-2.350080pt;}
._0_c00204{margin-left:-1.410048pt;}
._3_c00204{width:1.140053pt;}
._2_c00204{width:62.305877pt;}
.fs1_c00204{font-size:80.000000pt;}
.fs2_c00204{font-size:80.128000pt;}
.fs3_c00204{font-size:96.000000pt;}
.fs4_c00204{font-size:96.128000pt;}
.fs0_c00204{font-size:235.008000pt;}
.y0_c00204{bottom:0.000000pt;}
.y14_c00204{bottom:83.072000pt;}
.y19_c00204{bottom:96.224000pt;}
.y13_c00204{bottom:109.312000pt;}
.y1d_c00204{bottom:109.376000pt;}
.y18_c00204{bottom:122.464000pt;}
.y1c_c00204{bottom:135.453333pt;}
.y12_c00204{bottom:135.586667pt;}
.y17_c00204{bottom:148.546667pt;}
.y11_c00204{bottom:161.666667pt;}
.y1b_c00204{bottom:161.693333pt;}
.y16_c00204{bottom:174.813333pt;}
.y10_c00204{bottom:187.906667pt;}
.y1a_c00204{bottom:187.933333pt;}
.y15_c00204{bottom:201.053333pt;}
.yf_c00204{bottom:214.146667pt;}
.ye_c00204{bottom:379.680000pt;}
.y7_c00204{bottom:390.400000pt;}
.yd_c00204{bottom:401.466667pt;}
.y6_c00204{bottom:412.320000pt;}
.yc_c00204{bottom:423.386667pt;}
.y5_c00204{bottom:434.080000pt;}
.yb_c00204{bottom:445.146667pt;}
.y4_c00204{bottom:456.026667pt;}
.ya_c00204{bottom:467.066667pt;}
.y3_c00204{bottom:477.786667pt;}
.y9_c00204{bottom:488.826667pt;}
.y2_c00204{bottom:499.706667pt;}
.y8_c00204{bottom:510.746667pt;}
.y1_c00204{bottom:603.586667pt;}
.h2_c00204{height:74.882812pt;}
.h3_c00204{height:75.002625pt;}
.h4_c00204{height:89.859375pt;}
.h5_c00204{height:89.979187pt;}
.h1_c00204{height:198.402750pt;}
.h0_c00204{height:720.000000pt;}
.w1_c00204{width:1279.999981pt;}
.w0_c00204{width:1280.000000pt;}
.x0_c00204{left:0.000000pt;}
.x11_c00204{left:155.839981pt;}
.x13_c00204{left:168.959981pt;}
.x1_c00204{left:189.026648pt;}
.x12_c00204{left:191.679981pt;}
.xf_c00204{left:198.399981pt;}
.x10_c00204{left:227.839981pt;}
.x4_c00204{left:279.746648pt;}
.x3_c00204{left:287.106648pt;}
.x6_c00204{left:288.706648pt;}
.x5_c00204{left:293.026648pt;}
.x2_c00204{left:297.506648pt;}
.x7_c00204{left:334.306648pt;}
.x15_c00204{left:535.653314pt;}
.x16_c00204{left:540.613314pt;}
.x17_c00204{left:553.413314pt;}
.x14_c00204{left:558.693314pt;}
.xd_c00204{left:698.013314pt;}
.xc_c00204{left:699.933314pt;}
.x9_c00204{left:712.413314pt;}
.x8_c00204{left:722.653314pt;}
.xe_c00204{left:727.933314pt;}
.xa_c00204{left:733.053314pt;}
.xb_c00204{left:741.693314pt;}
.x18_c00204{left:918.333314pt;}
.x19_c00204{left:937.573314pt;}
.x1a_c00204{left:951.813314pt;}
.x1b_c00204{left:955.653314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1ff4b6a553339d7faa41c18.woff')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.074219;font-style:normal;font-weight:normal;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_93d592ef506e514e33bbf38c.woff')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.074219;font-style:normal;font-weight:normal;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_77c844dc2ccbe13a704ff49d.woff')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.074219;font-style: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;}
.ls0_c00205{letter-spacing:0.000000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:0.000000px;}
._1_c00205{margin-left:-1.080000px;}
._0_c00205{width:1.200000px;}
.fc0_c00205{color:rgb(27,40,48);}
.fs2_c00205{font-size:90.000000px;}
.fs1_c00205{font-size:239.760000px;}
.fs0_c00205{font-size:239.904000px;}
.y0_c00205{bottom:0.000000px;}
.y4_c00205{bottom:49.104000px;}
.y3_c00205{bottom:73.404000px;}
.y2_c00205{bottom:632.190000px;}
.y1_c00205{bottom:704.235000px;}
.h3_c00205{height:75.981445px;}
.h2_c00205{height:202.414570px;}
.h1_c00205{height:202.536141px;}
.h0_c00205{height:810.000000px;}
.w1_c00205{width:1439.999979px;}
.w0_c00205{width:1440.000000px;}
.x0_c00205{left:0.000000px;}
.x1_c00205{left:199.184979px;}
.x3_c00205{left:201.749979px;}
.x2_c00205{left:402.629979px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws0_c00205{word-spacing:0.000000pt;}
._1_c00205{margin-left:-0.960000pt;}
._0_c00205{width:1.066667pt;}
.fs2_c00205{font-size:80.000000pt;}
.fs1_c00205{font-size:213.120000pt;}
.fs0_c00205{font-size:213.248000pt;}
.y0_c00205{bottom:0.000000pt;}
.y4_c00205{bottom:43.648000pt;}
.y3_c00205{bottom:65.248000pt;}
.y2_c00205{bottom:561.946667pt;}
.y1_c00205{bottom:625.986667pt;}
.h3_c00205{height:67.539062pt;}
.h2_c00205{height:179.924062pt;}
.h1_c00205{height:180.032125pt;}
.h0_c00205{height:720.000000pt;}
.w1_c00205{width:1279.999981pt;}
.w0_c00205{width:1280.000000pt;}
.x0_c00205{left:0.000000pt;}
.x1_c00205{left:177.053314pt;}
.x3_c00205{left:179.333314pt;}
.x2_c00205{left:357.893314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5434f7e98dfe761226d611e.woff')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.074219;font-style:normal;font-weight:normal;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_7b8cd201450453dcd7de8157.woff')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.074219;font-style:normal;font-weight:normal;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_fd27a563857706b74fd846f5.woff')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.176270;font-style:normal;font-weight:normal;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_0b0e3095d9e8761b3691a52f.woff')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:1.176270;font-style:normal;font-weight:normal;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_dd15c86c0fac2b96b46b8785.woff')format("woff");}.ff5_c00206{font-family:ff5_c00206;line-height:1.148438;font-style: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;}
.ls2_c00206{letter-spacing:0.000000px;}
.ls0_c00206{letter-spacing:0.175800px;}
.ls1_c00206{letter-spacing:36.990720px;}
.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:-149.760000px;}
.ws2_c00206{word-spacing:-46.134000px;}
.ws1_c00206{word-spacing:-0.032160px;}
.ws3_c00206{word-spacing:0.000000px;}
._3_c00206{margin-left:-3.532464px;}
._0_c00206{margin-left:-2.379456px;}
._1_c00206{margin-left:-1.048320px;}
._2_c00206{width:1.647360px;}
._5_c00206{width:3.004704px;}
._4_c00206{width:38.997264px;}
.fc1_c00206{color:rgb(0,0,0);}
.fc0_c00206{color:rgb(27,40,48);}
.fs2_c00206{font-size:149.760000px;}
.fs3_c00206{font-size:149.904000px;}
.fs4_c00206{font-size:167.760000px;}
.fs1_c00206{font-size:264.240000px;}
.fs0_c00206{font-size:264.384000px;}
.y0_c00206{bottom:0.000000px;}
.ya_c00206{bottom:107.136000px;}
.y9_c00206{bottom:148.176000px;}
.y8_c00206{bottom:256.425000px;}
.y7_c00206{bottom:297.465000px;}
.y2_c00206{bottom:345.780000px;}
.y1_c00206{bottom:425.010000px;}
.y6_c00206{bottom:446.790000px;}
.y5_c00206{bottom:514.155000px;}
.y4_c00206{bottom:555.045000px;}
.y3_c00206{bottom:596.085000px;}
.yb_c00206{bottom:702.930000px;}
.h5_c00206{height:136.012500px;}
.h3_c00206{height:140.180625px;}
.h4_c00206{height:140.315414px;}
.h6_c00206{height:141.629414px;}
.h2_c00206{height:223.081523px;}
.h1_c00206{height:223.203094px;}
.h0_c00206{height:810.000000px;}
.w1_c00206{width:1439.999979px;}
.w0_c00206{width:1440.000000px;}
.x0_c00206{left:0.000000px;}
.x1_c00206{left:106.199979px;}
.x2_c00206{left:158.219979px;}
.x3_c00206{left:551.729979px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls2_c00206{letter-spacing:0.000000pt;}
.ls0_c00206{letter-spacing:0.156267pt;}
.ls1_c00206{letter-spacing:32.880640pt;}
.ws0_c00206{word-spacing:-133.120000pt;}
.ws2_c00206{word-spacing:-41.008000pt;}
.ws1_c00206{word-spacing:-0.028587pt;}
.ws3_c00206{word-spacing:0.000000pt;}
._3_c00206{margin-left:-3.139968pt;}
._0_c00206{margin-left:-2.115072pt;}
._1_c00206{margin-left:-0.931840pt;}
._2_c00206{width:1.464320pt;}
._5_c00206{width:2.670848pt;}
._4_c00206{width:34.664235pt;}
.fs2_c00206{font-size:133.120000pt;}
.fs3_c00206{font-size:133.248000pt;}
.fs4_c00206{font-size:149.120000pt;}
.fs1_c00206{font-size:234.880000pt;}
.fs0_c00206{font-size:235.008000pt;}
.y0_c00206{bottom:0.000000pt;}
.ya_c00206{bottom:95.232000pt;}
.y9_c00206{bottom:131.712000pt;}
.y8_c00206{bottom:227.933333pt;}
.y7_c00206{bottom:264.413333pt;}
.y2_c00206{bottom:307.360000pt;}
.y1_c00206{bottom:377.786667pt;}
.y6_c00206{bottom:397.146667pt;}
.y5_c00206{bottom:457.026667pt;}
.y4_c00206{bottom:493.373333pt;}
.y3_c00206{bottom:529.853333pt;}
.yb_c00206{bottom:624.826667pt;}
.h5_c00206{height:120.900000pt;}
.h3_c00206{height:124.605000pt;}
.h4_c00206{height:124.724812pt;}
.h6_c00206{height:125.892812pt;}
.h2_c00206{height:198.294688pt;}
.h1_c00206{height:198.402750pt;}
.h0_c00206{height:720.000000pt;}
.w1_c00206{width:1279.999981pt;}
.w0_c00206{width:1280.000000pt;}
.x0_c00206{left:0.000000pt;}
.x1_c00206{left:94.399981pt;}
.x2_c00206{left:140.639981pt;}
.x3_c00206{left:490.426648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03aeec5c1a1a7713c6500173.woff')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.074219;font-style:normal;font-weight:normal;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_a740a9bb4b1c9af5dc223b5f.woff')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.074219;font-style:normal;font-weight:normal;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_e9436cdfe6058a7059a0f0ba.woff')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:1.176270;font-style:normal;font-weight:normal;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_be96ee58bc04e91cc83c9c9f.woff')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.176270;font-style: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;}
.ls1_c00207{letter-spacing:0.000000px;}
.ls0_c00207{letter-spacing:0.015120px;}
.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:-52.866000px;}
.ws1_c00207{word-spacing:-39.060000px;}
.ws2_c00207{word-spacing:0.000000px;}
._0_c00207{margin-left:-2.814912px;}
._1_c00207{margin-left:-1.249920px;}
._2_c00207{width:1.064352px;}
.fc1_c00207{color:rgb(0,0,0);}
.fc0_c00207{color:rgb(27,40,48);}
.fs3_c00207{font-size:156.240000px;}
.fs2_c00207{font-size:156.384000px;}
.fs1_c00207{font-size:192.240000px;}
.fs0_c00207{font-size:192.384000px;}
.y0_c00207{bottom:0.000000px;}
.y5_c00207{bottom:266.610000px;}
.ya_c00207{bottom:317.550000px;}
.y4_c00207{bottom:324.255000px;}
.y7_c00207{bottom:341.640000px;}
.y9_c00207{bottom:360.030000px;}
.y3_c00207{bottom:381.855000px;}
.y6_c00207{bottom:384.330000px;}
.y8_c00207{bottom:402.735000px;}
.y2_c00207{bottom:439.455000px;}
.y1_c00207{bottom:497.085000px;}
.h4_c00207{height:146.246133px;}
.h3_c00207{height:146.380922px;}
.h2_c00207{height:162.296367px;}
.h1_c00207{height:162.417938px;}
.h0_c00207{height:810.000000px;}
.w1_c00207{width:1439.999979px;}
.w0_c00207{width:1440.000000px;}
.x0_c00207{left:0.000000px;}
.x1_c00207{left:147.383979px;}
.x3_c00207{left:162.869979px;}
.x4_c00207{left:177.809979px;}
.x2_c00207{left:224.969979px;}
.x6_c00207{left:632.624979px;}
.x5_c00207{left:658.184979px;}
.x8_c00207{left:1025.174979px;}
.x7_c00207{left:1084.934979px;}
.x9_c00207{left:1089.074979px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls1_c00207{letter-spacing:0.000000pt;}
.ls0_c00207{letter-spacing:0.013440pt;}
.ws0_c00207{word-spacing:-46.992000pt;}
.ws1_c00207{word-spacing:-34.720000pt;}
.ws2_c00207{word-spacing:0.000000pt;}
._0_c00207{margin-left:-2.502144pt;}
._1_c00207{margin-left:-1.111040pt;}
._2_c00207{width:0.946091pt;}
.fs3_c00207{font-size:138.880000pt;}
.fs2_c00207{font-size:139.008000pt;}
.fs1_c00207{font-size:170.880000pt;}
.fs0_c00207{font-size:171.008000pt;}
.y0_c00207{bottom:0.000000pt;}
.y5_c00207{bottom:236.986667pt;}
.ya_c00207{bottom:282.266667pt;}
.y4_c00207{bottom:288.226667pt;}
.y7_c00207{bottom:303.680000pt;}
.y9_c00207{bottom:320.026667pt;}
.y3_c00207{bottom:339.426667pt;}
.y6_c00207{bottom:341.626667pt;}
.y8_c00207{bottom:357.986667pt;}
.y2_c00207{bottom:390.626667pt;}
.y1_c00207{bottom:441.853333pt;}
.h4_c00207{height:129.996563pt;}
.h3_c00207{height:130.116375pt;}
.h2_c00207{height:144.263438pt;}
.h1_c00207{height:144.371500pt;}
.h0_c00207{height:720.000000pt;}
.w1_c00207{width:1279.999981pt;}
.w0_c00207{width:1280.000000pt;}
.x0_c00207{left:0.000000pt;}
.x1_c00207{left:131.007981pt;}
.x3_c00207{left:144.773314pt;}
.x4_c00207{left:158.053314pt;}
.x2_c00207{left:199.973314pt;}
.x6_c00207{left:562.333314pt;}
.x5_c00207{left:585.053314pt;}
.x8_c00207{left:911.266648pt;}
.x7_c00207{left:964.386648pt;}
.x9_c00207{left:968.066648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed03c46eb0cbfce357d711d0.woff')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.074219;font-style:normal;font-weight:normal;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_41e5f3fee5ee4a9a95a98a9b.woff')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.176270;font-style:normal;font-weight:normal;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_c14866761981d7ca93877afa.woff')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.176270;font-style: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;}
.ls3_c00208{letter-spacing:-0.015840px;}
.ls2_c00208{letter-spacing:0.000000px;}
.ls1_c00208{letter-spacing:0.028800px;}
.ls0_c00208{letter-spacing:0.072000px;}
.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:-72.666000px;}
.ws2_c00208{word-spacing:-23.940000px;}
.ws3_c00208{word-spacing:0.000000px;}
.ws1_c00208{word-spacing:1.857360px;}
._3_c00208{margin-left:-4.322880px;}
._1_c00208{margin-left:-2.627136px;}
._0_c00208{margin-left:-1.586304px;}
._2_c00208{width:1.286496px;}
._4_c00208{width:3.022704px;}
.fc2_c00208{color:rgb(0,0,0);}
.fc1_c00208{color:rgb(255,255,255);}
.fc0_c00208{color:rgb(27,40,48);}
.fs4_c00208{font-size:95.760000px;}
.fs5_c00208{font-size:95.904000px;}
.fs2_c00208{font-size:113.760000px;}
.fs3_c00208{font-size:113.904000px;}
.fs6_c00208{font-size:126.000000px;}
.fs7_c00208{font-size:144.000000px;}
.fs1_c00208{font-size:264.240000px;}
.fs0_c00208{font-size:264.384000px;}
.y0_c00208{bottom:0.000000px;}
.y12_c00208{bottom:203.295000px;}
.y17_c00208{bottom:204.120000px;}
.y11_c00208{bottom:229.605000px;}
.y16_c00208{bottom:230.400000px;}
.y10_c00208{bottom:255.705000px;}
.y15_c00208{bottom:256.500000px;}
.y14_c00208{bottom:282.780000px;}
.yf_c00208{bottom:283.065000px;}
.y13_c00208{bottom:310.860000px;}
.ye_c00208{bottom:314.205000px;}
.y2_c00208{bottom:345.780000px;}
.y1_c00208{bottom:425.010000px;}
.y8_c00208{bottom:465.990000px;}
.yd_c00208{bottom:479.160000px;}
.y7_c00208{bottom:492.270000px;}
.yc_c00208{bottom:505.440000px;}
.y6_c00208{bottom:518.550000px;}
.yb_c00208{bottom:531.570000px;}
.y5_c00208{bottom:544.650000px;}
.ya_c00208{bottom:558.930000px;}
.y4_c00208{bottom:572.040000px;}
.y9_c00208{bottom:590.070000px;}
.y3_c00208{bottom:603.180000px;}
.y18_c00208{bottom:712.335000px;}
.h5_c00208{height:89.634727px;}
.h6_c00208{height:89.769516px;}
.h3_c00208{height:106.483359px;}
.h4_c00208{height:106.618148px;}
.h7_c00208{height:117.940430px;}
.h8_c00208{height:134.789062px;}
.h2_c00208{height:223.081523px;}
.h1_c00208{height:223.203094px;}
.h0_c00208{height:810.000000px;}
.w1_c00208{width:1439.999979px;}
.w0_c00208{width:1440.000000px;}
.x0_c00208{left:0.000000px;}
.x2_c00208{left:159.659979px;}
.x1_c00208{left:177.119979px;}
.x17_c00208{left:536.144979px;}
.xf_c00208{left:550.949979px;}
.x10_c00208{left:563.729979px;}
.xe_c00208{left:566.249979px;}
.x5_c00208{left:568.589979px;}
.x6_c00208{left:577.589979px;}
.x3_c00208{left:586.769979px;}
.x11_c00208{left:590.549979px;}
.x7_c00208{left:617.369979px;}
.x8_c00208{left:659.489979px;}
.x4_c00208{left:662.549979px;}
.x9_c00208{left:982.949979px;}
.x15_c00208{left:986.549979px;}
.x12_c00208{left:989.249979px;}
.xb_c00208{left:998.429979px;}
.x13_c00208{left:1003.109979px;}
.xc_c00208{left:1012.289979px;}
.x14_c00208{left:1036.589979px;}
.xd_c00208{left:1099.079979px;}
.x16_c00208{left:1107.899979px;}
.xa_c00208{left:1112.759979px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls3_c00208{letter-spacing:-0.014080pt;}
.ls2_c00208{letter-spacing:0.000000pt;}
.ls1_c00208{letter-spacing:0.025600pt;}
.ls0_c00208{letter-spacing:0.064000pt;}
.ws0_c00208{word-spacing:-64.592000pt;}
.ws2_c00208{word-spacing:-21.280000pt;}
.ws3_c00208{word-spacing:0.000000pt;}
.ws1_c00208{word-spacing:1.650987pt;}
._3_c00208{margin-left:-3.842560pt;}
._1_c00208{margin-left:-2.335232pt;}
._0_c00208{margin-left:-1.410048pt;}
._2_c00208{width:1.143552pt;}
._4_c00208{width:2.686848pt;}
.fs4_c00208{font-size:85.120000pt;}
.fs5_c00208{font-size:85.248000pt;}
.fs2_c00208{font-size:101.120000pt;}
.fs3_c00208{font-size:101.248000pt;}
.fs6_c00208{font-size:112.000000pt;}
.fs7_c00208{font-size:128.000000pt;}
.fs1_c00208{font-size:234.880000pt;}
.fs0_c00208{font-size:235.008000pt;}
.y0_c00208{bottom:0.000000pt;}
.y12_c00208{bottom:180.706667pt;}
.y17_c00208{bottom:181.440000pt;}
.y11_c00208{bottom:204.093333pt;}
.y16_c00208{bottom:204.800000pt;}
.y10_c00208{bottom:227.293333pt;}
.y15_c00208{bottom:228.000000pt;}
.y14_c00208{bottom:251.360000pt;}
.yf_c00208{bottom:251.613333pt;}
.y13_c00208{bottom:276.320000pt;}
.ye_c00208{bottom:279.293333pt;}
.y2_c00208{bottom:307.360000pt;}
.y1_c00208{bottom:377.786667pt;}
.y8_c00208{bottom:414.213333pt;}
.yd_c00208{bottom:425.920000pt;}
.y7_c00208{bottom:437.573333pt;}
.yc_c00208{bottom:449.280000pt;}
.y6_c00208{bottom:460.933333pt;}
.yb_c00208{bottom:472.506667pt;}
.y5_c00208{bottom:484.133333pt;}
.ya_c00208{bottom:496.826667pt;}
.y4_c00208{bottom:508.480000pt;}
.y9_c00208{bottom:524.506667pt;}
.y3_c00208{bottom:536.160000pt;}
.y18_c00208{bottom:633.186667pt;}
.h5_c00208{height:79.675313pt;}
.h6_c00208{height:79.795125pt;}
.h3_c00208{height:94.651875pt;}
.h4_c00208{height:94.771687pt;}
.h7_c00208{height:104.835938pt;}
.h8_c00208{height:119.812500pt;}
.h2_c00208{height:198.294688pt;}
.h1_c00208{height:198.402750pt;}
.h0_c00208{height:720.000000pt;}
.w1_c00208{width:1279.999981pt;}
.w0_c00208{width:1280.000000pt;}
.x0_c00208{left:0.000000pt;}
.x2_c00208{left:141.919981pt;}
.x1_c00208{left:157.439981pt;}
.x17_c00208{left:476.573314pt;}
.xf_c00208{left:489.733314pt;}
.x10_c00208{left:501.093314pt;}
.xe_c00208{left:503.333314pt;}
.x5_c00208{left:505.413314pt;}
.x6_c00208{left:513.413314pt;}
.x3_c00208{left:521.573314pt;}
.x11_c00208{left:524.933314pt;}
.x7_c00208{left:548.773314pt;}
.x8_c00208{left:586.213314pt;}
.x4_c00208{left:588.933314pt;}
.x9_c00208{left:873.733314pt;}
.x15_c00208{left:876.933314pt;}
.x12_c00208{left:879.333314pt;}
.xb_c00208{left:887.493314pt;}
.x13_c00208{left:891.653314pt;}
.xc_c00208{left:899.813314pt;}
.x14_c00208{left:921.413314pt;}
.xd_c00208{left:976.959981pt;}
.x16_c00208{left:984.799981pt;}
.xa_c00208{left:989.119981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4d67a279b8ed82cc2eb3393.woff')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.074219;font-style:normal;font-weight:normal;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_57da662b14d04b5ee42d47f0.woff')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.176270;font-style:normal;font-weight:normal;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_847d62156a1f6de98b0d7eaf.woff')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:1.176270;font-style: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.000000px;}
.ls0_c00209{letter-spacing:0.316800px;}
.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:-72.666000px;}
.ws1_c00209{word-spacing:-21.060000px;}
.ws2_c00209{word-spacing:-19.440000px;}
.ws3_c00209{word-spacing:0.000000px;}
._5_c00209{margin-left:-8.942976px;}
._3_c00209{margin-left:-5.184000px;}
._1_c00209{margin-left:-2.397600px;}
._2_c00209{margin-left:-1.053360px;}
._0_c00209{width:1.630368px;}
._4_c00209{width:2.777040px;}
.fc2_c00209{color:rgb(0,0,0);}
.fc1_c00209{color:rgb(255,255,255);}
.fc0_c00209{color:rgb(27,40,48);}
.fs6_c00209{font-size:77.760000px;}
.fs7_c00209{font-size:77.904000px;}
.fs4_c00209{font-size:84.240000px;}
.fs5_c00209{font-size:84.384000px;}
.fs3_c00209{font-size:95.760000px;}
.fs2_c00209{font-size:95.904000px;}
.fs8_c00209{font-size:144.000000px;}
.fs1_c00209{font-size:264.240000px;}
.fs0_c00209{font-size:264.384000px;}
.y0_c00209{bottom:0.000000px;}
.y19_c00209{bottom:158.685000px;}
.y18_c00209{bottom:180.105000px;}
.y21_c00209{bottom:189.075000px;}
.y17_c00209{bottom:201.345000px;}
.y20_c00209{bottom:210.315000px;}
.y16_c00209{bottom:222.585000px;}
.y1f_c00209{bottom:231.735000px;}
.y15_c00209{bottom:244.050000px;}
.y1e_c00209{bottom:252.975000px;}
.y14_c00209{bottom:265.290000px;}
.y1d_c00209{bottom:274.245000px;}
.y1c_c00209{bottom:295.665000px;}
.y13_c00209{bottom:309.030000px;}
.y1b_c00209{bottom:316.905000px;}
.y12_c00209{bottom:335.130000px;}
.y2_c00209{bottom:345.780000px;}
.y1a_c00209{bottom:360.645000px;}
.y11_c00209{bottom:361.410000px;}
.y1_c00209{bottom:425.010000px;}
.y9_c00209{bottom:452.265000px;}
.y10_c00209{bottom:453.855000px;}
.y8_c00209{bottom:475.125000px;}
.yf_c00209{bottom:476.715000px;}
.y7_c00209{bottom:498.165000px;}
.ye_c00209{bottom:499.755000px;}
.y6_c00209{bottom:521.025000px;}
.yd_c00209{bottom:522.615000px;}
.yc_c00209{bottom:545.505000px;}
.y5_c00209{bottom:567.645000px;}
.yb_c00209{bottom:592.125000px;}
.y4_c00209{bottom:593.745000px;}
.ya_c00209{bottom:618.405000px;}
.y3_c00209{bottom:620.070000px;}
.y22_c00209{bottom:705.780000px;}
.h7_c00209{height:72.786094px;}
.h8_c00209{height:72.920883px;}
.h5_c00209{height:78.851602px;}
.h6_c00209{height:78.986391px;}
.h4_c00209{height:89.634727px;}
.h3_c00209{height:89.769516px;}
.h9_c00209{height:134.789062px;}
.h2_c00209{height:223.081523px;}
.h1_c00209{height:223.203094px;}
.h0_c00209{height:810.000000px;}
.w1_c00209{width:1439.999979px;}
.w0_c00209{width:1440.000000px;}
.x0_c00209{left:0.000000px;}
.x2_c00209{left:159.659979px;}
.x1_c00209{left:223.739979px;}
.x12_c00209{left:552.989979px;}
.x10_c00209{left:562.529979px;}
.x4_c00209{left:563.789979px;}
.x7_c00209{left:568.109979px;}
.x6_c00209{left:571.529979px;}
.x13_c00209{left:573.689979px;}
.x3_c00209{left:582.689979px;}
.x8_c00209{left:603.974979px;}
.x14_c00209{left:622.514979px;}
.x11_c00209{left:634.394979px;}
.x1b_c00209{left:653.504979px;}
.x5_c00209{left:697.034979px;}
.x16_c00209{left:981.614979px;}
.xd_c00209{left:984.494979px;}
.x15_c00209{left:998.174979px;}
.x18_c00209{left:1002.494979px;}
.xc_c00209{left:1008.074979px;}
.x17_c00209{left:1015.994979px;}
.xe_c00209{left:1018.694979px;}
.x19_c00209{left:1022.294979px;}
.xb_c00209{left:1024.994979px;}
.xa_c00209{left:1046.234979px;}
.x9_c00209{left:1050.194979px;}
.x1a_c00209{left:1068.194979px;}
.xf_c00209{left:1122.194979px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls1_c00209{letter-spacing:0.000000pt;}
.ls0_c00209{letter-spacing:0.281600pt;}
.ws0_c00209{word-spacing:-64.592000pt;}
.ws1_c00209{word-spacing:-18.720000pt;}
.ws2_c00209{word-spacing:-17.280000pt;}
.ws3_c00209{word-spacing:0.000000pt;}
._5_c00209{margin-left:-7.949312pt;}
._3_c00209{margin-left:-4.608000pt;}
._1_c00209{margin-left:-2.131200pt;}
._2_c00209{margin-left:-0.936320pt;}
._0_c00209{width:1.449216pt;}
._4_c00209{width:2.468480pt;}
.fs6_c00209{font-size:69.120000pt;}
.fs7_c00209{font-size:69.248000pt;}
.fs4_c00209{font-size:74.880000pt;}
.fs5_c00209{font-size:75.008000pt;}
.fs3_c00209{font-size:85.120000pt;}
.fs2_c00209{font-size:85.248000pt;}
.fs8_c00209{font-size:128.000000pt;}
.fs1_c00209{font-size:234.880000pt;}
.fs0_c00209{font-size:235.008000pt;}
.y0_c00209{bottom:0.000000pt;}
.y19_c00209{bottom:141.053333pt;}
.y18_c00209{bottom:160.093333pt;}
.y21_c00209{bottom:168.066667pt;}
.y17_c00209{bottom:178.973333pt;}
.y20_c00209{bottom:186.946667pt;}
.y16_c00209{bottom:197.853333pt;}
.y1f_c00209{bottom:205.986667pt;}
.y15_c00209{bottom:216.933333pt;}
.y1e_c00209{bottom:224.866667pt;}
.y14_c00209{bottom:235.813333pt;}
.y1d_c00209{bottom:243.773333pt;}
.y1c_c00209{bottom:262.813333pt;}
.y13_c00209{bottom:274.693333pt;}
.y1b_c00209{bottom:281.693333pt;}
.y12_c00209{bottom:297.893333pt;}
.y2_c00209{bottom:307.360000pt;}
.y1a_c00209{bottom:320.573333pt;}
.y11_c00209{bottom:321.253333pt;}
.y1_c00209{bottom:377.786667pt;}
.y9_c00209{bottom:402.013333pt;}
.y10_c00209{bottom:403.426667pt;}
.y8_c00209{bottom:422.333333pt;}
.yf_c00209{bottom:423.746667pt;}
.y7_c00209{bottom:442.813333pt;}
.ye_c00209{bottom:444.226667pt;}
.y6_c00209{bottom:463.133333pt;}
.yd_c00209{bottom:464.546667pt;}
.yc_c00209{bottom:484.893333pt;}
.y5_c00209{bottom:504.573333pt;}
.yb_c00209{bottom:526.333333pt;}
.y4_c00209{bottom:527.773333pt;}
.ya_c00209{bottom:549.693333pt;}
.y3_c00209{bottom:551.173333pt;}
.y22_c00209{bottom:627.360000pt;}
.h7_c00209{height:64.698750pt;}
.h8_c00209{height:64.818562pt;}
.h5_c00209{height:70.090312pt;}
.h6_c00209{height:70.210125pt;}
.h4_c00209{height:79.675313pt;}
.h3_c00209{height:79.795125pt;}
.h9_c00209{height:119.812500pt;}
.h2_c00209{height:198.294688pt;}
.h1_c00209{height:198.402750pt;}
.h0_c00209{height:720.000000pt;}
.w1_c00209{width:1279.999981pt;}
.w0_c00209{width:1280.000000pt;}
.x0_c00209{left:0.000000pt;}
.x2_c00209{left:141.919981pt;}
.x1_c00209{left:198.879981pt;}
.x12_c00209{left:491.546648pt;}
.x10_c00209{left:500.026648pt;}
.x4_c00209{left:501.146648pt;}
.x7_c00209{left:504.986648pt;}
.x6_c00209{left:508.026648pt;}
.x13_c00209{left:509.946648pt;}
.x3_c00209{left:517.946648pt;}
.x8_c00209{left:536.866648pt;}
.x14_c00209{left:553.346648pt;}
.x11_c00209{left:563.906648pt;}
.x1b_c00209{left:580.893314pt;}
.x5_c00209{left:619.586648pt;}
.x16_c00209{left:872.546648pt;}
.xd_c00209{left:875.106648pt;}
.x15_c00209{left:887.266648pt;}
.x18_c00209{left:891.106648pt;}
.xc_c00209{left:896.066648pt;}
.x17_c00209{left:903.106648pt;}
.xe_c00209{left:905.506648pt;}
.x19_c00209{left:908.706648pt;}
.xb_c00209{left:911.106648pt;}
.xa_c00209{left:929.986648pt;}
.x9_c00209{left:933.506648pt;}
.x1a_c00209{left:949.506648pt;}
.xf_c00209{left:997.506648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73b152fa0195096022e0579d.woff')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.074219;font-style:normal;font-weight:normal;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_76ae3cccaa30faf0ca9ddc29.woff')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.074219;font-style:normal;font-weight:normal;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_0a696ab0aa6c0594a1254486.woff')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.148438;font-style:normal;font-weight:normal;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_51f50969141b23101f61c3d9.woff')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.176270;font-style:normal;font-weight:normal;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_d30b58cfbb5eced317e73791.woff')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:1.176270;font-style: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:-138.384000px;}
.ws2_c00210{word-spacing:-138.240000px;}
.ws1_c00210{word-spacing:-34.596000px;}
.ws3_c00210{word-spacing:-34.560000px;}
.ws4_c00210{word-spacing:0.000000px;}
._2_c00210{margin-left:-3.179520px;}
._0_c00210{margin-left:-1.442880px;}
._1_c00210{width:31.659600px;}
.fc1_c00210{color:rgb(255,255,255);}
.fc0_c00210{color:rgb(27,40,48);}
.fs1_c00210{font-size:120.240000px;}
.fs2_c00210{font-size:138.240000px;}
.fs3_c00210{font-size:138.384000px;}
.fs0_c00210{font-size:264.240000px;}
.y0_c00210{bottom:0.000000px;}
.y12_c00210{bottom:176.835000px;}
.ye_c00210{bottom:214.455000px;}
.y11_c00210{bottom:214.485000px;}
.y5_c00210{bottom:224.790000px;}
.y10_c00210{bottom:252.105000px;}
.yd_c00210{bottom:266.835000px;}
.y4_c00210{bottom:296.820000px;}
.yf_c00210{bottom:304.485000px;}
.y3_c00210{bottom:332.820000px;}
.y2_c00210{bottom:457.410000px;}
.yc_c00210{bottom:461.850000px;}
.yb_c00210{bottom:499.650000px;}
.y7_c00210{bottom:518.400000px;}
.y1_c00210{bottom:536.610000px;}
.ya_c00210{bottom:537.270000px;}
.y6_c00210{bottom:570.780000px;}
.y9_c00210{bottom:574.890000px;}
.y8_c00210{bottom:627.300000px;}
.h2_c00210{height:101.511211px;}
.h3_c00210{height:125.550000px;}
.h5_c00210{height:125.680781px;}
.h4_c00210{height:129.397500px;}
.h6_c00210{height:129.532289px;}
.h1_c00210{height:223.081523px;}
.h0_c00210{height:810.000000px;}
.w1_c00210{width:1439.999979px;}
.w0_c00210{width:1440.000000px;}
.x0_c00210{left:0.000000px;}
.x2_c00210{left:88.811979px;}
.x5_c00210{left:102.131979px;}
.x4_c00210{left:124.451979px;}
.x3_c00210{left:127.691979px;}
.x1_c00210{left:235.874979px;}
.x7_c00210{left:535.574979px;}
.xd_c00210{left:623.414979px;}
.x6_c00210{left:629.174979px;}
.xe_c00210{left:635.114979px;}
.x9_c00210{left:978.944979px;}
.xf_c00210{left:1044.149979px;}
.x11_c00210{left:1047.929979px;}
.xa_c00210{left:1054.229979px;}
.xc_c00210{left:1068.629979px;}
.xb_c00210{left:1086.269979px;}
.x10_c00210{left:1093.289979px;}
.x8_c00210{left:1098.329979px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws0_c00210{word-spacing:-123.008000pt;}
.ws2_c00210{word-spacing:-122.880000pt;}
.ws1_c00210{word-spacing:-30.752000pt;}
.ws3_c00210{word-spacing:-30.720000pt;}
.ws4_c00210{word-spacing:0.000000pt;}
._2_c00210{margin-left:-2.826240pt;}
._0_c00210{margin-left:-1.282560pt;}
._1_c00210{width:28.141867pt;}
.fs1_c00210{font-size:106.880000pt;}
.fs2_c00210{font-size:122.880000pt;}
.fs3_c00210{font-size:123.008000pt;}
.fs0_c00210{font-size:234.880000pt;}
.y0_c00210{bottom:0.000000pt;}
.y12_c00210{bottom:157.186667pt;}
.ye_c00210{bottom:190.626667pt;}
.y11_c00210{bottom:190.653333pt;}
.y5_c00210{bottom:199.813333pt;}
.y10_c00210{bottom:224.093333pt;}
.yd_c00210{bottom:237.186667pt;}
.y4_c00210{bottom:263.840000pt;}
.yf_c00210{bottom:270.653333pt;}
.y3_c00210{bottom:295.840000pt;}
.y2_c00210{bottom:406.586667pt;}
.yc_c00210{bottom:410.533333pt;}
.yb_c00210{bottom:444.133333pt;}
.y7_c00210{bottom:460.800000pt;}
.y1_c00210{bottom:476.986667pt;}
.ya_c00210{bottom:477.573333pt;}
.y6_c00210{bottom:507.360000pt;}
.y9_c00210{bottom:511.013333pt;}
.y8_c00210{bottom:557.600000pt;}
.h2_c00210{height:90.232187pt;}
.h3_c00210{height:111.600000pt;}
.h5_c00210{height:111.716250pt;}
.h4_c00210{height:115.020000pt;}
.h6_c00210{height:115.139813pt;}
.h1_c00210{height:198.294688pt;}
.h0_c00210{height:720.000000pt;}
.w1_c00210{width:1279.999981pt;}
.w0_c00210{width:1280.000000pt;}
.x0_c00210{left:0.000000pt;}
.x2_c00210{left:78.943981pt;}
.x5_c00210{left:90.783981pt;}
.x4_c00210{left:110.623981pt;}
.x3_c00210{left:113.503981pt;}
.x1_c00210{left:209.666648pt;}
.x7_c00210{left:476.066648pt;}
.xd_c00210{left:554.146648pt;}
.x6_c00210{left:559.266648pt;}
.xe_c00210{left:564.546648pt;}
.x9_c00210{left:870.173314pt;}
.xf_c00210{left:928.133314pt;}
.x11_c00210{left:931.493314pt;}
.xa_c00210{left:937.093314pt;}
.xc_c00210{left:949.893314pt;}
.xb_c00210{left:965.573314pt;}
.x10_c00210{left:971.813314pt;}
.x8_c00210{left:976.293314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_700f049bee5c4a440a10cdde.woff')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.074219;font-style:normal;font-weight:normal;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_5a9c9a5026ede49d6d6ac82b.woff')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.074219;font-style: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;}
.ls0_c00211{letter-spacing:0.000000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00211{word-spacing:-0.252000px;}
.ws1_c00211{word-spacing:0.000000px;}
._2_c00211{margin-left:-1.620000px;}
._0_c00211{width:1.170000px;}
._1_c00211{width:30.708000px;}
.fc0_c00211{color:rgb(27,40,48);}
.fs1_c00211{font-size:90.000000px;}
.fs2_c00211{font-size:108.000000px;}
.fs0_c00211{font-size:264.384000px;}
.y0_c00211{bottom:0.000000px;}
.y2_c00211{bottom:35.964000px;}
.y3_c00211{bottom:101.520000px;}
.y1_c00211{bottom:689.190000px;}
.h2_c00211{height:75.981445px;}
.h3_c00211{height:91.177734px;}
.h1_c00211{height:223.203094px;}
.h0_c00211{height:810.000000px;}
.w1_c00211{width:1439.999979px;}
.w0_c00211{width:1440.000000px;}
.x0_c00211{left:0.000000px;}
.x3_c00211{left:300.524979px;}
.x2_c00211{left:309.089979px;}
.x1_c00211{left:513.929979px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws0_c00211{word-spacing:-0.224000pt;}
.ws1_c00211{word-spacing:0.000000pt;}
._2_c00211{margin-left:-1.440000pt;}
._0_c00211{width:1.040000pt;}
._1_c00211{width:27.296000pt;}
.fs1_c00211{font-size:80.000000pt;}
.fs2_c00211{font-size:96.000000pt;}
.fs0_c00211{font-size:235.008000pt;}
.y0_c00211{bottom:0.000000pt;}
.y2_c00211{bottom:31.968000pt;}
.y3_c00211{bottom:90.240000pt;}
.y1_c00211{bottom:612.613333pt;}
.h2_c00211{height:67.539062pt;}
.h3_c00211{height:81.046875pt;}
.h1_c00211{height:198.402750pt;}
.h0_c00211{height:720.000000pt;}
.w1_c00211{width:1279.999981pt;}
.w0_c00211{width:1280.000000pt;}
.x0_c00211{left:0.000000pt;}
.x3_c00211{left:267.133314pt;}
.x2_c00211{left:274.746648pt;}
.x1_c00211{left:456.826648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cbc801437b481cb4ed2c1657.woff')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.176270;font-style:normal;font-weight:normal;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_7b3e2689c6a2c459adbacbac.woff')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.148438;font-style:normal;font-weight:normal;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_d0b438f26bbba7e3103ec101.woff')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.176270;font-style:normal;font-weight:normal;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_b7c5a32caf0785b6dabdd29b.woff')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:1.074219;font-style:normal;font-weight:normal;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_54a9cc9a4ef73c89047b6a2e.woff')format("woff");}.ff5_c00212{font-family:ff5_c00212;line-height:1.074219;font-style: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:-2.862000px;}
.ls2_c00212{letter-spacing:-2.820000px;}
.ls4_c00212{letter-spacing:-0.342600px;}
.ls0_c00212{letter-spacing:-0.034560px;}
.ls1_c00212{letter-spacing:0.000000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00212{word-spacing:-25.596000px;}
.ws2_c00212{word-spacing:-25.253400px;}
.ws0_c00212{word-spacing:-0.676800px;}
.ws3_c00212{word-spacing:0.000000px;}
._6_c00212{margin-left:-5.883840px;}
._7_c00212{margin-left:-3.826944px;}
._0_c00212{margin-left:-2.472480px;}
._4_c00212{margin-left:-1.315728px;}
._1_c00212{width:1.013760px;}
._5_c00212{width:2.885328px;}
._2_c00212{width:23.149440px;}
._3_c00212{width:24.391200px;}
.fc1_c00212{color:rgb(27,40,48);}
.fc0_c00212{color:rgb(0,0,0);}
.fs0_c00212{font-size:102.240000px;}
.fs1_c00212{font-size:102.384000px;}
.fs3_c00212{font-size:264.240000px;}
.fs2_c00212{font-size:264.384000px;}
.y0_c00212{bottom:0.000000px;}
.yd_c00212{bottom:140.328000px;}
.yc_c00212{bottom:179.070000px;}
.yb_c00212{bottom:250.095000px;}
.ya_c00212{bottom:288.825000px;}
.y9_c00212{bottom:327.525000px;}
.yf_c00212{bottom:345.780000px;}
.y8_c00212{bottom:366.225000px;}
.ye_c00212{bottom:425.010000px;}
.y7_c00212{bottom:497.625000px;}
.y6_c00212{bottom:525.525000px;}
.y5_c00212{bottom:553.425000px;}
.y4_c00212{bottom:646.275000px;}
.y3_c00212{bottom:673.995000px;}
.y2_c00212{bottom:712.725000px;}
.y1_c00212{bottom:740.625000px;}
.h1_c00212{height:95.700234px;}
.h2_c00212{height:95.835023px;}
.h4_c00212{height:223.081523px;}
.h3_c00212{height:223.203094px;}
.h0_c00212{height:810.000000px;}
.w1_c00212{width:1439.999979px;}
.w0_c00212{width:1440.000000px;}
.x0_c00212{left:0.000000px;}
.x3_c00212{left:88.811979px;}
.x2_c00212{left:235.874979px;}
.x1_c00212{left:548.129979px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls3_c00212{letter-spacing:-2.544000pt;}
.ls2_c00212{letter-spacing:-2.506667pt;}
.ls4_c00212{letter-spacing:-0.304533pt;}
.ls0_c00212{letter-spacing:-0.030720pt;}
.ls1_c00212{letter-spacing:0.000000pt;}
.ws1_c00212{word-spacing:-22.752000pt;}
.ws2_c00212{word-spacing:-22.447467pt;}
.ws0_c00212{word-spacing:-0.601600pt;}
.ws3_c00212{word-spacing:0.000000pt;}
._6_c00212{margin-left:-5.230080pt;}
._7_c00212{margin-left:-3.401728pt;}
._0_c00212{margin-left:-2.197760pt;}
._4_c00212{margin-left:-1.169536pt;}
._1_c00212{width:0.901120pt;}
._5_c00212{width:2.564736pt;}
._2_c00212{width:20.577280pt;}
._3_c00212{width:21.681067pt;}
.fs0_c00212{font-size:90.880000pt;}
.fs1_c00212{font-size:91.008000pt;}
.fs3_c00212{font-size:234.880000pt;}
.fs2_c00212{font-size:235.008000pt;}
.y0_c00212{bottom:0.000000pt;}
.yd_c00212{bottom:124.736000pt;}
.yc_c00212{bottom:159.173333pt;}
.yb_c00212{bottom:222.306667pt;}
.ya_c00212{bottom:256.733333pt;}
.y9_c00212{bottom:291.133333pt;}
.yf_c00212{bottom:307.360000pt;}
.y8_c00212{bottom:325.533333pt;}
.ye_c00212{bottom:377.786667pt;}
.y7_c00212{bottom:442.333333pt;}
.y6_c00212{bottom:467.133333pt;}
.y5_c00212{bottom:491.933333pt;}
.y4_c00212{bottom:574.466667pt;}
.y3_c00212{bottom:599.106667pt;}
.y2_c00212{bottom:633.533333pt;}
.y1_c00212{bottom:658.333333pt;}
.h1_c00212{height:85.066875pt;}
.h2_c00212{height:85.186687pt;}
.h4_c00212{height:198.294688pt;}
.h3_c00212{height:198.402750pt;}
.h0_c00212{height:720.000000pt;}
.w1_c00212{width:1279.999981pt;}
.w0_c00212{width:1280.000000pt;}
.x0_c00212{left:0.000000pt;}
.x3_c00212{left:78.943981pt;}
.x2_c00212{left:209.666648pt;}
.x1_c00212{left:487.226648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d5f2157bc5892b68eb48f422.woff')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.074219;font-style:normal;font-weight:normal;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_a7d8678604fdfac02aeabdcb.woff')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.176270;font-style:normal;font-weight:normal;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_a56a3e40449b06d5ed994789.woff')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.176270;font-style: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;}
.ls2_c00213{letter-spacing:-4.302000px;}
.ls1_c00213{letter-spacing:0.000000px;}
.ls0_c00213{letter-spacing:34.704000px;}
.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:-72.666000px;}
.ws1_c00213{word-spacing:-34.596000px;}
.ws3_c00213{word-spacing:-4.965120px;}
.ws2_c00213{word-spacing:-4.301280px;}
.ws4_c00213{word-spacing:0.000000px;}
._6_c00213{margin-left:-6.497280px;}
._2_c00213{margin-left:-4.561920px;}
._0_c00213{margin-left:-2.379456px;}
._1_c00213{margin-left:-1.244160px;}
._4_c00213{width:1.135296px;}
._7_c00213{width:2.497392px;}
._3_c00213{width:33.333120px;}
._5_c00213{width:34.359840px;}
.fc1_c00213{color:rgb(255,255,255);}
.fc0_c00213{color:rgb(27,40,48);}
.fs2_c00213{font-size:138.240000px;}
.fs3_c00213{font-size:138.384000px;}
.fs1_c00213{font-size:264.240000px;}
.fs0_c00213{font-size:264.384000px;}
.y0_c00213{bottom:0.000000px;}
.y12_c00213{bottom:165.315000px;}
.y11_c00213{bottom:202.935000px;}
.y14_c00213{bottom:221.685000px;}
.y10_c00213{bottom:240.555000px;}
.y13_c00213{bottom:259.485000px;}
.yf_c00213{bottom:278.205000px;}
.ye_c00213{bottom:316.005000px;}
.y2_c00213{bottom:345.780000px;}
.y1_c00213{bottom:425.010000px;}
.y8_c00213{bottom:450.465000px;}
.yd_c00213{bottom:469.260000px;}
.y7_c00213{bottom:488.085000px;}
.yc_c00213{bottom:506.880000px;}
.y6_c00213{bottom:525.750000px;}
.yb_c00213{bottom:544.530000px;}
.y5_c00213{bottom:563.370000px;}
.ya_c00213{bottom:582.150000px;}
.y4_c00213{bottom:600.990000px;}
.y9_c00213{bottom:619.950000px;}
.y3_c00213{bottom:638.790000px;}
.h3_c00213{height:129.397500px;}
.h4_c00213{height:129.532289px;}
.h2_c00213{height:223.081523px;}
.h1_c00213{height:223.203094px;}
.h0_c00213{height:810.000000px;}
.w1_c00213{width:1439.999979px;}
.w0_c00213{width:1440.000000px;}
.x0_c00213{left:0.000000px;}
.x2_c00213{left:163.259979px;}
.x1_c00213{left:177.299979px;}
.x7_c00213{left:502.274979px;}
.x8_c00213{left:524.594979px;}
.x5_c00213{left:541.334979px;}
.x4_c00213{left:544.754979px;}
.x3_c00213{left:546.554979px;}
.x6_c00213{left:548.354979px;}
.x10_c00213{left:554.834979px;}
.xe_c00213{left:576.794979px;}
.xf_c00213{left:592.994979px;}
.xd_c00213{left:987.584979px;}
.x11_c00213{left:990.464979px;}
.x9_c00213{left:993.164979px;}
.xc_c00213{left:995.504979px;}
.xb_c00213{left:1001.804979px;}
.x12_c00213{left:1011.749979px;}
.xa_c00213{left:1056.389979px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls2_c00213{letter-spacing:-3.824000pt;}
.ls1_c00213{letter-spacing:0.000000pt;}
.ls0_c00213{letter-spacing:30.848000pt;}
.ws0_c00213{word-spacing:-64.592000pt;}
.ws1_c00213{word-spacing:-30.752000pt;}
.ws3_c00213{word-spacing:-4.413440pt;}
.ws2_c00213{word-spacing:-3.823360pt;}
.ws4_c00213{word-spacing:0.000000pt;}
._6_c00213{margin-left:-5.775360pt;}
._2_c00213{margin-left:-4.055040pt;}
._0_c00213{margin-left:-2.115072pt;}
._1_c00213{margin-left:-1.105920pt;}
._4_c00213{width:1.009152pt;}
._7_c00213{width:2.219904pt;}
._3_c00213{width:29.629440pt;}
._5_c00213{width:30.542080pt;}
.fs2_c00213{font-size:122.880000pt;}
.fs3_c00213{font-size:123.008000pt;}
.fs1_c00213{font-size:234.880000pt;}
.fs0_c00213{font-size:235.008000pt;}
.y0_c00213{bottom:0.000000pt;}
.y12_c00213{bottom:146.946667pt;}
.y11_c00213{bottom:180.386667pt;}
.y14_c00213{bottom:197.053333pt;}
.y10_c00213{bottom:213.826667pt;}
.y13_c00213{bottom:230.653333pt;}
.yf_c00213{bottom:247.293333pt;}
.ye_c00213{bottom:280.893333pt;}
.y2_c00213{bottom:307.360000pt;}
.y1_c00213{bottom:377.786667pt;}
.y8_c00213{bottom:400.413333pt;}
.yd_c00213{bottom:417.120000pt;}
.y7_c00213{bottom:433.853333pt;}
.yc_c00213{bottom:450.560000pt;}
.y6_c00213{bottom:467.333333pt;}
.yb_c00213{bottom:484.026667pt;}
.y5_c00213{bottom:500.773333pt;}
.ya_c00213{bottom:517.466667pt;}
.y4_c00213{bottom:534.213333pt;}
.y9_c00213{bottom:551.066667pt;}
.y3_c00213{bottom:567.813333pt;}
.h3_c00213{height:115.020000pt;}
.h4_c00213{height:115.139813pt;}
.h2_c00213{height:198.294688pt;}
.h1_c00213{height:198.402750pt;}
.h0_c00213{height:720.000000pt;}
.w1_c00213{width:1279.999981pt;}
.w0_c00213{width:1280.000000pt;}
.x0_c00213{left:0.000000pt;}
.x2_c00213{left:145.119981pt;}
.x1_c00213{left:157.599981pt;}
.x7_c00213{left:446.466648pt;}
.x8_c00213{left:466.306648pt;}
.x5_c00213{left:481.186648pt;}
.x4_c00213{left:484.226648pt;}
.x3_c00213{left:485.826648pt;}
.x6_c00213{left:487.426648pt;}
.x10_c00213{left:493.186648pt;}
.xe_c00213{left:512.706648pt;}
.xf_c00213{left:527.106648pt;}
.xd_c00213{left:877.853314pt;}
.x11_c00213{left:880.413314pt;}
.x9_c00213{left:882.813314pt;}
.xc_c00213{left:884.893314pt;}
.xb_c00213{left:890.493314pt;}
.x12_c00213{left:899.333314pt;}
.xa_c00213{left:939.013314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c3cf5ecf8390a9f174510ad.woff')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.074219;font-style:normal;font-weight:normal;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_5a936f7d10a71996ca234530.woff')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.074219;font-style:normal;font-weight:normal;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:0.739746;font-style: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);}
.m1_c00214{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls2_c00214{letter-spacing:0.000000px;}
.ls0_c00214{letter-spacing:119.865600px;}
.ls1_c00214{letter-spacing:119.916000px;}
.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:-43.005600px;}
.ws1_c00214{word-spacing:-33.066000px;}
.ws2_c00214{word-spacing:0.000000px;}
._0_c00214{margin-left:-1.850688px;}
._2_c00214{width:1.056096px;}
._1_c00214{width:30.588240px;}
.fc2_c00214{color:rgb(54,152,164);}
.fc1_c00214{color:rgb(156,41,231);}
.fc0_c00214{color:rgb(27,40,48);}
.fs5_c00214{font-size:120.240000px;}
.fs4_c00214{font-size:120.384000px;}
.fs3_c00214{font-size:144.000000px;}
.fs2_c00214{font-size:156.384000px;}
.fs1_c00214{font-size:264.240000px;}
.fs0_c00214{font-size:264.384000px;}
.y0_c00214{bottom:0.000000px;}
.y3_c00214{bottom:76.968000px;}
.y8_c00214{bottom:298.410000px;}
.y7_c00214{bottom:334.410000px;}
.y6_c00214{bottom:370.410000px;}
.y5_c00214{bottom:406.440000px;}
.y2_c00214{bottom:422.310000px;}
.y4_c00214{bottom:444.060000px;}
.y1_c00214{bottom:501.555000px;}
.ya_c00214{bottom:614.190000px;}
.y9_c00214{bottom:650.235000px;}
.h6_c00214{height:101.511211px;}
.h5_c00214{height:101.632781px;}
.h4_c00214{height:121.570312px;}
.h3_c00214{height:132.025359px;}
.h2_c00214{height:223.081523px;}
.h1_c00214{height:223.203094px;}
.h0_c00214{height:810.000000px;}
.w1_c00214{width:1439.999979px;}
.w0_c00214{width:1440.000000px;}
.x0_c00214{left:0.000000px;}
.x1_c00214{left:131.975979px;}
.x2_c00214{left:449.819979px;}
.x3_c00214{left:770.939979px;}
.x4_c00214{left:811.439979px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls2_c00214{letter-spacing:0.000000pt;}
.ls0_c00214{letter-spacing:106.547200pt;}
.ls1_c00214{letter-spacing:106.592000pt;}
.ws0_c00214{word-spacing:-38.227200pt;}
.ws1_c00214{word-spacing:-29.392000pt;}
.ws2_c00214{word-spacing:0.000000pt;}
._0_c00214{margin-left:-1.645056pt;}
._2_c00214{width:0.938752pt;}
._1_c00214{width:27.189547pt;}
.fs5_c00214{font-size:106.880000pt;}
.fs4_c00214{font-size:107.008000pt;}
.fs3_c00214{font-size:128.000000pt;}
.fs2_c00214{font-size:139.008000pt;}
.fs1_c00214{font-size:234.880000pt;}
.fs0_c00214{font-size:235.008000pt;}
.y0_c00214{bottom:0.000000pt;}
.y3_c00214{bottom:68.416000pt;}
.y8_c00214{bottom:265.253333pt;}
.y7_c00214{bottom:297.253333pt;}
.y6_c00214{bottom:329.253333pt;}
.y5_c00214{bottom:361.280000pt;}
.y2_c00214{bottom:375.386667pt;}
.y4_c00214{bottom:394.720000pt;}
.y1_c00214{bottom:445.826667pt;}
.ya_c00214{bottom:545.946667pt;}
.y9_c00214{bottom:577.986667pt;}
.h6_c00214{height:90.232187pt;}
.h5_c00214{height:90.340250pt;}
.h4_c00214{height:108.062500pt;}
.h3_c00214{height:117.355875pt;}
.h2_c00214{height:198.294688pt;}
.h1_c00214{height:198.402750pt;}
.h0_c00214{height:720.000000pt;}
.w1_c00214{width:1279.999981pt;}
.w0_c00214{width:1280.000000pt;}
.x0_c00214{left:0.000000pt;}
.x1_c00214{left:117.311981pt;}
.x2_c00214{left:399.839981pt;}
.x3_c00214{left:685.279981pt;}
.x4_c00214{left:721.279981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_247cfe6d7931119bb514982e.woff')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.027832;font-style: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;}
.ls0_c00215{letter-spacing:0.000000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00215{word-spacing:0.000000px;}
._0_c00215{margin-left:-1.097712px;}
._2_c00215{width:1.097280px;}
._1_c00215{width:2.195424px;}
._3_c00215{width:3.211920px;}
.fc0_c00215{color:rgb(0,0,0);}
.fs3_c00215{font-size:95.760000px;}
.fs2_c00215{font-size:113.904000px;}
.fs1_c00215{font-size:365.760000px;}
.fs0_c00215{font-size:365.904000px;}
.y0_c00215{bottom:0.000000px;}
.y6_c00215{bottom:214.710000px;}
.y5_c00215{bottom:249.630000px;}
.y4_c00215{bottom:285.480000px;}
.y3_c00215{bottom:373.755000px;}
.y2_c00215{bottom:472.575000px;}
.y1_c00215{bottom:571.425000px;}
.h4_c00215{height:78.506367px;}
.h3_c00215{height:93.381258px;}
.h2_c00215{height:299.858906px;}
.h1_c00215{height:299.976961px;}
.h0_c00215{height:810.000000px;}
.w1_c00215{width:1439.999979px;}
.w0_c00215{width:1440.000000px;}
.x0_c00215{left:0.000000px;}
.x1_c00215{left:152.969979px;}
.x2_c00215{left:185.909979px;}
.x3_c00215{left:274.499979px;}
.x6_c00215{left:422.249979px;}
.x4_c00215{left:547.529979px;}
.x5_c00215{left:569.489979px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws0_c00215{word-spacing:0.000000pt;}
._0_c00215{margin-left:-0.975744pt;}
._2_c00215{width:0.975360pt;}
._1_c00215{width:1.951488pt;}
._3_c00215{width:2.855040pt;}
.fs3_c00215{font-size:85.120000pt;}
.fs2_c00215{font-size:101.248000pt;}
.fs1_c00215{font-size:325.120000pt;}
.fs0_c00215{font-size:325.248000pt;}
.y0_c00215{bottom:0.000000pt;}
.y6_c00215{bottom:190.853333pt;}
.y5_c00215{bottom:221.893333pt;}
.y4_c00215{bottom:253.760000pt;}
.y3_c00215{bottom:332.226667pt;}
.y2_c00215{bottom:420.066667pt;}
.y1_c00215{bottom:507.933333pt;}
.h4_c00215{height:69.783438pt;}
.h3_c00215{height:83.005562pt;}
.h2_c00215{height:266.541250pt;}
.h1_c00215{height:266.646187pt;}
.h0_c00215{height:720.000000pt;}
.w1_c00215{width:1279.999981pt;}
.w0_c00215{width:1280.000000pt;}
.x0_c00215{left:0.000000pt;}
.x1_c00215{left:135.973314pt;}
.x2_c00215{left:165.253314pt;}
.x3_c00215{left:243.999981pt;}
.x6_c00215{left:375.333314pt;}
.x4_c00215{left:486.693314pt;}
.x5_c00215{left:506.213314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb881e56162af9f5cd60e4ce.woff')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.027832;font-style:normal;font-weight:normal;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_cfc7c819047ed653c08e7615.woff')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:0.772949;font-style:normal;font-weight:normal;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_fd95bb51048ff698a6ccb146.woff')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.106445;font-style:normal;font-weight:normal;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_0c65f3f2c9cb08dc9c78e950.woff')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:1.106445;font-style: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;}
.ls4_c00216{letter-spacing:0.000000px;}
.ls1_c00216{letter-spacing:0.000003px;}
.ls0_c00216{letter-spacing:0.000006px;}
.ls2_c00216{letter-spacing:33.567696px;}
.ls3_c00216{letter-spacing:33.696000px;}
.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:-39.888000px;}
.ws1_c00216{word-spacing:0.000000px;}
._2_c00216{margin-left:-2.597040px;}
._1_c00216{margin-left:-1.006560px;}
._0_c00216{width:1.006560px;}
._4_c00216{width:2.016000px;}
._3_c00216{width:40.927920px;}
.fc1_c00216{color:rgb(0,198,187);}
.fc0_c00216{color:rgb(0,0,0);}
.fs1_c00216{font-size:144.000000px;}
.fs2_c00216{font-size:144.144000px;}
.fs0_c00216{font-size:167.760000px;}
.y0_c00216{bottom:0.000000px;}
.y9_c00216{bottom:179.820000px;}
.y8_c00216{bottom:223.020000px;}
.y7_c00216{bottom:283.890000px;}
.y6_c00216{bottom:327.090000px;}
.y5_c00216{bottom:387.930000px;}
.y4_c00216{bottom:431.175000px;}
.y3_c00216{bottom:492.015000px;}
.y2_c00216{bottom:535.215000px;}
.y1_c00216{bottom:683.820000px;}
.h2_c00216{height:118.054688px;}
.h4_c00216{height:129.375000px;}
.h3_c00216{height:129.504375px;}
.h1_c00216{height:137.533711px;}
.h0_c00216{height:810.000000px;}
.w1_c00216{width:1439.999979px;}
.w0_c00216{width:1440.000000px;}
.x0_c00216{left:0.000000px;}
.x2_c00216{left:95.687979px;}
.x3_c00216{left:136.187979px;}
.x1_c00216{left:494.279979px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls4_c00216{letter-spacing:0.000000pt;}
.ls1_c00216{letter-spacing:0.000003pt;}
.ls0_c00216{letter-spacing:0.000005pt;}
.ls2_c00216{letter-spacing:29.837952pt;}
.ls3_c00216{letter-spacing:29.952000pt;}
.ws0_c00216{word-spacing:-35.456000pt;}
.ws1_c00216{word-spacing:0.000000pt;}
._2_c00216{margin-left:-2.308480pt;}
._1_c00216{margin-left:-0.894720pt;}
._0_c00216{width:0.894720pt;}
._4_c00216{width:1.792000pt;}
._3_c00216{width:36.380373pt;}
.fs1_c00216{font-size:128.000000pt;}
.fs2_c00216{font-size:128.128000pt;}
.fs0_c00216{font-size:149.120000pt;}
.y0_c00216{bottom:0.000000pt;}
.y9_c00216{bottom:159.840000pt;}
.y8_c00216{bottom:198.240000pt;}
.y7_c00216{bottom:252.346667pt;}
.y6_c00216{bottom:290.746667pt;}
.y5_c00216{bottom:344.826667pt;}
.y4_c00216{bottom:383.266667pt;}
.y3_c00216{bottom:437.346667pt;}
.y2_c00216{bottom:475.746667pt;}
.y1_c00216{bottom:607.840000pt;}
.h2_c00216{height:104.937500pt;}
.h4_c00216{height:115.000000pt;}
.h3_c00216{height:115.115000pt;}
.h1_c00216{height:122.252187pt;}
.h0_c00216{height:720.000000pt;}
.w1_c00216{width:1279.999981pt;}
.w0_c00216{width:1280.000000pt;}
.x0_c00216{left:0.000000pt;}
.x2_c00216{left:85.055981pt;}
.x3_c00216{left:121.055981pt;}
.x1_c00216{left:439.359981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a13fb22bd3468627603de741.woff')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.027832;font-style:normal;font-weight:normal;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_cfc7c819047ed653c08e7615.woff')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:0.772949;font-style:normal;font-weight:normal;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_02406a5049095e54ffe13f88.woff')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.106445;font-style:normal;font-weight:normal;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_50aa8d00dab686f2d6b31f59.woff')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.106445;font-style: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.100200px;}
.ls3_c00217{letter-spacing:-0.093600px;}
.ls1_c00217{letter-spacing:0.000000px;}
.ls0_c00217{letter-spacing:12.525840px;}
.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:-46.469520px;}
.ws1_c00217{word-spacing:-0.982080px;}
.ws4_c00217{word-spacing:0.000000px;}
.ws2_c00217{word-spacing:0.411120px;}
.ws3_c00217{word-spacing:1.260360px;}
._0_c00217{width:1.509840px;}
._2_c00217{width:47.846640px;}
._1_c00217{width:48.931440px;}
.fc1_c00217{color:rgb(0,198,187);}
.fc0_c00217{color:rgb(0,0,0);}
.fs0_c00217{font-size:167.760000px;}
.fs1_c00217{font-size:167.904000px;}
.y0_c00217{bottom:0.000000px;}
.y7_c00217{bottom:171.795000px;}
.y6_c00217{bottom:222.225000px;}
.y5_c00217{bottom:272.625000px;}
.y4_c00217{bottom:342.105000px;}
.y3_c00217{bottom:411.630000px;}
.y2_c00217{bottom:462.030000px;}
.y1_c00217{bottom:683.820000px;}
.h1_c00217{height:137.533711px;}
.h2_c00217{height:150.721875px;}
.h3_c00217{height:150.851250px;}
.h0_c00217{height:810.000000px;}
.w1_c00217{width:1439.999979px;}
.w0_c00217{width:1440.000000px;}
.x0_c00217{left:0.000000px;}
.x2_c00217{left:106.487979px;}
.x3_c00217{left:146.987979px;}
.x1_c00217{left:678.629979px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls2_c00217{letter-spacing:-0.089067pt;}
.ls3_c00217{letter-spacing:-0.083200pt;}
.ls1_c00217{letter-spacing:0.000000pt;}
.ls0_c00217{letter-spacing:11.134080pt;}
.ws0_c00217{word-spacing:-41.306240pt;}
.ws1_c00217{word-spacing:-0.872960pt;}
.ws4_c00217{word-spacing:0.000000pt;}
.ws2_c00217{word-spacing:0.365440pt;}
.ws3_c00217{word-spacing:1.120320pt;}
._0_c00217{width:1.342080pt;}
._2_c00217{width:42.530347pt;}
._1_c00217{width:43.494613pt;}
.fs0_c00217{font-size:149.120000pt;}
.fs1_c00217{font-size:149.248000pt;}
.y0_c00217{bottom:0.000000pt;}
.y7_c00217{bottom:152.706667pt;}
.y6_c00217{bottom:197.533333pt;}
.y5_c00217{bottom:242.333333pt;}
.y4_c00217{bottom:304.093333pt;}
.y3_c00217{bottom:365.893333pt;}
.y2_c00217{bottom:410.693333pt;}
.y1_c00217{bottom:607.840000pt;}
.h1_c00217{height:122.252187pt;}
.h2_c00217{height:133.975000pt;}
.h3_c00217{height:134.090000pt;}
.h0_c00217{height:720.000000pt;}
.w1_c00217{width:1279.999981pt;}
.w0_c00217{width:1280.000000pt;}
.x0_c00217{left:0.000000pt;}
.x2_c00217{left:94.655981pt;}
.x3_c00217{left:130.655981pt;}
.x1_c00217{left:603.226648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97aed77adb6ff05c76ed9023.woff')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.027832;font-style:normal;font-weight:normal;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_cfc7c819047ed653c08e7615.woff')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:0.772949;font-style:normal;font-weight:normal;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_f92e594213dbb92189c4cd7f.woff')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.106445;font-style:normal;font-weight:normal;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_8eb149a83ca883e50e4cc794.woff')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:1.027832;font-style: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;}
.ls0_c00218{letter-spacing:12.373536px;}
.ls1_c00218{letter-spacing:12.501840px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00218{word-spacing:-46.509408px;}
.ws2_c00218{word-spacing:0.000000px;}
.ws0_c00218{word-spacing:0.468000px;}
._2_c00218{margin-left:-1.509840px;}
._0_c00218{width:1.006560px;}
._1_c00218{width:2.013120px;}
.fc1_c00218{color:rgb(0,198,187);}
.fc0_c00218{color:rgb(0,0,0);}
.fs0_c00218{font-size:167.760000px;}
.fs1_c00218{font-size:167.904000px;}
.y0_c00218{bottom:0.000000px;}
.y9_c00218{bottom:176.940000px;}
.y8_c00218{bottom:222.300000px;}
.y7_c00218{bottom:286.740000px;}
.y6_c00218{bottom:351.210000px;}
.y5_c00218{bottom:396.570000px;}
.y4_c00218{bottom:461.010000px;}
.y3_c00218{bottom:506.415000px;}
.y2_c00218{bottom:658.620000px;}
.y1_c00218{bottom:709.020000px;}
.h1_c00218{height:137.533711px;}
.h3_c00218{height:150.721875px;}
.h2_c00218{height:150.851250px;}
.h0_c00218{height:810.000000px;}
.w1_c00218{width:1439.999979px;}
.w0_c00218{width:1440.000000px;}
.x0_c00218{left:0.000000px;}
.x1_c00218{left:115.703979px;}
.x3_c00218{left:142.595979px;}
.x4_c00218{left:183.089979px;}
.x2_c00218{left:644.609979px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls2_c00218{letter-spacing:0.000000pt;}
.ls0_c00218{letter-spacing:10.998699pt;}
.ls1_c00218{letter-spacing:11.112747pt;}
.ws1_c00218{word-spacing:-41.341696pt;}
.ws2_c00218{word-spacing:0.000000pt;}
.ws0_c00218{word-spacing:0.416000pt;}
._2_c00218{margin-left:-1.342080pt;}
._0_c00218{width:0.894720pt;}
._1_c00218{width:1.789440pt;}
.fs0_c00218{font-size:149.120000pt;}
.fs1_c00218{font-size:149.248000pt;}
.y0_c00218{bottom:0.000000pt;}
.y9_c00218{bottom:157.280000pt;}
.y8_c00218{bottom:197.600000pt;}
.y7_c00218{bottom:254.880000pt;}
.y6_c00218{bottom:312.186667pt;}
.y5_c00218{bottom:352.506667pt;}
.y4_c00218{bottom:409.786667pt;}
.y3_c00218{bottom:450.146667pt;}
.y2_c00218{bottom:585.440000pt;}
.y1_c00218{bottom:630.240000pt;}
.h1_c00218{height:122.252187pt;}
.h3_c00218{height:133.975000pt;}
.h2_c00218{height:134.090000pt;}
.h0_c00218{height:720.000000pt;}
.w1_c00218{width:1279.999981pt;}
.w0_c00218{width:1280.000000pt;}
.x0_c00218{left:0.000000pt;}
.x1_c00218{left:102.847981pt;}
.x3_c00218{left:126.751981pt;}
.x4_c00218{left:162.746648pt;}
.x2_c00218{left:572.986648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce8ee53e06b9a499d67b1693.woff')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.027832;font-style:normal;font-weight:normal;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_fd0636e10cd1903f2924ad2c.woff')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.027832;font-style:normal;font-weight:normal;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_cfc7c819047ed653c08e7615.woff')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:0.772949;font-style:normal;font-weight:normal;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_bc1a36059573e36f569d8e8c.woff')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:1.106445;font-style:normal;font-weight:normal;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_1e7f289954243ff59ef5ab1a.woff')format("woff");}.ff5_c00219{font-family:ff5_c00219;line-height:1.106445;font-style: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;}
.ls1_c00219{letter-spacing:0.000000px;}
.ls0_c00219{letter-spacing:12.541536px;}
.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:-46.469520px;}
.ws1_c00219{word-spacing:0.000000px;}
._1_c00219{margin-left:-1.464384px;}
._0_c00219{width:1.342080px;}
._2_c00219{width:2.348640px;}
.fc1_c00219{color:rgb(0,198,187);}
.fc0_c00219{color:rgb(0,0,0);}
.fs0_c00219{font-size:167.760000px;}
.fs1_c00219{font-size:167.904000px;}
.y0_c00219{bottom:0.000000px;}
.ya_c00219{bottom:121.392000px;}
.y9_c00219{bottom:171.795000px;}
.y8_c00219{bottom:222.225000px;}
.y7_c00219{bottom:291.705000px;}
.y6_c00219{bottom:342.105000px;}
.y5_c00219{bottom:392.550000px;}
.y4_c00219{bottom:442.950000px;}
.y3_c00219{bottom:512.280000px;}
.y2_c00219{bottom:658.620000px;}
.y1_c00219{bottom:709.020000px;}
.h1_c00219{height:137.533711px;}
.h2_c00219{height:137.651766px;}
.h3_c00219{height:150.721875px;}
.h4_c00219{height:150.851250px;}
.h0_c00219{height:810.000000px;}
.w1_c00219{width:1439.999979px;}
.w0_c00219{width:1440.000000px;}
.x0_c00219{left:0.000000px;}
.x3_c00219{left:95.651979px;}
.x5_c00219{left:136.187979px;}
.x4_c00219{left:142.127979px;}
.x2_c00219{left:361.259979px;}
.x1_c00219{left:374.759979px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls1_c00219{letter-spacing:0.000000pt;}
.ls0_c00219{letter-spacing:11.148032pt;}
.ws0_c00219{word-spacing:-41.306240pt;}
.ws1_c00219{word-spacing:0.000000pt;}
._1_c00219{margin-left:-1.301675pt;}
._0_c00219{width:1.192960pt;}
._2_c00219{width:2.087680pt;}
.fs0_c00219{font-size:149.120000pt;}
.fs1_c00219{font-size:149.248000pt;}
.y0_c00219{bottom:0.000000pt;}
.ya_c00219{bottom:107.904000pt;}
.y9_c00219{bottom:152.706667pt;}
.y8_c00219{bottom:197.533333pt;}
.y7_c00219{bottom:259.293333pt;}
.y6_c00219{bottom:304.093333pt;}
.y5_c00219{bottom:348.933333pt;}
.y4_c00219{bottom:393.733333pt;}
.y3_c00219{bottom:455.360000pt;}
.y2_c00219{bottom:585.440000pt;}
.y1_c00219{bottom:630.240000pt;}
.h1_c00219{height:122.252187pt;}
.h2_c00219{height:122.357125pt;}
.h3_c00219{height:133.975000pt;}
.h4_c00219{height:134.090000pt;}
.h0_c00219{height:720.000000pt;}
.w1_c00219{width:1279.999981pt;}
.w0_c00219{width:1280.000000pt;}
.x0_c00219{left:0.000000pt;}
.x3_c00219{left:85.023981pt;}
.x5_c00219{left:121.055981pt;}
.x4_c00219{left:126.335981pt;}
.x2_c00219{left:321.119981pt;}
.x1_c00219{left:333.119981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c31b80ccfd11b537d4a5f601.woff')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.106445;font-style:normal;font-weight:normal;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_42dfa10f4821a54f277ba825.woff')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.027832;font-style:normal;font-weight:normal;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_3d1fb2f0a64338168557da22.woff')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.106445;font-style: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;}
.ls0_c00220{letter-spacing:0.000000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00220{word-spacing:-39.888000px;}
.ws1_c00220{word-spacing:0.000000px;}
._3_c00220{margin-left:-2.977056px;}
._1_c00220{margin-left:-1.728000px;}
._0_c00220{width:1.919232px;}
._2_c00220{width:3.696768px;}
.fc1_c00220{color:rgb(0,0,0);}
.fc0_c00220{color:rgb(33,33,33);}
.fs3_c00220{font-size:144.000000px;}
.fs4_c00220{font-size:144.144000px;}
.fs1_c00220{font-size:167.760000px;}
.fs2_c00220{font-size:239.760000px;}
.fs0_c00220{font-size:239.904000px;}
.y0_c00220{bottom:0.000000px;}
.y19_c00220{bottom:19.260000px;}
.y18_c00220{bottom:107.388000px;}
.y8_c00220{bottom:117.360000px;}
.y11_c00220{bottom:128.160000px;}
.y16_c00220{bottom:128.988000px;}
.y12_c00220{bottom:137.520000px;}
.yc_c00220{bottom:137.550000px;}
.y7_c00220{bottom:137.595000px;}
.yd_c00220{bottom:149.760000px;}
.y17_c00220{bottom:150.585000px;}
.y15_c00220{bottom:222.480000px;}
.y10_c00220{bottom:225.360000px;}
.y2_c00220{bottom:229.425000px;}
.y14_c00220{bottom:265.680000px;}
.yf_c00220{bottom:267.150000px;}
.y3_c00220{bottom:299.700000px;}
.yb_c00220{bottom:300.960000px;}
.y13_c00220{bottom:308.880000px;}
.ye_c00220{bottom:310.350000px;}
.y5_c00220{bottom:380.595000px;}
.ya_c00220{bottom:396.795000px;}
.y6_c00220{bottom:419.760000px;}
.y9_c00220{bottom:439.995000px;}
.y4_c00220{bottom:448.485000px;}
.y1_c00220{bottom:476.100000px;}
.h7_c00220{height:129.375000px;}
.h9_c00220{height:129.504375px;}
.h4_c00220{height:137.533711px;}
.he_c00220{height:184.500000px;}
.h5_c00220{height:215.409375px;}
.h2_c00220{height:215.538750px;}
.hc_c00220{height:294.120000px;}
.h6_c00220{height:302.580000px;}
.h1_c00220{height:333.900000px;}
.hd_c00220{height:445.320000px;}
.h3_c00220{height:510.300000px;}
.ha_c00220{height:604.980000px;}
.h8_c00220{height:692.640000px;}
.hb_c00220{height:733.140000px;}
.h0_c00220{height:810.000000px;}
.w2_c00220{width:690.660000px;}
.w1_c00220{width:696.960000px;}
.w3_c00220{width:1439.999979px;}
.w0_c00220{width:1440.000000px;}
.x0_c00220{left:0.000000px;}
.x2_c00220{left:10.872000px;}
.x1_c00220{left:38.520000px;}
.x5_c00220{left:564.810000px;}
.x4_c00220{left:573.404979px;}
.x3_c00220{left:735.300000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ws0_c00220{word-spacing:-35.456000pt;}
.ws1_c00220{word-spacing:0.000000pt;}
._3_c00220{margin-left:-2.646272pt;}
._1_c00220{margin-left:-1.536000pt;}
._0_c00220{width:1.705984pt;}
._2_c00220{width:3.286016pt;}
.fs3_c00220{font-size:128.000000pt;}
.fs4_c00220{font-size:128.128000pt;}
.fs1_c00220{font-size:149.120000pt;}
.fs2_c00220{font-size:213.120000pt;}
.fs0_c00220{font-size:213.248000pt;}
.y0_c00220{bottom:0.000000pt;}
.y19_c00220{bottom:17.120000pt;}
.y18_c00220{bottom:95.456000pt;}
.y8_c00220{bottom:104.320000pt;}
.y11_c00220{bottom:113.920000pt;}
.y16_c00220{bottom:114.656000pt;}
.y12_c00220{bottom:122.240000pt;}
.yc_c00220{bottom:122.266667pt;}
.y7_c00220{bottom:122.306667pt;}
.yd_c00220{bottom:133.120000pt;}
.y17_c00220{bottom:133.853333pt;}
.y15_c00220{bottom:197.760000pt;}
.y10_c00220{bottom:200.320000pt;}
.y2_c00220{bottom:203.933333pt;}
.y14_c00220{bottom:236.160000pt;}
.yf_c00220{bottom:237.466667pt;}
.y3_c00220{bottom:266.400000pt;}
.yb_c00220{bottom:267.520000pt;}
.y13_c00220{bottom:274.560000pt;}
.ye_c00220{bottom:275.866667pt;}
.y5_c00220{bottom:338.306667pt;}
.ya_c00220{bottom:352.706667pt;}
.y6_c00220{bottom:373.120000pt;}
.y9_c00220{bottom:391.106667pt;}
.y4_c00220{bottom:398.653333pt;}
.y1_c00220{bottom:423.200000pt;}
.h7_c00220{height:115.000000pt;}
.h9_c00220{height:115.115000pt;}
.h4_c00220{height:122.252187pt;}
.he_c00220{height:164.000000pt;}
.h5_c00220{height:191.475000pt;}
.h2_c00220{height:191.590000pt;}
.hc_c00220{height:261.440000pt;}
.h6_c00220{height:268.960000pt;}
.h1_c00220{height:296.800000pt;}
.hd_c00220{height:395.840000pt;}
.h3_c00220{height:453.600000pt;}
.ha_c00220{height:537.760000pt;}
.h8_c00220{height:615.680000pt;}
.hb_c00220{height:651.680000pt;}
.h0_c00220{height:720.000000pt;}
.w2_c00220{width:613.920000pt;}
.w1_c00220{width:619.520000pt;}
.w3_c00220{width:1279.999981pt;}
.w0_c00220{width:1280.000000pt;}
.x0_c00220{left:0.000000pt;}
.x2_c00220{left:9.664000pt;}
.x1_c00220{left:34.240000pt;}
.x5_c00220{left:502.053333pt;}
.x4_c00220{left:509.693314pt;}
.x3_c00220{left:653.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_712cac1cd10a0fb4dda7587d.woff')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.106445;font-style:normal;font-weight:normal;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_99e8494d228e6cbd5fb77a89.woff')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.027832;font-style:normal;font-weight:normal;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_9c14e51a36197f7cf9aee39f.woff')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.106445;font-style: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;}
.ls0_c00221{letter-spacing:0.000000px;}
.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:-39.888000px;}
.ws1_c00221{word-spacing:0.000000px;}
._2_c00221{margin-left:-2.422800px;}
._0_c00221{margin-left:-1.321200px;}
._1_c00221{width:1.728000px;}
.fc1_c00221{color:rgb(0,0,0);}
.fc0_c00221{color:rgb(33,33,33);}
.fs2_c00221{font-size:144.000000px;}
.fs3_c00221{font-size:144.144000px;}
.fs1_c00221{font-size:192.384000px;}
.fs0_c00221{font-size:264.240000px;}
.y0_c00221{bottom:0.000000px;}
.y10_c00221{bottom:5.400000px;}
.y15_c00221{bottom:13.140000px;}
.yc_c00221{bottom:48.600000px;}
.y14_c00221{bottom:67.140000px;}
.y13_c00221{bottom:121.176000px;}
.y11_c00221{bottom:137.376000px;}
.y9_c00221{bottom:145.800000px;}
.y12_c00221{bottom:164.370000px;}
.yf_c00221{bottom:218.370000px;}
.y3_c00221{bottom:242.820000px;}
.y6_c00221{bottom:243.000000px;}
.y2_c00221{bottom:252.210000px;}
.ye_c00221{bottom:261.615000px;}
.ya_c00221{bottom:267.015000px;}
.y8_c00221{bottom:267.045000px;}
.yd_c00221{bottom:310.215000px;}
.y7_c00221{bottom:310.245000px;}
.yb_c00221{bottom:412.815000px;}
.y5_c00221{bottom:425.010000px;}
.y1_c00221{bottom:444.420000px;}
.y4_c00221{bottom:500.115000px;}
.h6_c00221{height:129.375000px;}
.h8_c00221{height:129.504375px;}
.h4_c00221{height:157.721063px;}
.hd_c00221{height:178.200000px;}
.hc_c00221{height:232.200000px;}
.h2_c00221{height:237.403125px;}
.ha_c00221{height:302.400000px;}
.h1_c00221{height:365.580000px;}
.hb_c00221{height:459.000000px;}
.h9_c00221{height:556.200000px;}
.h5_c00221{height:567.000000px;}
.h3_c00221{height:567.180000px;}
.h7_c00221{height:604.800000px;}
.h0_c00221{height:810.000000px;}
.w2_c00221{width:645.660000px;}
.w1_c00221{width:651.420000px;}
.w3_c00221{width:671.040000px;}
.w4_c00221{width:1439.999979px;}
.w0_c00221{width:1440.000000px;}
.x0_c00221{left:0.000000px;}
.x2_c00221{left:10.944000px;}
.x1_c00221{left:69.300000px;}
.x3_c00221{left:720.540000px;}
.x4_c00221{left:740.160000px;}
.x5_c00221{left:1220.474979px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls0_c00221{letter-spacing:0.000000pt;}
.ws0_c00221{word-spacing:-35.456000pt;}
.ws1_c00221{word-spacing:0.000000pt;}
._2_c00221{margin-left:-2.153600pt;}
._0_c00221{margin-left:-1.174400pt;}
._1_c00221{width:1.536000pt;}
.fs2_c00221{font-size:128.000000pt;}
.fs3_c00221{font-size:128.128000pt;}
.fs1_c00221{font-size:171.008000pt;}
.fs0_c00221{font-size:234.880000pt;}
.y0_c00221{bottom:0.000000pt;}
.y10_c00221{bottom:4.800000pt;}
.y15_c00221{bottom:11.680000pt;}
.yc_c00221{bottom:43.200000pt;}
.y14_c00221{bottom:59.680000pt;}
.y13_c00221{bottom:107.712000pt;}
.y11_c00221{bottom:122.112000pt;}
.y9_c00221{bottom:129.600000pt;}
.y12_c00221{bottom:146.106667pt;}
.yf_c00221{bottom:194.106667pt;}
.y3_c00221{bottom:215.840000pt;}
.y6_c00221{bottom:216.000000pt;}
.y2_c00221{bottom:224.186667pt;}
.ye_c00221{bottom:232.546667pt;}
.ya_c00221{bottom:237.346667pt;}
.y8_c00221{bottom:237.373333pt;}
.yd_c00221{bottom:275.746667pt;}
.y7_c00221{bottom:275.773333pt;}
.yb_c00221{bottom:366.946667pt;}
.y5_c00221{bottom:377.786667pt;}
.y1_c00221{bottom:395.040000pt;}
.y4_c00221{bottom:444.546667pt;}
.h6_c00221{height:115.000000pt;}
.h8_c00221{height:115.115000pt;}
.h4_c00221{height:140.196500pt;}
.hd_c00221{height:158.400000pt;}
.hc_c00221{height:206.400000pt;}
.h2_c00221{height:211.025000pt;}
.ha_c00221{height:268.800000pt;}
.h1_c00221{height:324.960000pt;}
.hb_c00221{height:408.000000pt;}
.h9_c00221{height:494.400000pt;}
.h5_c00221{height:504.000000pt;}
.h3_c00221{height:504.160000pt;}
.h7_c00221{height:537.600000pt;}
.h0_c00221{height:720.000000pt;}
.w2_c00221{width:573.920000pt;}
.w1_c00221{width:579.040000pt;}
.w3_c00221{width:596.480000pt;}
.w4_c00221{width:1279.999981pt;}
.w0_c00221{width:1280.000000pt;}
.x0_c00221{left:0.000000pt;}
.x2_c00221{left:9.728000pt;}
.x1_c00221{left:61.600000pt;}
.x3_c00221{left:640.480000pt;}
.x4_c00221{left:657.920000pt;}
.x5_c00221{left:1084.866648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70bc6f8ea3bb42e8aaf321f5.woff')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.106445;font-style:normal;font-weight:normal;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_8eb149a83ca883e50e4cc794.woff')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.027832;font-style:normal;font-weight:normal;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_8d74dabad59b285709cf70f9.woff')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.106445;font-style: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;}
.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:-53.867520px;}
.ws2_c00222{word-spacing:-39.927888px;}
.ws1_c00222{word-spacing:-39.888000px;}
.ws3_c00222{word-spacing:0.000000px;}
._2_c00222{margin-left:-2.448000px;}
._0_c00222{margin-left:-1.321200px;}
._1_c00222{width:1.872000px;}
.fc1_c00222{color:rgb(0,0,0);}
.fc0_c00222{color:rgb(33,33,33);}
.fs2_c00222{font-size:144.000000px;}
.fs3_c00222{font-size:144.144000px;}
.fs1_c00222{font-size:192.384000px;}
.fs0_c00222{font-size:264.240000px;}
.y0_c00222{bottom:0.000000px;}
.yf_c00222{bottom:10.440000px;}
.y16_c00222{bottom:26.640000px;}
.y17_c00222{bottom:48.276000px;}
.y15_c00222{bottom:69.876000px;}
.y6_c00222{bottom:109.260000px;}
.ya_c00222{bottom:127.080000px;}
.ye_c00222{bottom:137.445000px;}
.y12_c00222{bottom:160.095000px;}
.yd_c00222{bottom:161.640000px;}
.y14_c00222{bottom:181.695000px;}
.y11_c00222{bottom:203.295000px;}
.y13_c00222{bottom:224.895000px;}
.y3_c00222{bottom:242.820000px;}
.y2_c00222{bottom:252.210000px;}
.y8_c00222{bottom:260.460000px;}
.yc_c00222{bottom:267.120000px;}
.y9_c00222{bottom:267.150000px;}
.y10_c00222{bottom:310.245000px;}
.yb_c00222{bottom:310.320000px;}
.y7_c00222{bottom:396.750000px;}
.y5_c00222{bottom:425.010000px;}
.y1_c00222{bottom:444.420000px;}
.y4_c00222{bottom:500.115000px;}
.h6_c00222{height:129.375000px;}
.ha_c00222{height:129.504375px;}
.h4_c00222{height:157.721063px;}
.he_c00222{height:213.480000px;}
.h2_c00222{height:237.403125px;}
.h9_c00222{height:302.580000px;}
.hd_c00222{height:364.680000px;}
.h1_c00222{height:365.580000px;}
.hb_c00222{height:498.060000px;}
.h7_c00222{height:549.540000px;}
.h3_c00222{height:567.180000px;}
.h8_c00222{height:604.980000px;}
.hc_c00222{height:649.260000px;}
.h5_c00222{height:700.740000px;}
.h0_c00222{height:810.000000px;}
.w4_c00222{width:451.440000px;}
.w2_c00222{width:645.660000px;}
.w3_c00222{width:648.180000px;}
.w1_c00222{width:651.420000px;}
.w0_c00222{width:1440.000000px;}
.x0_c00222{left:0.000000px;}
.x5_c00222{left:4.572000px;}
.x2_c00222{left:10.944000px;}
.x1_c00222{left:69.300000px;}
.x4_c00222{left:93.780000px;}
.x3_c00222{left:720.540000px;}
.x6_c00222{left:741.780000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ws0_c00222{word-spacing:-47.882240pt;}
.ws2_c00222{word-spacing:-35.491456pt;}
.ws1_c00222{word-spacing:-35.456000pt;}
.ws3_c00222{word-spacing:0.000000pt;}
._2_c00222{margin-left:-2.176000pt;}
._0_c00222{margin-left:-1.174400pt;}
._1_c00222{width:1.664000pt;}
.fs2_c00222{font-size:128.000000pt;}
.fs3_c00222{font-size:128.128000pt;}
.fs1_c00222{font-size:171.008000pt;}
.fs0_c00222{font-size:234.880000pt;}
.y0_c00222{bottom:0.000000pt;}
.yf_c00222{bottom:9.280000pt;}
.y16_c00222{bottom:23.680000pt;}
.y17_c00222{bottom:42.912000pt;}
.y15_c00222{bottom:62.112000pt;}
.y6_c00222{bottom:97.120000pt;}
.ya_c00222{bottom:112.960000pt;}
.ye_c00222{bottom:122.173333pt;}
.y12_c00222{bottom:142.306667pt;}
.yd_c00222{bottom:143.680000pt;}
.y14_c00222{bottom:161.506667pt;}
.y11_c00222{bottom:180.706667pt;}
.y13_c00222{bottom:199.906667pt;}
.y3_c00222{bottom:215.840000pt;}
.y2_c00222{bottom:224.186667pt;}
.y8_c00222{bottom:231.520000pt;}
.yc_c00222{bottom:237.440000pt;}
.y9_c00222{bottom:237.466667pt;}
.y10_c00222{bottom:275.773333pt;}
.yb_c00222{bottom:275.840000pt;}
.y7_c00222{bottom:352.666667pt;}
.y5_c00222{bottom:377.786667pt;}
.y1_c00222{bottom:395.040000pt;}
.y4_c00222{bottom:444.546667pt;}
.h6_c00222{height:115.000000pt;}
.ha_c00222{height:115.115000pt;}
.h4_c00222{height:140.196500pt;}
.he_c00222{height:189.760000pt;}
.h2_c00222{height:211.025000pt;}
.h9_c00222{height:268.960000pt;}
.hd_c00222{height:324.160000pt;}
.h1_c00222{height:324.960000pt;}
.hb_c00222{height:442.720000pt;}
.h7_c00222{height:488.480000pt;}
.h3_c00222{height:504.160000pt;}
.h8_c00222{height:537.760000pt;}
.hc_c00222{height:577.120000pt;}
.h5_c00222{height:622.880000pt;}
.h0_c00222{height:720.000000pt;}
.w4_c00222{width:401.280000pt;}
.w2_c00222{width:573.920000pt;}
.w3_c00222{width:576.160000pt;}
.w1_c00222{width:579.040000pt;}
.w0_c00222{width:1280.000000pt;}
.x0_c00222{left:0.000000pt;}
.x5_c00222{left:4.064000pt;}
.x2_c00222{left:9.728000pt;}
.x1_c00222{left:61.600000pt;}
.x4_c00222{left:83.360000pt;}
.x3_c00222{left:640.480000pt;}
.x6_c00222{left:659.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cede4048f8be6210e4bd3d28.woff')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.106445;font-style:normal;font-weight:normal;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_a40a83405ab4ff63dc21d7a9.woff')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.027832;font-style:normal;font-weight:normal;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_c0baf2385724dbba415bb8bb.woff')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.106445;font-style: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;}
.ls0_c00223{letter-spacing:0.000000px;}
.ls2_c00223{letter-spacing:0.346800px;}
.ls1_c00223{letter-spacing:1.068000px;}
.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:-46.972800px;}
.ws2_c00223{word-spacing:-33.346368px;}
.ws1_c00223{word-spacing:-33.306480px;}
.ws3_c00223{word-spacing:0.000000px;}
._2_c00223{margin-left:-2.531088px;}
._0_c00223{margin-left:-1.321200px;}
._1_c00223{width:1.321200px;}
.fc1_c00223{color:rgb(0,0,0);}
.fc0_c00223{color:rgb(33,33,33);}
.fs5_c00223{font-size:120.240000px;}
.fs4_c00223{font-size:120.384000px;}
.fs2_c00223{font-size:167.760000px;}
.fs1_c00223{font-size:167.904000px;}
.fs0_c00223{font-size:264.240000px;}
.fs3_c00223{font-size:264.384000px;}
.y0_c00223{bottom:0.000000px;}
.y15_c00223{bottom:21.960000px;}
.y20_c00223{bottom:30.384000px;}
.y19_c00223{bottom:65.160000px;}
.y1e_c00223{bottom:78.948000px;}
.y3_c00223{bottom:84.600000px;}
.y1f_c00223{bottom:96.948000px;}
.y1a_c00223{bottom:114.585000px;}
.y14_c00223{bottom:114.630000px;}
.ya_c00223{bottom:114.660000px;}
.y8_c00223{bottom:114.690000px;}
.y1d_c00223{bottom:114.948000px;}
.y18_c00223{bottom:147.960000px;}
.y10_c00223{bottom:151.560000px;}
.y1c_c00223{bottom:161.745000px;}
.y1b_c00223{bottom:197.745000px;}
.y13_c00223{bottom:212.760000px;}
.y17_c00223{bottom:222.630000px;}
.yd_c00223{bottom:222.660000px;}
.yb_c00223{bottom:234.360000px;}
.y2_c00223{bottom:252.150000px;}
.y16_c00223{bottom:258.630000px;}
.yc_c00223{bottom:258.660000px;}
.yf_c00223{bottom:277.560000px;}
.y9_c00223{bottom:360.360000px;}
.y12_c00223{bottom:374.220000px;}
.y11_c00223{bottom:410.220000px;}
.y7_c00223{bottom:425.160000px;}
.y1_c00223{bottom:437.400000px;}
.ye_c00223{bottom:475.020000px;}
.y6_c00223{bottom:554.550000px;}
.y5_c00223{bottom:628.350000px;}
.y4_c00223{bottom:678.780000px;}
.h9_c00223{height:108.028125px;}
.h8_c00223{height:108.157500px;}
.h5_c00223{height:137.533711px;}
.h4_c00223{height:137.651766px;}
.he_c00223{height:167.940000px;}
.hd_c00223{height:234.540000px;}
.h2_c00223{height:237.403125px;}
.h6_c00223{height:237.532500px;}
.h7_c00223{height:252.180000px;}
.hc_c00223{height:360.540000px;}
.h1_c00223{height:372.600000px;}
.hb_c00223{height:443.340000px;}
.ha_c00223{height:504.180000px;}
.h3_c00223{height:725.400000px;}
.h0_c00223{height:810.000000px;}
.w5_c00223{width:166.500000px;}
.w4_c00223{width:506.700000px;}
.w3_c00223{width:637.560000px;}
.w2_c00223{width:645.660000px;}
.w1_c00223{width:651.420000px;}
.w6_c00223{width:1439.999979px;}
.w0_c00223{width:1440.000000px;}
.x0_c00223{left:0.000000px;}
.x2_c00223{left:10.944000px;}
.x1_c00223{left:69.300000px;}
.x4_c00223{left:706.680000px;}
.x3_c00223{left:720.540000px;}
.x8_c00223{left:840.704979px;}
.x7_c00223{left:901.544979px;}
.x5_c00223{left:1213.200000px;}
.x6_c00223{left:1241.024979px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ls2_c00223{letter-spacing:0.308267pt;}
.ls1_c00223{letter-spacing:0.949333pt;}
.ws0_c00223{word-spacing:-41.753600pt;}
.ws2_c00223{word-spacing:-29.641216pt;}
.ws1_c00223{word-spacing:-29.605760pt;}
.ws3_c00223{word-spacing:0.000000pt;}
._2_c00223{margin-left:-2.249856pt;}
._0_c00223{margin-left:-1.174400pt;}
._1_c00223{width:1.174400pt;}
.fs5_c00223{font-size:106.880000pt;}
.fs4_c00223{font-size:107.008000pt;}
.fs2_c00223{font-size:149.120000pt;}
.fs1_c00223{font-size:149.248000pt;}
.fs0_c00223{font-size:234.880000pt;}
.fs3_c00223{font-size:235.008000pt;}
.y0_c00223{bottom:0.000000pt;}
.y15_c00223{bottom:19.520000pt;}
.y20_c00223{bottom:27.008000pt;}
.y19_c00223{bottom:57.920000pt;}
.y1e_c00223{bottom:70.176000pt;}
.y3_c00223{bottom:75.200000pt;}
.y1f_c00223{bottom:86.176000pt;}
.y1a_c00223{bottom:101.853333pt;}
.y14_c00223{bottom:101.893333pt;}
.ya_c00223{bottom:101.920000pt;}
.y8_c00223{bottom:101.946667pt;}
.y1d_c00223{bottom:102.176000pt;}
.y18_c00223{bottom:131.520000pt;}
.y10_c00223{bottom:134.720000pt;}
.y1c_c00223{bottom:143.773333pt;}
.y1b_c00223{bottom:175.773333pt;}
.y13_c00223{bottom:189.120000pt;}
.y17_c00223{bottom:197.893333pt;}
.yd_c00223{bottom:197.920000pt;}
.yb_c00223{bottom:208.320000pt;}
.y2_c00223{bottom:224.133333pt;}
.y16_c00223{bottom:229.893333pt;}
.yc_c00223{bottom:229.920000pt;}
.yf_c00223{bottom:246.720000pt;}
.y9_c00223{bottom:320.320000pt;}
.y12_c00223{bottom:332.640000pt;}
.y11_c00223{bottom:364.640000pt;}
.y7_c00223{bottom:377.920000pt;}
.y1_c00223{bottom:388.800000pt;}
.ye_c00223{bottom:422.240000pt;}
.y6_c00223{bottom:492.933333pt;}
.y5_c00223{bottom:558.533333pt;}
.y4_c00223{bottom:603.360000pt;}
.h9_c00223{height:96.025000pt;}
.h8_c00223{height:96.140000pt;}
.h5_c00223{height:122.252187pt;}
.h4_c00223{height:122.357125pt;}
.he_c00223{height:149.280000pt;}
.hd_c00223{height:208.480000pt;}
.h2_c00223{height:211.025000pt;}
.h6_c00223{height:211.140000pt;}
.h7_c00223{height:224.160000pt;}
.hc_c00223{height:320.480000pt;}
.h1_c00223{height:331.200000pt;}
.hb_c00223{height:394.080000pt;}
.ha_c00223{height:448.160000pt;}
.h3_c00223{height:644.800000pt;}
.h0_c00223{height:720.000000pt;}
.w5_c00223{width:148.000000pt;}
.w4_c00223{width:450.400000pt;}
.w3_c00223{width:566.720000pt;}
.w2_c00223{width:573.920000pt;}
.w1_c00223{width:579.040000pt;}
.w6_c00223{width:1279.999981pt;}
.w0_c00223{width:1280.000000pt;}
.x0_c00223{left:0.000000pt;}
.x2_c00223{left:9.728000pt;}
.x1_c00223{left:61.600000pt;}
.x4_c00223{left:628.160000pt;}
.x3_c00223{left:640.480000pt;}
.x8_c00223{left:747.293314pt;}
.x7_c00223{left:801.373314pt;}
.x5_c00223{left:1078.400000pt;}
.x6_c00223{left:1103.133314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e06945ec20fa87ffda9318c5.woff')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.027832;font-style:normal;font-weight:normal;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_cfc7c819047ed653c08e7615.woff')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:0.772949;font-style:normal;font-weight:normal;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_01011f2188e0a9c473082f72.woff')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.106445;font-style:normal;font-weight:normal;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_904fb7a7304081441b53ea8a.woff')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.106445;font-style: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;}
.ls3_c00224{letter-spacing:0.000000px;}
.ls1_c00224{letter-spacing:12.397536px;}
.ls0_c00224{letter-spacing:12.525840px;}
.ls2_c00224{letter-spacing:46.368000px;}
.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.194496px;}
.ws1_c00224{word-spacing:0.000000px;}
._0_c00224{width:1.174320px;}
._2_c00224{width:2.929680px;}
._1_c00224{width:47.910480px;}
._3_c00224{width:49.178400px;}
.fc1_c00224{color:rgb(0,198,187);}
.fc0_c00224{color:rgb(0,0,0);}
.fs0_c00224{font-size:167.760000px;}
.fs1_c00224{font-size:167.904000px;}
.y0_c00224{bottom:0.000000px;}
.y9_c00224{bottom:135.936000px;}
.y8_c00224{bottom:186.330000px;}
.y7_c00224{bottom:255.810000px;}
.y6_c00224{bottom:306.255000px;}
.y5_c00224{bottom:375.735000px;}
.y4_c00224{bottom:426.165000px;}
.y3_c00224{bottom:495.645000px;}
.y2_c00224{bottom:546.045000px;}
.y1_c00224{bottom:683.820000px;}
.h1_c00224{height:137.533711px;}
.h2_c00224{height:150.721875px;}
.h3_c00224{height:150.851250px;}
.h0_c00224{height:810.000000px;}
.w1_c00224{width:1439.999979px;}
.w0_c00224{width:1440.000000px;}
.x0_c00224{left:0.000000px;}
.x2_c00224{left:95.687979px;}
.x3_c00224{left:136.187979px;}
.x1_c00224{left:361.619979px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls3_c00224{letter-spacing:0.000000pt;}
.ls1_c00224{letter-spacing:11.020032pt;}
.ls0_c00224{letter-spacing:11.134080pt;}
.ls2_c00224{letter-spacing:41.216000pt;}
.ws0_c00224{word-spacing:-0.172885pt;}
.ws1_c00224{word-spacing:0.000000pt;}
._0_c00224{width:1.043840pt;}
._2_c00224{width:2.604160pt;}
._1_c00224{width:42.587093pt;}
._3_c00224{width:43.714133pt;}
.fs0_c00224{font-size:149.120000pt;}
.fs1_c00224{font-size:149.248000pt;}
.y0_c00224{bottom:0.000000pt;}
.y9_c00224{bottom:120.832000pt;}
.y8_c00224{bottom:165.626667pt;}
.y7_c00224{bottom:227.386667pt;}
.y6_c00224{bottom:272.226667pt;}
.y5_c00224{bottom:333.986667pt;}
.y4_c00224{bottom:378.813333pt;}
.y3_c00224{bottom:440.573333pt;}
.y2_c00224{bottom:485.373333pt;}
.y1_c00224{bottom:607.840000pt;}
.h1_c00224{height:122.252187pt;}
.h2_c00224{height:133.975000pt;}
.h3_c00224{height:134.090000pt;}
.h0_c00224{height:720.000000pt;}
.w1_c00224{width:1279.999981pt;}
.w0_c00224{width:1280.000000pt;}
.x0_c00224{left:0.000000pt;}
.x2_c00224{left:85.055981pt;}
.x3_c00224{left:121.055981pt;}
.x1_c00224{left:321.439981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea76da3fa6870f61e6ac88b1.woff')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.027832;font-style:normal;font-weight:normal;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_cfc7c819047ed653c08e7615.woff')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:0.772949;font-style:normal;font-weight:normal;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_bea574959dc96a06efff81e1.woff')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.106445;font-style:normal;font-weight:normal;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_89ad64812438dc638f2ad04a.woff')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:0.870117;font-style: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:12.525840px;}
.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.000000px;}
._1_c00225{margin-left:-1.845360px;}
._0_c00225{width:1.174320px;}
._2_c00225{width:2.348640px;}
.fc1_c00225{color:rgb(0,198,187);}
.fc0_c00225{color:rgb(0,0,0);}
.fs2_c00225{font-size:102.240000px;}
.fs0_c00225{font-size:167.760000px;}
.fs1_c00225{font-size:167.904000px;}
.y0_c00225{bottom:0.000000px;}
.y8_c00225{bottom:97.344000px;}
.y7_c00225{bottom:143.820000px;}
.y6_c00225{bottom:189.180000px;}
.y5_c00225{bottom:318.090000px;}
.y4_c00225{bottom:363.450000px;}
.y3_c00225{bottom:492.375000px;}
.y2_c00225{bottom:537.735000px;}
.y1_c00225{bottom:683.820000px;}
.h4_c00225{height:75.282187px;}
.h1_c00225{height:137.533711px;}
.h2_c00225{height:150.721875px;}
.h3_c00225{height:150.851250px;}
.h0_c00225{height:810.000000px;}
.w1_c00225{width:1439.999979px;}
.w0_c00225{width:1440.000000px;}
.x0_c00225{left:0.000000px;}
.x2_c00225{left:86.075979px;}
.x3_c00225{left:126.575979px;}
.x1_c00225{left:292.829979px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls1_c00225{letter-spacing:0.000000pt;}
.ls0_c00225{letter-spacing:11.134080pt;}
.ws0_c00225{word-spacing:0.000000pt;}
._1_c00225{margin-left:-1.640320pt;}
._0_c00225{width:1.043840pt;}
._2_c00225{width:2.087680pt;}
.fs2_c00225{font-size:90.880000pt;}
.fs0_c00225{font-size:149.120000pt;}
.fs1_c00225{font-size:149.248000pt;}
.y0_c00225{bottom:0.000000pt;}
.y8_c00225{bottom:86.528000pt;}
.y7_c00225{bottom:127.840000pt;}
.y6_c00225{bottom:168.160000pt;}
.y5_c00225{bottom:282.746667pt;}
.y4_c00225{bottom:323.066667pt;}
.y3_c00225{bottom:437.666667pt;}
.y2_c00225{bottom:477.986667pt;}
.y1_c00225{bottom:607.840000pt;}
.h4_c00225{height:66.917500pt;}
.h1_c00225{height:122.252187pt;}
.h2_c00225{height:133.975000pt;}
.h3_c00225{height:134.090000pt;}
.h0_c00225{height:720.000000pt;}
.w1_c00225{width:1279.999981pt;}
.w0_c00225{width:1280.000000pt;}
.x0_c00225{left:0.000000pt;}
.x2_c00225{left:76.511981pt;}
.x3_c00225{left:112.511981pt;}
.x1_c00225{left:260.293314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_13e0cf4de60fbec385f2db1a.woff')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.027832;font-style:normal;font-weight:normal;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_cfc7c819047ed653c08e7615.woff')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:0.772949;font-style:normal;font-weight:normal;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_29173b78213a9cf192ddcfa5.woff')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.106445;font-style:normal;font-weight:normal;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_3c2bac8ccecab072d9fe38cb.woff')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:1.106445;font-style: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;}
.ls2_c00226{letter-spacing:0.000000px;}
.ls0_c00226{letter-spacing:12.397536px;}
.ls1_c00226{letter-spacing:12.525840px;}
.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:-167.760000px;}
.ws1_c00226{word-spacing:0.000000px;}
._1_c00226{margin-left:-1.175328px;}
._0_c00226{width:1.007424px;}
._2_c00226{width:2.850192px;}
.fc1_c00226{color:rgb(0,198,187);}
.fc0_c00226{color:rgb(0,0,0);}
.fs0_c00226{font-size:167.760000px;}
.fs1_c00226{font-size:167.904000px;}
.y0_c00226{bottom:0.000000px;}
.y9_c00226{bottom:118.368000px;}
.y8_c00226{bottom:168.765000px;}
.y7_c00226{bottom:219.210000px;}
.y6_c00226{bottom:288.690000px;}
.y5_c00226{bottom:339.090000px;}
.y4_c00226{bottom:408.600000px;}
.y3_c00226{bottom:478.080000px;}
.y2_c00226{bottom:528.510000px;}
.y1_c00226{bottom:683.820000px;}
.h1_c00226{height:137.533711px;}
.h3_c00226{height:150.721875px;}
.h2_c00226{height:150.851250px;}
.h0_c00226{height:810.000000px;}
.w1_c00226{width:1439.999979px;}
.w0_c00226{width:1440.000000px;}
.x0_c00226{left:0.000000px;}
.x2_c00226{left:86.075979px;}
.x3_c00226{left:126.575979px;}
.x1_c00226{left:663.869979px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls2_c00226{letter-spacing:0.000000pt;}
.ls0_c00226{letter-spacing:11.020032pt;}
.ls1_c00226{letter-spacing:11.134080pt;}
.ws0_c00226{word-spacing:-149.120000pt;}
.ws1_c00226{word-spacing:0.000000pt;}
._1_c00226{margin-left:-1.044736pt;}
._0_c00226{width:0.895488pt;}
._2_c00226{width:2.533504pt;}
.fs0_c00226{font-size:149.120000pt;}
.fs1_c00226{font-size:149.248000pt;}
.y0_c00226{bottom:0.000000pt;}
.y9_c00226{bottom:105.216000pt;}
.y8_c00226{bottom:150.013333pt;}
.y7_c00226{bottom:194.853333pt;}
.y6_c00226{bottom:256.613333pt;}
.y5_c00226{bottom:301.413333pt;}
.y4_c00226{bottom:363.200000pt;}
.y3_c00226{bottom:424.960000pt;}
.y2_c00226{bottom:469.786667pt;}
.y1_c00226{bottom:607.840000pt;}
.h1_c00226{height:122.252187pt;}
.h3_c00226{height:133.975000pt;}
.h2_c00226{height:134.090000pt;}
.h0_c00226{height:720.000000pt;}
.w1_c00226{width:1279.999981pt;}
.w0_c00226{width:1280.000000pt;}
.x0_c00226{left:0.000000pt;}
.x2_c00226{left:76.511981pt;}
.x3_c00226{left:112.511981pt;}
.x1_c00226{left:590.106648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_304543a4c3c91f3914cc2ae8.woff')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.106445;font-style:normal;font-weight:normal;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_f98625b4fd1060c8c316c9cb.woff')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.106445;font-style:normal;font-weight:normal;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_10a7bfa39a1bdd01d15b5f44.woff')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.027832;font-style:normal;font-weight:normal;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_c8cd380e5bbfd28b0c71aba6.woff')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.027832;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.ls1_c00227{letter-spacing:-0.403200px;}
.ls2_c00227{letter-spacing:-0.216000px;}
.ls0_c00227{letter-spacing:0.000000px;}
.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:-192.384000px;}
.ws1_c00227{word-spacing:-53.611200px;}
.ws2_c00227{word-spacing:0.000000px;}
.fc0_c00227{color:rgb(0,0,0);}
.fs1_c00227{font-size:192.240000px;}
.fs0_c00227{font-size:192.384000px;}
.y0_c00227{bottom:0.000000px;}
.y2_c00227{bottom:373.575000px;}
.y1_c00227{bottom:451.905000px;}
.h2_c00227{height:157.603008px;}
.h1_c00227{height:172.845000px;}
.h0_c00227{height:810.000000px;}
.w1_c00227{width:1439.999979px;}
.w0_c00227{width:1440.000000px;}
.x0_c00227{left:0.000000px;}
.x2_c00227{left:742.109979px;}
.x1_c00227{left:762.269979px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls1_c00227{letter-spacing:-0.358400pt;}
.ls2_c00227{letter-spacing:-0.192000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws0_c00227{word-spacing:-171.008000pt;}
.ws1_c00227{word-spacing:-47.654400pt;}
.ws2_c00227{word-spacing:0.000000pt;}
.fs1_c00227{font-size:170.880000pt;}
.fs0_c00227{font-size:171.008000pt;}
.y0_c00227{bottom:0.000000pt;}
.y2_c00227{bottom:332.066667pt;}
.y1_c00227{bottom:401.693333pt;}
.h2_c00227{height:140.091563pt;}
.h1_c00227{height:153.640000pt;}
.h0_c00227{height:720.000000pt;}
.w1_c00227{width:1279.999981pt;}
.w0_c00227{width:1280.000000pt;}
.x0_c00227{left:0.000000pt;}
.x2_c00227{left:659.653314pt;}
.x1_c00227{left:677.573314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6957467b1f7f9acd193231d.woff')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.171387;font-style: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;}
.ls0_c00228{letter-spacing:0.000000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00228{word-spacing:0.000000px;}
.fc2_c00228{color:transparent;}
.fc1_c00228{color:rgb(8,36,83);}
.fc0_c00228{color:rgb(23,46,90);}
.fs2_c00228{font-size:245.969990px;}
.fs1_c00228{font-size:270.656389px;}
.fs0_c00228{font-size:364.229994px;}
.y0_c00228{bottom:0.000000px;}
.y1_c00228{bottom:0.000010px;}
.y5_c00228{bottom:20.766660px;}
.y6_c00228{bottom:50.597134px;}
.y4_c00228{bottom:174.240003px;}
.y3_c00228{bottom:909.392949px;}
.y2_c00228{bottom:1036.517944px;}
.h4_c00228{height:92.159996px;}
.h6_c00228{height:229.035532px;}
.h5_c00228{height:252.022331px;}
.h3_c00228{height:339.153612px;}
.h2_c00228{height:1214.999949px;}
.h0_c00228{height:1214.999989px;}
.h1_c00228{height:1215.000000px;}
.w2_c00228{width:820.079966px;}
.w1_c00228{width:2159.999910px;}
.w0_c00228{width:2160.000000px;}
.x0_c00228{left:0.000000px;}
.x1_c00228{left:525.540035px;}
.x2_c00228{left:593.497063px;}
.x3_c00228{left:838.079965px;}
.x4_c00228{left:841.020871px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls0_c00228{letter-spacing:0.000000pt;}
.ws0_c00228{word-spacing:0.000000pt;}
.fs2_c00228{font-size:218.639991pt;}
.fs1_c00228{font-size:240.583456pt;}
.fs0_c00228{font-size:323.759995pt;}
.y0_c00228{bottom:0.000000pt;}
.y1_c00228{bottom:0.000009pt;}
.y5_c00228{bottom:18.459253pt;}
.y6_c00228{bottom:44.975230pt;}
.y4_c00228{bottom:154.880003pt;}
.y3_c00228{bottom:808.349288pt;}
.y2_c00228{bottom:921.349283pt;}
.h4_c00228{height:81.919997pt;}
.h6_c00228{height:203.587140pt;}
.h5_c00228{height:224.019849pt;}
.h3_c00228{height:301.469878pt;}
.h2_c00228{height:1079.999955pt;}
.h0_c00228{height:1079.999991pt;}
.h1_c00228{height:1080.000000pt;}
.w2_c00228{width:728.959970pt;}
.w1_c00228{width:1919.999920pt;}
.w0_c00228{width:1920.000000pt;}
.x0_c00228{left:0.000000pt;}
.x1_c00228{left:467.146698pt;}
.x2_c00228{left:527.552945pt;}
.x3_c00228{left:744.959969pt;}
.x4_c00228{left:747.574108pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eca22898118149e7dce1edfd.woff')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.006348;font-style:normal;font-weight:normal;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_38dab44e5dd4477f75325cb9.woff')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:0.947000;font-style:normal;font-weight:normal;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_414e4c8e061fe39da1eefbad.woff')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:0.924316;font-style:normal;font-weight:normal;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_c7eb9ae3f51f489f22e8f32e.woff')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls0_c00229{letter-spacing:0.000000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00229{word-spacing:-80.867635px;}
.ws1_c00229{word-spacing:-80.862745px;}
.ws0_c00229{word-spacing:-55.060532px;}
.ws2_c00229{word-spacing:-0.311310px;}
.ws4_c00229{word-spacing:0.000000px;}
.fc3_c00229{color:rgb(166,206,57);}
.fc4_c00229{color:transparent;}
.fc1_c00229{color:rgb(8,36,83);}
.fc2_c00229{color:rgb(0,173,238);}
.fc0_c00229{color:rgb(14,42,88);}
.fs0_c00229{font-size:211.962344px;}
.fs2_c00229{font-size:311.291163px;}
.fs3_c00229{font-size:311.309987px;}
.fs1_c00229{font-size:634.139965px;}
.y0_c00229{bottom:0.000000px;}
.y3_c00229{bottom:0.000010px;}
.y2_c00229{bottom:16.004554px;}
.y8_c00229{bottom:23.538761px;}
.y1_c00229{bottom:41.760008px;}
.y7_c00229{bottom:89.656297px;}
.y6_c00229{bottom:155.773834px;}
.ye_c00229{bottom:241.120718px;}
.yd_c00229{bottom:307.495715px;}
.yc_c00229{bottom:373.870712px;}
.yb_c00229{bottom:486.782382px;}
.ya_c00229{bottom:553.157379px;}
.y9_c00229{bottom:619.532377px;}
.y5_c00229{bottom:730.439980px;}
.y4_c00229{bottom:1033.992664px;}
.h2_c00229{height:72.719997px;}
.h3_c00229{height:162.387167px;}
.h7_c00229{height:238.484294px;}
.h8_c00229{height:238.498716px;}
.h6_c00229{height:239.039990px;}
.h5_c00229{height:591.018447px;}
.h4_c00229{height:1214.999949px;}
.h0_c00229{height:1214.999989px;}
.h1_c00229{height:1215.000000px;}
.w3_c00229{width:449.639981px;}
.w1_c00229{width:552.959977px;}
.w2_c00229{width:2159.999910px;}
.w0_c00229{width:2160.000000px;}
.x0_c00229{left:0.000000px;}
.x5_c00229{left:1.324501px;}
.x6_c00229{left:29.696117px;}
.x4_c00229{left:100.366887px;}
.x2_c00229{left:982.217955px;}
.x1_c00229{left:1159.559952px;}
.x3_c00229{left:1253.519948px;}
.xa_c00229{left:1267.154234px;}
.x7_c00229{left:1279.532601px;}
.x8_c00229{left:1286.159553px;}
.xb_c00229{left:1298.056576px;}
.x9_c00229{left:1407.694705px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls0_c00229{letter-spacing:0.000000pt;}
.ws3_c00229{word-spacing:-71.882342pt;}
.ws1_c00229{word-spacing:-71.877996pt;}
.ws0_c00229{word-spacing:-48.942695pt;}
.ws2_c00229{word-spacing:-0.276720pt;}
.ws4_c00229{word-spacing:0.000000pt;}
.fs0_c00229{font-size:188.410973pt;}
.fs2_c00229{font-size:276.703256pt;}
.fs3_c00229{font-size:276.719988pt;}
.fs1_c00229{font-size:563.679969pt;}
.y0_c00229{bottom:0.000000pt;}
.y3_c00229{bottom:0.000009pt;}
.y2_c00229{bottom:14.226270pt;}
.y8_c00229{bottom:20.923343pt;}
.y1_c00229{bottom:37.120007pt;}
.y7_c00229{bottom:79.694487pt;}
.y6_c00229{bottom:138.465630pt;}
.ye_c00229{bottom:214.329527pt;}
.yd_c00229{bottom:273.329525pt;}
.yc_c00229{bottom:332.329522pt;}
.yb_c00229{bottom:432.695451pt;}
.ya_c00229{bottom:491.695448pt;}
.y9_c00229{bottom:550.695446pt;}
.y5_c00229{bottom:649.279982pt;}
.y4_c00229{bottom:919.104591pt;}
.h2_c00229{height:64.639997pt;}
.h3_c00229{height:144.344148pt;}
.h7_c00229{height:211.986040pt;}
.h8_c00229{height:211.998858pt;}
.h6_c00229{height:212.479991pt;}
.h5_c00229{height:525.349731pt;}
.h4_c00229{height:1079.999955pt;}
.h0_c00229{height:1079.999991pt;}
.h1_c00229{height:1080.000000pt;}
.w3_c00229{width:399.679983pt;}
.w1_c00229{width:491.519980pt;}
.w2_c00229{width:1919.999920pt;}
.w0_c00229{width:1920.000000pt;}
.x0_c00229{left:0.000000pt;}
.x5_c00229{left:1.177334pt;}
.x6_c00229{left:26.396549pt;}
.x4_c00229{left:89.215011pt;}
.x2_c00229{left:873.082626pt;}
.x1_c00229{left:1030.719957pt;}
.x3_c00229{left:1114.239954pt;}
.xa_c00229{left:1126.359319pt;}
.x7_c00229{left:1137.362312pt;}
.x8_c00229{left:1143.252936pt;}
.xb_c00229{left:1153.828068pt;}
.x9_c00229{left:1251.284182pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b8b5600e1fca97e8efde3c9a.woff')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:0.738281;font-style:normal;font-weight:normal;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_7ca49a80379280b32a1d9965.woff')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.006348;font-style:normal;font-weight:normal;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_bfaa459c094c5c66b2c21ce8.woff')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.171387;font-style:normal;font-weight:normal;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_c93047bc801dcecd22d7603b.woff')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.006348;font-style:normal;font-weight:normal;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_78c39d115f4eddae1703fd6d.woff')format("woff");}.ff5_c00230{font-family:ff5_c00230;line-height:1.171387;font-style: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);}
.m1_c00230{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls0_c00230{letter-spacing:0.000000px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00230{word-spacing:-0.257985px;}
.ws1_c00230{word-spacing:-0.215955px;}
.ws2_c00230{word-spacing:0.000000px;}
._0_c00230{margin-left:-1.042653px;}
.fc3_c00230{color:rgb(0,0,0);}
.fc4_c00230{color:rgb(255,0,214);}
.fc2_c00230{color:rgb(166,206,57);}
.fc1_c00230{color:rgb(14,42,88);}
.fc0_c00230{color:rgb(8,36,83);}
.fs5_c00230{font-size:203.985001px;}
.fs1_c00230{font-size:215.955000px;}
.fs0_c00230{font-size:257.984998px;}
.fs3_c00230{font-size:263.384985px;}
.fs6_c00230{font-size:287.999988px;}
.fs4_c00230{font-size:311.984996px;}
.fs2_c00230{font-size:322.964973px;}
.y0_c00230{bottom:0.000000px;}
.y5_c00230{bottom:0.000010px;}
.ya_c00230{bottom:34.534763px;}
.y4_c00230{bottom:46.124998px;}
.y2_c00230{bottom:48.374998px;}
.y3_c00230{bottom:160.432743px;}
.yd_c00230{bottom:184.124008px;}
.yc_c00230{bottom:281.999004px;}
.y1_c00230{bottom:297.682738px;}
.yb_c00230{bottom:371.999001px;}
.y9_c00230{bottom:519.318086px;}
.y8_c00230{bottom:636.560523px;}
.y7_c00230{bottom:744.752759px;}
.y6_c00230{bottom:857.252754px;}
.h4_c00230{height:132.749994px;}
.h2_c00230{height:146.249994px;}
.ha_c00230{height:156.275618px;}
.h5_c00230{height:156.588464px;}
.h3_c00230{height:187.064318px;}
.h9_c00230{height:239.015849px;}
.hb_c00230{height:240.223336px;}
.h8_c00230{height:245.251546px;}
.h7_c00230{height:247.427755px;}
.hc_c00230{height:268.171864px;}
.h6_c00230{height:1214.999949px;}
.h0_c00230{height:1214.999989px;}
.h1_c00230{height:1215.000000px;}
.w3_c00230{width:312.749901px;}
.w2_c00230{width:330.749986px;}
.w1_c00230{width:331.874986px;}
.w4_c00230{width:2159.999910px;}
.w0_c00230{width:2160.000000px;}
.x0_c00230{left:0.000000px;}
.x10_c00230{left:35.081091px;}
.x8_c00230{left:87.099606px;}
.x6_c00230{left:95.958980px;}
.x4_c00230{left:106.681636px;}
.x2_c00230{left:117.351558px;}
.x12_c00230{left:119.561556px;}
.xa_c00230{left:125.542964px;}
.x9_c00230{left:134.859369px;}
.x11_c00230{left:143.626008px;}
.xd_c00230{left:165.805658px;}
.xb_c00230{left:271.160145px;}
.x1_c00230{left:439.246652px;}
.xe_c00230{left:623.899342px;}
.xf_c00230{left:639.065637px;}
.xc_c00230{left:681.996065px;}
.x3_c00230{left:775.106968px;}
.x5_c00230{left:1110.967154px;}
.x7_c00230{left:1446.741948px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls0_c00230{letter-spacing:0.000000pt;}
.ws0_c00230{word-spacing:-0.229320pt;}
.ws1_c00230{word-spacing:-0.191960pt;}
.ws2_c00230{word-spacing:0.000000pt;}
._0_c00230{margin-left:-0.926803pt;}
.fs5_c00230{font-size:181.320000pt;}
.fs1_c00230{font-size:191.960000pt;}
.fs0_c00230{font-size:229.319998pt;}
.fs3_c00230{font-size:234.119986pt;}
.fs6_c00230{font-size:255.999989pt;}
.fs4_c00230{font-size:277.319996pt;}
.fs2_c00230{font-size:287.079976pt;}
.y0_c00230{bottom:0.000000pt;}
.y5_c00230{bottom:0.000009pt;}
.ya_c00230{bottom:30.697567pt;}
.y4_c00230{bottom:40.999998pt;}
.y2_c00230{bottom:42.999998pt;}
.y3_c00230{bottom:142.606883pt;}
.yd_c00230{bottom:163.665785pt;}
.yc_c00230{bottom:250.665782pt;}
.y1_c00230{bottom:264.606878pt;}
.yb_c00230{bottom:330.665778pt;}
.y9_c00230{bottom:461.616077pt;}
.y8_c00230{bottom:565.831576pt;}
.y7_c00230{bottom:662.002452pt;}
.y6_c00230{bottom:762.002448pt;}
.h4_c00230{height:117.999995pt;}
.h2_c00230{height:129.999995pt;}
.ha_c00230{height:138.911660pt;}
.h5_c00230{height:139.189746pt;}
.h3_c00230{height:166.279393pt;}
.h9_c00230{height:212.458532pt;}
.hb_c00230{height:213.531854pt;}
.h8_c00230{height:218.001374pt;}
.h7_c00230{height:219.935782pt;}
.hc_c00230{height:238.374990pt;}
.h6_c00230{height:1079.999955pt;}
.h0_c00230{height:1079.999991pt;}
.h1_c00230{height:1080.000000pt;}
.w3_c00230{width:277.999912pt;}
.w2_c00230{width:293.999988pt;}
.w1_c00230{width:294.999988pt;}
.w4_c00230{width:1919.999920pt;}
.w0_c00230{width:1920.000000pt;}
.x0_c00230{left:0.000000pt;}
.x10_c00230{left:31.183192pt;}
.x8_c00230{left:77.421872pt;}
.x6_c00230{left:85.296871pt;}
.x4_c00230{left:94.828121pt;}
.x2_c00230{left:104.312496pt;}
.x12_c00230{left:106.276939pt;}
.xa_c00230{left:111.593745pt;}
.x9_c00230{left:119.874995pt;}
.x11_c00230{left:127.667563pt;}
.xd_c00230{left:147.382807pt;}
.xb_c00230{left:241.031240pt;}
.x1_c00230{left:390.441469pt;}
.xe_c00230{left:554.577193pt;}
.xf_c00230{left:568.058344pt;}
.xc_c00230{left:606.218725pt;}
.x3_c00230{left:688.983971pt;}
.x5_c00230{left:987.526359pt;}
.x7_c00230{left:1285.992842pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bfaa459c094c5c66b2c21ce8.woff')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.171387;font-style:normal;font-weight:normal;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_c93047bc801dcecd22d7603b.woff')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.006348;font-style:normal;font-weight:normal;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_b75ae1a6be497772fd6429a0.woff')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:0.924316;font-style:normal;font-weight:normal;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_b452d49ff4e617d6b89116df.woff')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:0.775879;font-style: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);}
.m1_c00231{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_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.000000px;}
._0_c00231{margin-left:-1.022144px;}
._1_c00231{width:307.014770px;}
.fc3_c00231{color:rgb(0,173,238);}
.fc2_c00231{color:rgb(8,36,83);}
.fc1_c00231{color:rgb(0,0,0);}
.fc0_c00231{color:rgb(15,42,88);}
.fs1_c00231{font-size:203.985001px;}
.fs0_c00231{font-size:299.384983px;}
.fs3_c00231{font-size:359.954976px;}
.fs2_c00231{font-size:359.999985px;}
.y0_c00231{bottom:0.000000px;}
.y1_c00231{bottom:0.000010px;}
.y4_c00231{bottom:34.534763px;}
.y7_c00231{bottom:311.687735px;}
.y6_c00231{bottom:574.313970px;}
.y5_c00231{bottom:799.199243px;}
.y3_c00231{bottom:1013.619095px;}
.y2_c00231{bottom:1118.244091px;}
.h4_c00231{height:156.275618px;}
.h6_c00231{height:275.766288px;}
.h5_c00231{height:275.800770px;}
.h3_c00231{height:278.773029px;}
.h2_c00231{height:1214.999949px;}
.h0_c00231{height:1214.999989px;}
.h1_c00231{height:1215.000000px;}
.w1_c00231{width:2159.999910px;}
.w0_c00231{width:2160.000000px;}
.x0_c00231{left:0.000000px;}
.x4_c00231{left:98.870356px;}
.x2_c00231{left:449.266137px;}
.x3_c00231{left:639.065637px;}
.x1_c00231{left:649.973165px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws0_c00231{word-spacing:0.000000pt;}
._0_c00231{margin-left:-0.908572pt;}
._1_c00231{width:272.902017pt;}
.fs1_c00231{font-size:181.320000pt;}
.fs0_c00231{font-size:266.119985pt;}
.fs3_c00231{font-size:319.959979pt;}
.fs2_c00231{font-size:319.999987pt;}
.y0_c00231{bottom:0.000000pt;}
.y1_c00231{bottom:0.000009pt;}
.y4_c00231{bottom:30.697567pt;}
.y7_c00231{bottom:277.055764pt;}
.y6_c00231{bottom:510.501307pt;}
.y5_c00231{bottom:710.399327pt;}
.y3_c00231{bottom:900.994751pt;}
.y2_c00231{bottom:993.994747pt;}
.h4_c00231{height:138.911660pt;}
.h6_c00231{height:245.125589pt;}
.h5_c00231{height:245.156240pt;}
.h3_c00231{height:247.798248pt;}
.h2_c00231{height:1079.999955pt;}
.h0_c00231{height:1079.999991pt;}
.h1_c00231{height:1080.000000pt;}
.w1_c00231{width:1919.999920pt;}
.w0_c00231{width:1920.000000pt;}
.x0_c00231{left:0.000000pt;}
.x4_c00231{left:87.884761pt;}
.x2_c00231{left:399.347677pt;}
.x3_c00231{left:568.058344pt;}
.x1_c00231{left:577.753925pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0f70cc07fa196ea59557eb4.woff')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.006348;font-style:normal;font-weight:normal;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_c8839ca74cc3aadf122915ef.woff')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.009766;font-style:normal;font-weight:normal;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_bfaa459c094c5c66b2c21ce8.woff')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.171387;font-style:normal;font-weight:normal;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_c93047bc801dcecd22d7603b.woff')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:1.006348;font-style:normal;font-weight:normal;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_8e29fd720e8ea28425fa677e.woff')format("woff");}.ff5_c00232{font-family:ff5_c00232;line-height:1.171387;font-style: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);}
.m1_c00232{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls0_c00232{letter-spacing:0.000000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00232{word-spacing:-52.836328px;}
.ws1_c00232{word-spacing:0.000000px;}
._0_c00232{margin-left:-1.022144px;}
.fc3_c00232{color:rgb(0,173,238);}
.fc2_c00232{color:rgb(15,42,88);}
.fc1_c00232{color:rgb(248,247,244);}
.fc0_c00232{color:rgb(0,0,0);}
.fs0_c00232{font-size:203.399996px;}
.fs2_c00232{font-size:203.985001px;}
.fs1_c00232{font-size:299.384983px;}
.fs3_c00232{font-size:359.414999px;}
.y0_c00232{bottom:0.000000px;}
.y14_c00232{bottom:0.000010px;}
.y17_c00232{bottom:34.534763px;}
.y3_c00232{bottom:57.374998px;}
.y13_c00232{bottom:58.499998px;}
.y7_c00232{bottom:66.374997px;}
.ya_c00232{bottom:83.249997px;}
.yf_c00232{bottom:89.999996px;}
.y4_c00232{bottom:93.374996px;}
.yd_c00232{bottom:121.836641px;}
.y10_c00232{bottom:127.641353px;}
.y2_c00232{bottom:128.249995px;}
.yb_c00232{bottom:128.766353px;}
.y12_c00232{bottom:129.374995px;}
.y6_c00232{bottom:137.249994px;}
.y9_c00232{bottom:154.124994px;}
.ye_c00232{bottom:160.874993px;}
.yc_c00232{bottom:199.124992px;}
.y11_c00232{bottom:200.249992px;}
.y8_c00232{bottom:353.400904px;}
.y1_c00232{bottom:466.007510px;}
.y5_c00232{bottom:466.109991px;}
.y19_c00232{bottom:751.716113px;}
.y18_c00232{bottom:876.591107px;}
.y16_c00232{bottom:1013.619095px;}
.y15_c00232{bottom:1118.244091px;}
.h3_c00232{height:155.827438px;}
.hc_c00232{height:156.275618px;}
.h4_c00232{height:156.522653px;}
.h2_c00232{height:222.749991px;}
.h5_c00232{height:240.749990px;}
.h6_c00232{height:274.499989px;}
.hb_c00232{height:278.773029px;}
.h8_c00232{height:289.124988px;}
.h7_c00232{height:294.749988px;}
.h9_c00232{height:295.874988px;}
.hd_c00232{height:334.670118px;}
.ha_c00232{height:1214.999949px;}
.h0_c00232{height:1214.999989px;}
.h1_c00232{height:1215.000000px;}
.w1_c00232{width:386.999984px;}
.w2_c00232{width:393.749984px;}
.w3_c00232{width:408.374940px;}
.w7_c00232{width:417.374939px;}
.w4_c00232{width:435.374982px;}
.w5_c00232{width:440.999982px;}
.w6_c00232{width:458.999981px;}
.w8_c00232{width:2159.999910px;}
.w0_c00232{width:2160.000000px;}
.x0_c00232{left:0.000000px;}
.x5_c00232{left:20.900390px;}
.x12_c00232{left:25.945311px;}
.xe_c00232{left:27.720702px;}
.xb_c00232{left:29.460936px;}
.x2_c00232{left:46.195311px;}
.x7_c00232{left:49.078123px;}
.x11_c00232{left:58.025388px;}
.xa_c00232{left:70.154294px;}
.x16_c00232{left:71.279294px;}
.x8_c00232{left:73.898434px;}
.xf_c00232{left:83.144528px;}
.x14_c00232{left:104.589839px;}
.xd_c00232{left:105.679683px;}
.x3_c00232{left:108.386714px;}
.x15_c00232{left:109.705074px;}
.x1_c00232{left:110.976652px;}
.x10_c00232{left:125.854548px;}
.x18_c00232{left:449.266137px;}
.x1a_c00232{left:498.121591px;}
.x6_c00232{left:570.561877px;}
.x13_c00232{left:600.942499px;}
.x1b_c00232{left:616.826664px;}
.x19_c00232{left:639.065637px;}
.x17_c00232{left:649.973165px;}
.x4_c00232{left:1002.955926px;}
.xc_c00232{left:1033.528925px;}
.x9_c00232{left:1420.117321px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls0_c00232{letter-spacing:0.000000pt;}
.ws0_c00232{word-spacing:-46.965625pt;}
.ws1_c00232{word-spacing:0.000000pt;}
._0_c00232{margin-left:-0.908572pt;}
.fs0_c00232{font-size:180.799996pt;}
.fs2_c00232{font-size:181.320000pt;}
.fs1_c00232{font-size:266.119985pt;}
.fs3_c00232{font-size:319.479999pt;}
.y0_c00232{bottom:0.000000pt;}
.y14_c00232{bottom:0.000009pt;}
.y17_c00232{bottom:30.697567pt;}
.y3_c00232{bottom:50.999998pt;}
.y13_c00232{bottom:51.999998pt;}
.y7_c00232{bottom:58.999998pt;}
.ya_c00232{bottom:73.999997pt;}
.yf_c00232{bottom:79.999997pt;}
.y4_c00232{bottom:82.999997pt;}
.yd_c00232{bottom:108.299236pt;}
.y10_c00232{bottom:113.458980pt;}
.y2_c00232{bottom:113.999995pt;}
.yb_c00232{bottom:114.458980pt;}
.y12_c00232{bottom:114.999995pt;}
.y6_c00232{bottom:121.999995pt;}
.y9_c00232{bottom:136.999994pt;}
.ye_c00232{bottom:142.999994pt;}
.yc_c00232{bottom:176.999993pt;}
.y11_c00232{bottom:177.999993pt;}
.y8_c00232{bottom:314.134137pt;}
.y1_c00232{bottom:414.228897pt;}
.y5_c00232{bottom:414.319992pt;}
.y19_c00232{bottom:668.192100pt;}
.y18_c00232{bottom:779.192096pt;}
.y16_c00232{bottom:900.994751pt;}
.y15_c00232{bottom:993.994747pt;}
.h3_c00232{height:138.513279pt;}
.hc_c00232{height:138.911660pt;}
.h4_c00232{height:139.131247pt;}
.h2_c00232{height:197.999992pt;}
.h5_c00232{height:213.999991pt;}
.h6_c00232{height:243.999990pt;}
.hb_c00232{height:247.798248pt;}
.h8_c00232{height:256.999989pt;}
.h7_c00232{height:261.999989pt;}
.h9_c00232{height:262.999989pt;}
.hd_c00232{height:297.484550pt;}
.ha_c00232{height:1079.999955pt;}
.h0_c00232{height:1079.999991pt;}
.h1_c00232{height:1080.000000pt;}
.w1_c00232{width:343.999986pt;}
.w2_c00232{width:349.999985pt;}
.w3_c00232{width:362.999946pt;}
.w7_c00232{width:370.999946pt;}
.w4_c00232{width:386.999984pt;}
.w5_c00232{width:391.999984pt;}
.w6_c00232{width:407.999983pt;}
.w8_c00232{width:1919.999920pt;}
.w0_c00232{width:1920.000000pt;}
.x0_c00232{left:0.000000pt;}
.x5_c00232{left:18.578124pt;}
.x12_c00232{left:23.062499pt;}
.xe_c00232{left:24.640624pt;}
.xb_c00232{left:26.187499pt;}
.x2_c00232{left:41.062498pt;}
.x7_c00232{left:43.624998pt;}
.x11_c00232{left:51.578123pt;}
.xa_c00232{left:62.359372pt;}
.x16_c00232{left:63.359372pt;}
.x8_c00232{left:65.687497pt;}
.xf_c00232{left:73.906247pt;}
.x14_c00232{left:92.968746pt;}
.xd_c00232{left:93.937496pt;}
.x3_c00232{left:96.343746pt;}
.x15_c00232{left:97.515621pt;}
.x1_c00232{left:98.645913pt;}
.x10_c00232{left:111.870709pt;}
.x18_c00232{left:399.347677pt;}
.x1a_c00232{left:442.774748pt;}
.x6_c00232{left:507.166113pt;}
.x13_c00232{left:534.171111pt;}
.x1b_c00232{left:548.290368pt;}
.x19_c00232{left:568.058344pt;}
.x17_c00232{left:577.753925pt;}
.x4_c00232{left:891.516379pt;}
.xc_c00232{left:918.692378pt;}
.x9_c00232{left:1262.326507pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98d5df6bf8d69850eb9c5280.woff')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.006348;font-style:normal;font-weight:normal;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_fd681724e0bc9fe74dafc139.woff')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.006348;font-style:normal;font-weight:normal;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_bfaa459c094c5c66b2c21ce8.woff')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.171387;font-style:normal;font-weight:normal;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_c93047bc801dcecd22d7603b.woff')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.006348;font-style:normal;font-weight:normal;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_7c5e47850ec8b5c708ded5d8.woff')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:1.171387;font-style: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);}
.m1_c00233{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls0_c00233{letter-spacing:0.000000px;}
.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:-52.836328px;}
.ws1_c00233{word-spacing:0.000000px;}
._0_c00233{margin-left:-1.022144px;}
.fc3_c00233{color:rgb(166,206,57);}
.fc2_c00233{color:rgb(15,42,88);}
.fc1_c00233{color:rgb(248,247,244);}
.fc0_c00233{color:rgb(0,0,0);}
.fs0_c00233{font-size:203.399996px;}
.fs2_c00233{font-size:203.985001px;}
.fs1_c00233{font-size:299.384983px;}
.fs3_c00233{font-size:359.414999px;}
.y0_c00233{bottom:0.000000px;}
.y15_c00233{bottom:0.000010px;}
.y14_c00233{bottom:29.249999px;}
.y18_c00233{bottom:34.534763px;}
.yc_c00233{bottom:46.124998px;}
.y8_c00233{bottom:52.874998px;}
.y3_c00233{bottom:60.749997px;}
.yf_c00233{bottom:67.499997px;}
.y5_c00233{bottom:71.999997px;}
.y13_c00233{bottom:100.124996px;}
.yb_c00233{bottom:116.999995px;}
.y7_c00233{bottom:123.749995px;}
.y2_c00233{bottom:131.624995px;}
.ye_c00233{bottom:138.374994px;}
.y9_c00233{bottom:156.163900px;}
.y11_c00233{bottom:162.103179px;}
.y12_c00233{bottom:170.999993px;}
.yd_c00233{bottom:177.174759px;}
.ya_c00233{bottom:187.874992px;}
.y10_c00233{bottom:217.228177px;}
.y1_c00233{bottom:472.695636px;}
.y6_c00233{bottom:483.749990px;}
.y4_c00233{bottom:499.657972px;}
.y1a_c00233{bottom:751.716113px;}
.y19_c00233{bottom:876.591107px;}
.y17_c00233{bottom:1013.619095px;}
.y16_c00233{bottom:1118.244091px;}
.h3_c00233{height:155.827438px;}
.hb_c00233{height:156.275618px;}
.h4_c00233{height:182.249992px;}
.h5_c00233{height:214.874991px;}
.h2_c00233{height:228.374990px;}
.h8_c00233{height:237.374990px;}
.h7_c00233{height:241.874990px;}
.h6_c00233{height:271.124989px;}
.ha_c00233{height:278.773029px;}
.hc_c00233{height:334.670118px;}
.h9_c00233{height:1214.999949px;}
.h0_c00233{height:1214.999989px;}
.h1_c00233{height:1215.000000px;}
.w2_c00233{width:364.499985px;}
.w6_c00233{width:376.874984px;}
.w3_c00233{width:393.749984px;}
.w4_c00233{width:429.749982px;}
.w1_c00233{width:456.749981px;}
.w5_c00233{width:483.749980px;}
.w7_c00233{width:2159.999910px;}
.w0_c00233{width:2160.000000px;}
.x0_c00233{left:0.000000px;}
.x3_c00233{left:34.628905px;}
.x8_c00233{left:38.671873px;}
.x5_c00233{left:43.910154px;}
.x7_c00233{left:54.580076px;}
.xe_c00233{left:55.775388px;}
.xa_c00233{left:67.587888px;}
.xc_c00233{left:69.626950px;}
.x9_c00233{left:91.232543px;}
.xf_c00233{left:92.654293px;}
.xb_c00233{left:109.775386px;}
.x2_c00233{left:113.044917px;}
.x13_c00233{left:449.266137px;}
.xd_c00233{left:515.043699px;}
.x15_c00233{left:521.178201px;}
.x6_c00233{left:559.932341px;}
.x16_c00233{left:616.820775px;}
.x14_c00233{left:639.065637px;}
.x12_c00233{left:649.973165px;}
.x4_c00233{left:998.364702px;}
.x10_c00233{left:1017.778926px;}
.x1_c00233{left:1396.492322px;}
.x11_c00233{left:1401.404018px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ws0_c00233{word-spacing:-46.965625pt;}
.ws1_c00233{word-spacing:0.000000pt;}
._0_c00233{margin-left:-0.908572pt;}
.fs0_c00233{font-size:180.799996pt;}
.fs2_c00233{font-size:181.320000pt;}
.fs1_c00233{font-size:266.119985pt;}
.fs3_c00233{font-size:319.479999pt;}
.y0_c00233{bottom:0.000000pt;}
.y15_c00233{bottom:0.000009pt;}
.y14_c00233{bottom:25.999999pt;}
.y18_c00233{bottom:30.697567pt;}
.yc_c00233{bottom:40.999998pt;}
.y8_c00233{bottom:46.999998pt;}
.y3_c00233{bottom:53.999998pt;}
.yf_c00233{bottom:59.999998pt;}
.y5_c00233{bottom:63.999997pt;}
.y13_c00233{bottom:88.999996pt;}
.yb_c00233{bottom:103.999996pt;}
.y7_c00233{bottom:109.999995pt;}
.y2_c00233{bottom:116.999995pt;}
.ye_c00233{bottom:122.999995pt;}
.y9_c00233{bottom:138.812355pt;}
.y11_c00233{bottom:144.091715pt;}
.y12_c00233{bottom:151.999994pt;}
.yd_c00233{bottom:157.488674pt;}
.ya_c00233{bottom:166.999993pt;}
.y10_c00233{bottom:193.091713pt;}
.y1_c00233{bottom:420.173899pt;}
.y6_c00233{bottom:429.999991pt;}
.y4_c00233{bottom:444.140419pt;}
.y1a_c00233{bottom:668.192100pt;}
.y19_c00233{bottom:779.192096pt;}
.y17_c00233{bottom:900.994751pt;}
.y16_c00233{bottom:993.994747pt;}
.h3_c00233{height:138.513279pt;}
.hb_c00233{height:138.911660pt;}
.h4_c00233{height:161.999993pt;}
.h5_c00233{height:190.999992pt;}
.h2_c00233{height:202.999992pt;}
.h8_c00233{height:210.999991pt;}
.h7_c00233{height:214.999991pt;}
.h6_c00233{height:240.999990pt;}
.ha_c00233{height:247.798248pt;}
.hc_c00233{height:297.484550pt;}
.h9_c00233{height:1079.999955pt;}
.h0_c00233{height:1079.999991pt;}
.h1_c00233{height:1080.000000pt;}
.w2_c00233{width:323.999987pt;}
.w6_c00233{width:334.999986pt;}
.w3_c00233{width:349.999985pt;}
.w4_c00233{width:381.999984pt;}
.w1_c00233{width:405.999983pt;}
.w5_c00233{width:429.999982pt;}
.w7_c00233{width:1919.999920pt;}
.w0_c00233{width:1920.000000pt;}
.x0_c00233{left:0.000000pt;}
.x3_c00233{left:30.781249pt;}
.x8_c00233{left:34.374999pt;}
.x5_c00233{left:39.031248pt;}
.x7_c00233{left:48.515623pt;}
.xe_c00233{left:49.578123pt;}
.xa_c00233{left:60.078122pt;}
.xc_c00233{left:61.890622pt;}
.x9_c00233{left:81.095593pt;}
.xf_c00233{left:82.359372pt;}
.xb_c00233{left:97.578121pt;}
.x2_c00233{left:100.484371pt;}
.x13_c00233{left:399.347677pt;}
.xd_c00233{left:457.816621pt;}
.x15_c00233{left:463.269512pt;}
.x6_c00233{left:497.717637pt;}
.x16_c00233{left:548.285133pt;}
.x14_c00233{left:568.058344pt;}
.x12_c00233{left:577.753925pt;}
.x4_c00233{left:887.435291pt;}
.x10_c00233{left:904.692378pt;}
.x1_c00233{left:1241.326508pt;}
.x11_c00233{left:1245.692460pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_decd498623f9379f1e51012b.woff')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.171387;font-style:normal;font-weight:normal;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_c93047bc801dcecd22d7603b.woff')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.006348;font-style:normal;font-weight:normal;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_a9273707314c9c9a52235e41.woff')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.006348;font-style: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);}
.m1_c00234{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_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:-54.542987px;}
.ws1_c00234{word-spacing:0.000000px;}
._0_c00234{margin-left:-1.022656px;}
.fc1_c00234{color:rgb(0,0,0);}
.fc2_c00234{color:rgb(166,206,57);}
.fc0_c00234{color:rgb(15,42,88);}
.fs1_c00234{font-size:203.985001px;}
.fs3_c00234{font-size:209.969991px;}
.fs4_c00234{font-size:297.089974px;}
.fs0_c00234{font-size:299.384983px;}
.fs2_c00234{font-size:359.414999px;}
.y0_c00234{bottom:0.000000px;}
.y1_c00234{bottom:0.000010px;}
.y4_c00234{bottom:34.534763px;}
.y8_c00234{bottom:310.774307px;}
.yc_c00234{bottom:367.193073px;}
.y7_c00234{bottom:427.943070px;}
.yb_c00234{bottom:429.068070px;}
.y6_c00234{bottom:545.111833px;}
.ya_c00234{bottom:546.236833px;}
.y9_c00234{bottom:710.651703px;}
.y5_c00234{bottom:876.591107px;}
.y3_c00234{bottom:1013.619095px;}
.y2_c00234{bottom:1118.244091px;}
.h4_c00234{height:156.275618px;}
.h6_c00234{height:195.514049px;}
.h5_c00234{height:275.352604px;}
.h7_c00234{height:276.636026px;}
.h3_c00234{height:278.773029px;}
.h2_c00234{height:1214.999949px;}
.h0_c00234{height:1214.999989px;}
.h1_c00234{height:1215.000000px;}
.w1_c00234{width:2159.999910px;}
.w0_c00234{width:2160.000000px;}
.x0_c00234{left:0.000000px;}
.x5_c00234{left:291.040739px;}
.x6_c00234{left:306.141007px;}
.x2_c00234{left:449.266137px;}
.x4_c00234{left:572.144522px;}
.x3_c00234{left:639.065637px;}
.x1_c00234{left:649.973165px;}
.x7_c00234{left:1123.176841px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls0_c00234{letter-spacing:0.000000pt;}
.ws0_c00234{word-spacing:-48.482655pt;}
.ws1_c00234{word-spacing:0.000000pt;}
._0_c00234{margin-left:-0.909027pt;}
.fs1_c00234{font-size:181.320000pt;}
.fs3_c00234{font-size:186.639992pt;}
.fs4_c00234{font-size:264.079977pt;}
.fs0_c00234{font-size:266.119985pt;}
.fs2_c00234{font-size:319.479999pt;}
.y0_c00234{bottom:0.000000pt;}
.y1_c00234{bottom:0.000009pt;}
.y4_c00234{bottom:30.697567pt;}
.y8_c00234{bottom:276.243828pt;}
.yc_c00234{bottom:326.393842pt;}
.y7_c00234{bottom:380.393840pt;}
.yb_c00234{bottom:381.393840pt;}
.y6_c00234{bottom:484.543852pt;}
.ya_c00234{bottom:485.543852pt;}
.y9_c00234{bottom:631.690402pt;}
.y5_c00234{bottom:779.192096pt;}
.y3_c00234{bottom:900.994751pt;}
.y2_c00234{bottom:993.994747pt;}
.h4_c00234{height:138.911660pt;}
.h6_c00234{height:173.790266pt;}
.h5_c00234{height:244.757870pt;}
.h7_c00234{height:245.898690pt;}
.h3_c00234{height:247.798248pt;}
.h2_c00234{height:1079.999955pt;}
.h0_c00234{height:1079.999991pt;}
.h1_c00234{height:1080.000000pt;}
.w1_c00234{width:1919.999920pt;}
.w0_c00234{width:1920.000000pt;}
.x0_c00234{left:0.000000pt;}
.x5_c00234{left:258.702879pt;}
.x6_c00234{left:272.125339pt;}
.x2_c00234{left:399.347677pt;}
.x4_c00234{left:508.572909pt;}
.x3_c00234{left:568.058344pt;}
.x1_c00234{left:577.753925pt;}
.x7_c00234{left:998.379414pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a281311c9a60a6f8557a9fe4.woff')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.171387;font-style:normal;font-weight:normal;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_c93047bc801dcecd22d7603b.woff')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.006348;font-style:normal;font-weight:normal;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_a9273707314c9c9a52235e41.woff')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.006348;font-style: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);}
.m1_c00235{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls0_c00235{letter-spacing:0.000000px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00235{word-spacing:-54.542987px;}
.ws1_c00235{word-spacing:0.000000px;}
._0_c00235{margin-left:-1.022656px;}
.fc1_c00235{color:rgb(0,0,0);}
.fc2_c00235{color:rgb(166,206,57);}
.fc0_c00235{color:rgb(15,42,88);}
.fs1_c00235{font-size:203.985001px;}
.fs3_c00235{font-size:209.969991px;}
.fs4_c00235{font-size:297.089974px;}
.fs0_c00235{font-size:299.384983px;}
.fs2_c00235{font-size:359.414999px;}
.y0_c00235{bottom:0.000000px;}
.y1_c00235{bottom:0.000010px;}
.y4_c00235{bottom:34.534763px;}
.ya_c00235{bottom:218.772135px;}
.y9_c00235{bottom:280.647132px;}
.yf_c00235{bottom:321.714023px;}
.y8_c00235{bottom:366.068073px;}
.ye_c00235{bottom:383.589020px;}
.y7_c00235{bottom:427.943070px;}
.yd_c00235{bottom:484.361836px;}
.y6_c00235{bottom:545.111833px;}
.yc_c00235{bottom:546.236833px;}
.yb_c00235{bottom:710.651703px;}
.y5_c00235{bottom:876.591107px;}
.y3_c00235{bottom:1013.619095px;}
.y2_c00235{bottom:1118.244091px;}
.h4_c00235{height:156.275618px;}
.h6_c00235{height:195.514049px;}
.h5_c00235{height:275.352604px;}
.h7_c00235{height:276.636026px;}
.h3_c00235{height:278.773029px;}
.h2_c00235{height:1214.999949px;}
.h0_c00235{height:1214.999989px;}
.h1_c00235{height:1215.000000px;}
.w1_c00235{width:2159.999910px;}
.w0_c00235{width:2160.000000px;}
.x0_c00235{left:0.000000px;}
.x5_c00235{left:291.040739px;}
.x6_c00235{left:306.141007px;}
.x2_c00235{left:449.266137px;}
.x4_c00235{left:572.144522px;}
.x3_c00235{left:639.065637px;}
.x1_c00235{left:649.973165px;}
.x7_c00235{left:1122.051841px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls0_c00235{letter-spacing:0.000000pt;}
.ws0_c00235{word-spacing:-48.482655pt;}
.ws1_c00235{word-spacing:0.000000pt;}
._0_c00235{margin-left:-0.909027pt;}
.fs1_c00235{font-size:181.320000pt;}
.fs3_c00235{font-size:186.639992pt;}
.fs4_c00235{font-size:264.079977pt;}
.fs0_c00235{font-size:266.119985pt;}
.fs2_c00235{font-size:319.479999pt;}
.y0_c00235{bottom:0.000000pt;}
.y1_c00235{bottom:0.000009pt;}
.y4_c00235{bottom:30.697567pt;}
.ya_c00235{bottom:194.464120pt;}
.y9_c00235{bottom:249.464118pt;}
.yf_c00235{bottom:285.968020pt;}
.y8_c00235{bottom:325.393842pt;}
.ye_c00235{bottom:340.968018pt;}
.y7_c00235{bottom:380.393840pt;}
.yd_c00235{bottom:430.543854pt;}
.y6_c00235{bottom:484.543852pt;}
.yc_c00235{bottom:485.543852pt;}
.yb_c00235{bottom:631.690402pt;}
.y5_c00235{bottom:779.192096pt;}
.y3_c00235{bottom:900.994751pt;}
.y2_c00235{bottom:993.994747pt;}
.h4_c00235{height:138.911660pt;}
.h6_c00235{height:173.790266pt;}
.h5_c00235{height:244.757870pt;}
.h7_c00235{height:245.898690pt;}
.h3_c00235{height:247.798248pt;}
.h2_c00235{height:1079.999955pt;}
.h0_c00235{height:1079.999991pt;}
.h1_c00235{height:1080.000000pt;}
.w1_c00235{width:1919.999920pt;}
.w0_c00235{width:1920.000000pt;}
.x0_c00235{left:0.000000pt;}
.x5_c00235{left:258.702879pt;}
.x6_c00235{left:272.125339pt;}
.x2_c00235{left:399.347677pt;}
.x4_c00235{left:508.572909pt;}
.x3_c00235{left:568.058344pt;}
.x1_c00235{left:577.753925pt;}
.x7_c00235{left:997.379414pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ce26af5bec940ef3fa8b2d9.woff')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.171387;font-style:normal;font-weight:normal;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_c93047bc801dcecd22d7603b.woff')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.006348;font-style:normal;font-weight:normal;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_a9273707314c9c9a52235e41.woff')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.006348;font-style: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);}
.m1_c00236{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls0_c00236{letter-spacing:0.000000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00236{word-spacing:-54.542987px;}
.ws1_c00236{word-spacing:0.000000px;}
._0_c00236{margin-left:-1.022656px;}
.fc1_c00236{color:rgb(0,0,0);}
.fc2_c00236{color:rgb(166,206,57);}
.fc0_c00236{color:rgb(15,42,88);}
.fs1_c00236{font-size:203.985001px;}
.fs3_c00236{font-size:209.969991px;}
.fs4_c00236{font-size:297.089974px;}
.fs0_c00236{font-size:299.384983px;}
.fs2_c00236{font-size:359.414999px;}
.y0_c00236{bottom:0.000000px;}
.y1_c00236{bottom:0.000010px;}
.y4_c00236{bottom:34.534763px;}
.yb_c00236{bottom:179.586209px;}
.ya_c00236{bottom:241.461206px;}
.y9_c00236{bottom:326.882182px;}
.yf_c00236{bottom:383.589020px;}
.y8_c00236{bottom:388.757180px;}
.y7_c00236{bottom:483.236836px;}
.ye_c00236{bottom:484.361836px;}
.y6_c00236{bottom:545.111833px;}
.yd_c00236{bottom:546.236833px;}
.yc_c00236{bottom:710.651703px;}
.y5_c00236{bottom:876.591107px;}
.y3_c00236{bottom:1013.619095px;}
.y2_c00236{bottom:1118.244091px;}
.h4_c00236{height:156.275618px;}
.h6_c00236{height:195.514049px;}
.h5_c00236{height:275.352604px;}
.h7_c00236{height:276.636026px;}
.h3_c00236{height:278.773029px;}
.h2_c00236{height:1214.999949px;}
.h0_c00236{height:1214.999989px;}
.h1_c00236{height:1215.000000px;}
.w1_c00236{width:2159.999910px;}
.w0_c00236{width:2160.000000px;}
.x0_c00236{left:0.000000px;}
.x5_c00236{left:291.040739px;}
.x6_c00236{left:306.141007px;}
.x2_c00236{left:449.266137px;}
.x4_c00236{left:572.144522px;}
.x3_c00236{left:639.065637px;}
.x1_c00236{left:649.973165px;}
.x7_c00236{left:1179.412871px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ws0_c00236{word-spacing:-48.482655pt;}
.ws1_c00236{word-spacing:0.000000pt;}
._0_c00236{margin-left:-0.909027pt;}
.fs1_c00236{font-size:181.320000pt;}
.fs3_c00236{font-size:186.639992pt;}
.fs4_c00236{font-size:264.079977pt;}
.fs0_c00236{font-size:266.119985pt;}
.fs2_c00236{font-size:319.479999pt;}
.y0_c00236{bottom:0.000000pt;}
.y1_c00236{bottom:0.000009pt;}
.y4_c00236{bottom:30.697567pt;}
.yb_c00236{bottom:159.632185pt;}
.ya_c00236{bottom:214.632183pt;}
.y9_c00236{bottom:290.561940pt;}
.yf_c00236{bottom:340.968018pt;}
.y8_c00236{bottom:345.561938pt;}
.y7_c00236{bottom:429.543854pt;}
.ye_c00236{bottom:430.543854pt;}
.y6_c00236{bottom:484.543852pt;}
.yd_c00236{bottom:485.543852pt;}
.yc_c00236{bottom:631.690402pt;}
.y5_c00236{bottom:779.192096pt;}
.y3_c00236{bottom:900.994751pt;}
.y2_c00236{bottom:993.994747pt;}
.h4_c00236{height:138.911660pt;}
.h6_c00236{height:173.790266pt;}
.h5_c00236{height:244.757870pt;}
.h7_c00236{height:245.898690pt;}
.h3_c00236{height:247.798248pt;}
.h2_c00236{height:1079.999955pt;}
.h0_c00236{height:1079.999991pt;}
.h1_c00236{height:1080.000000pt;}
.w1_c00236{width:1919.999920pt;}
.w0_c00236{width:1920.000000pt;}
.x0_c00236{left:0.000000pt;}
.x5_c00236{left:258.702879pt;}
.x6_c00236{left:272.125339pt;}
.x2_c00236{left:399.347677pt;}
.x4_c00236{left:508.572909pt;}
.x3_c00236{left:568.058344pt;}
.x1_c00236{left:577.753925pt;}
.x7_c00236{left:1048.366996pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_904f65c40bf667d8d53058b6.woff')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.171387;font-style:normal;font-weight:normal;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_c93047bc801dcecd22d7603b.woff')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.006348;font-style:normal;font-weight:normal;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_a9273707314c9c9a52235e41.woff')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.006348;font-style: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);}
.m1_c00237{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls0_c00237{letter-spacing:0.000000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00237{word-spacing:-54.542987px;}
.ws1_c00237{word-spacing:0.000000px;}
._0_c00237{margin-left:-1.022656px;}
.fc1_c00237{color:rgb(0,0,0);}
.fc2_c00237{color:rgb(166,206,57);}
.fc0_c00237{color:rgb(15,42,88);}
.fs1_c00237{font-size:203.985001px;}
.fs3_c00237{font-size:209.969991px;}
.fs4_c00237{font-size:297.089974px;}
.fs0_c00237{font-size:299.384983px;}
.fs2_c00237{font-size:359.414999px;}
.y0_c00237{bottom:0.000000px;}
.y1_c00237{bottom:0.000010px;}
.y4_c00237{bottom:34.534763px;}
.y9_c00237{bottom:326.882182px;}
.y8_c00237{bottom:388.757180px;}
.y7_c00237{bottom:483.236836px;}
.yc_c00237{bottom:484.361836px;}
.y6_c00237{bottom:545.111833px;}
.yb_c00237{bottom:546.236833px;}
.ya_c00237{bottom:710.651703px;}
.y5_c00237{bottom:876.591107px;}
.y3_c00237{bottom:1013.619095px;}
.y2_c00237{bottom:1118.244091px;}
.h4_c00237{height:156.275618px;}
.h6_c00237{height:195.514049px;}
.h5_c00237{height:275.352604px;}
.h7_c00237{height:276.636026px;}
.h3_c00237{height:278.773029px;}
.h2_c00237{height:1214.999949px;}
.h0_c00237{height:1214.999989px;}
.h1_c00237{height:1215.000000px;}
.w1_c00237{width:2159.999910px;}
.w0_c00237{width:2160.000000px;}
.x0_c00237{left:0.000000px;}
.x5_c00237{left:291.040739px;}
.x6_c00237{left:306.141007px;}
.x2_c00237{left:449.266137px;}
.x4_c00237{left:572.144522px;}
.x3_c00237{left:639.065637px;}
.x1_c00237{left:649.973165px;}
.x7_c00237{left:1110.801842px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ws0_c00237{word-spacing:-48.482655pt;}
.ws1_c00237{word-spacing:0.000000pt;}
._0_c00237{margin-left:-0.909027pt;}
.fs1_c00237{font-size:181.320000pt;}
.fs3_c00237{font-size:186.639992pt;}
.fs4_c00237{font-size:264.079977pt;}
.fs0_c00237{font-size:266.119985pt;}
.fs2_c00237{font-size:319.479999pt;}
.y0_c00237{bottom:0.000000pt;}
.y1_c00237{bottom:0.000009pt;}
.y4_c00237{bottom:30.697567pt;}
.y9_c00237{bottom:290.561940pt;}
.y8_c00237{bottom:345.561938pt;}
.y7_c00237{bottom:429.543854pt;}
.yc_c00237{bottom:430.543854pt;}
.y6_c00237{bottom:484.543852pt;}
.yb_c00237{bottom:485.543852pt;}
.ya_c00237{bottom:631.690402pt;}
.y5_c00237{bottom:779.192096pt;}
.y3_c00237{bottom:900.994751pt;}
.y2_c00237{bottom:993.994747pt;}
.h4_c00237{height:138.911660pt;}
.h6_c00237{height:173.790266pt;}
.h5_c00237{height:244.757870pt;}
.h7_c00237{height:245.898690pt;}
.h3_c00237{height:247.798248pt;}
.h2_c00237{height:1079.999955pt;}
.h0_c00237{height:1079.999991pt;}
.h1_c00237{height:1080.000000pt;}
.w1_c00237{width:1919.999920pt;}
.w0_c00237{width:1920.000000pt;}
.x0_c00237{left:0.000000pt;}
.x5_c00237{left:258.702879pt;}
.x6_c00237{left:272.125339pt;}
.x2_c00237{left:399.347677pt;}
.x4_c00237{left:508.572909pt;}
.x3_c00237{left:568.058344pt;}
.x1_c00237{left:577.753925pt;}
.x7_c00237{left:987.379415pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_465ca7f52cfba9801d884385.woff')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.171387;font-style:normal;font-weight:normal;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_289db11bd93d7de04352633a.woff')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.006348;font-style:normal;font-weight:normal;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_faea0243b3f2819e1ced93e0.woff')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.060059;font-style:normal;font-weight:normal;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_9cc4bb1ccf9ff17b430a9f0e.woff')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:0.895020;font-style:normal;font-weight:normal;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_e700777d7ed1f090f9dbc41f.woff')format("woff");}.ff5_c00238{font-family:ff5_c00238;line-height:1.171387;font-style: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:-60.549681px;}
.ws0_c00238{word-spacing:-55.060532px;}
.ws2_c00238{word-spacing:0.000000px;}
.fc6_c00238{color:transparent;}
.fc3_c00238{color:rgb(167,206,57);}
.fc5_c00238{color:rgb(255,255,255);}
.fc1_c00238{color:rgb(0,0,0);}
.fc4_c00238{color:rgb(23,46,90);}
.fc2_c00238{color:rgb(0,173,238);}
.fc0_c00238{color:rgb(14,42,88);}
.fs1_c00238{font-size:211.962344px;}
.fs4_c00238{font-size:233.093505px;}
.fs3_c00238{font-size:275.984998px;}
.fs2_c00238{font-size:311.984996px;}
.fs0_c00238{font-size:460.169990px;}
.y0_c00238{bottom:0.000000px;}
.y1_c00238{bottom:0.000010px;}
.y4_c00238{bottom:15.879134px;}
.yc_c00238{bottom:17.890142px;}
.y3_c00238{bottom:73.080007px;}
.yb_c00238{bottom:180.951366px;}
.ya_c00238{bottom:262.481978px;}
.y8_c00238{bottom:279.179736px;}
.y7_c00238{bottom:474.220672px;}
.y6_c00238{bottom:606.185701px;}
.y9_c00238{bottom:719.999980px;}
.y5_c00238{bottom:742.460725px;}
.y2_c00238{bottom:994.980886px;}
.h4_c00238{height:72.359997px;}
.h5_c00238{height:197.369234px;}
.ha_c00238{height:217.045563px;}
.h6_c00238{height:239.015849px;}
.h8_c00238{height:256.984077px;}
.h7_c00238{height:290.505560px;}
.h9_c00238{height:323.999987px;}
.h3_c00238{height:428.488365px;}
.h2_c00238{height:1214.999949px;}
.h0_c00238{height:1214.999989px;}
.h1_c00238{height:1215.000000px;}
.w3_c00238{width:518.039978px;}
.w2_c00238{width:553.319977px;}
.w1_c00238{width:2159.999910px;}
.w0_c00238{width:2160.000000px;}
.x0_c00238{left:0.000000px;}
.x8_c00238{left:39.302714px;}
.x6_c00238{left:73.799997px;}
.x7_c00238{left:182.611676px;}
.x4_c00238{left:900.800134px;}
.x3_c00238{left:909.721726px;}
.x1_c00238{left:925.694835px;}
.x5_c00238{left:1174.851527px;}
.x2_c00238{left:1261.079947px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls0_c00238{letter-spacing:0.000000pt;}
.ws1_c00238{word-spacing:-53.821939pt;}
.ws0_c00238{word-spacing:-48.942695pt;}
.ws2_c00238{word-spacing:0.000000pt;}
.fs1_c00238{font-size:188.410973pt;}
.fs4_c00238{font-size:207.194226pt;}
.fs3_c00238{font-size:245.319998pt;}
.fs2_c00238{font-size:277.319996pt;}
.fs0_c00238{font-size:409.039991pt;}
.y0_c00238{bottom:0.000000pt;}
.y1_c00238{bottom:0.000009pt;}
.y4_c00238{bottom:14.114786pt;}
.yc_c00238{bottom:15.902349pt;}
.y3_c00238{bottom:64.960006pt;}
.yb_c00238{bottom:160.845659pt;}
.ya_c00238{bottom:233.317314pt;}
.y8_c00238{bottom:248.159766pt;}
.y7_c00238{bottom:421.529486pt;}
.y6_c00238{bottom:538.831734pt;}
.y9_c00238{bottom:639.999982pt;}
.y5_c00238{bottom:659.965089pt;}
.y2_c00238{bottom:884.427454pt;}
.h4_c00238{height:64.319997pt;}
.h5_c00238{height:175.439319pt;}
.ha_c00238{height:192.929390pt;}
.h6_c00238{height:212.458532pt;}
.h8_c00238{height:228.430291pt;}
.h7_c00238{height:258.227165pt;}
.h9_c00238{height:287.999988pt;}
.h3_c00238{height:380.878546pt;}
.h2_c00238{height:1079.999955pt;}
.h0_c00238{height:1079.999991pt;}
.h1_c00238{height:1080.000000pt;}
.w3_c00238{width:460.479981pt;}
.w2_c00238{width:491.839980pt;}
.w1_c00238{width:1919.999920pt;}
.w0_c00238{width:1920.000000pt;}
.x0_c00238{left:0.000000pt;}
.x8_c00238{left:34.935746pt;}
.x6_c00238{left:65.599997pt;}
.x7_c00238{left:162.321490pt;}
.x4_c00238{left:800.711231pt;}
.x3_c00238{left:808.641534pt;}
.x1_c00238{left:822.839853pt;}
.x5_c00238{left:1044.312468pt;}
.x2_c00238{left:1120.959953pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eca2b045ea90a3576fde9528.woff')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:0.947000;font-style:normal;font-weight:normal;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_bb7aa8292cddb85d29229575.woff')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.171387;font-style: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);}
.m1_c00239{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls0_c00239{letter-spacing:0.000000px;}
.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:-101.238349px;}
.ws1_c00239{word-spacing:-70.300368px;}
.ws2_c00239{word-spacing:0.000000px;}
.fc2_c00239{color:transparent;}
.fc1_c00239{color:rgb(23,46,90);}
.fc0_c00239{color:rgb(14,42,88);}
.fs3_c00239{font-size:270.629984px;}
.fs2_c00239{font-size:270.656389px;}
.fs1_c00239{font-size:358.244990px;}
.fs0_c00239{font-size:460.174314px;}
.y0_c00239{bottom:0.000000px;}
.y1_c00239{bottom:0.000010px;}
.y6_c00239{bottom:20.550405px;}
.y3_c00239{bottom:25.961067px;}
.y2_c00239{bottom:140.719906px;}
.y7_c00239{bottom:897.321408px;}
.y5_c00239{bottom:964.439970px;}
.y4_c00239{bottom:1076.254617px;}
.h6_c00239{height:91.799996px;}
.h2_c00239{height:249.119990px;}
.h8_c00239{height:251.997744px;}
.h7_c00239{height:252.022331px;}
.h5_c00239{height:333.580662px;}
.h3_c00239{height:428.882461px;}
.h4_c00239{height:1214.999949px;}
.h0_c00239{height:1214.999989px;}
.h1_c00239{height:1215.000000px;}
.w1_c00239{width:681.479972px;}
.w3_c00239{width:820.439966px;}
.w2_c00239{width:2159.999910px;}
.w0_c00239{width:2160.000000px;}
.x0_c00239{left:0.000000px;}
.x5_c00239{left:1.201766px;}
.x2_c00239{left:21.483253px;}
.x3_c00239{left:186.075741px;}
.x4_c00239{left:476.639980px;}
.x6_c00239{left:525.408163px;}
.x1_c00239{left:803.519967px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls0_c00239{letter-spacing:0.000000pt;}
.ws0_c00239{word-spacing:-89.989644pt;}
.ws1_c00239{word-spacing:-62.489216pt;}
.ws2_c00239{word-spacing:0.000000pt;}
.fs3_c00239{font-size:240.559986pt;}
.fs2_c00239{font-size:240.583456pt;}
.fs1_c00239{font-size:318.439991pt;}
.fs0_c00239{font-size:409.043835pt;}
.y0_c00239{bottom:0.000000pt;}
.y1_c00239{bottom:0.000009pt;}
.y6_c00239{bottom:18.267026pt;}
.y3_c00239{bottom:23.076504pt;}
.y2_c00239{bottom:125.084361pt;}
.y7_c00239{bottom:797.619029pt;}
.y5_c00239{bottom:857.279973pt;}
.y4_c00239{bottom:956.670771pt;}
.h6_c00239{height:81.599997pt;}
.h2_c00239{height:221.439991pt;}
.h8_c00239{height:223.997995pt;}
.h7_c00239{height:224.019849pt;}
.h5_c00239{height:296.516144pt;}
.h3_c00239{height:381.228854pt;}
.h4_c00239{height:1079.999955pt;}
.h0_c00239{height:1079.999991pt;}
.h1_c00239{height:1080.000000pt;}
.w1_c00239{width:605.759975pt;}
.w3_c00239{width:729.279970pt;}
.w2_c00239{width:1919.999920pt;}
.w0_c00239{width:1920.000000pt;}
.x0_c00239{left:0.000000pt;}
.x5_c00239{left:1.068236pt;}
.x2_c00239{left:19.096225pt;}
.x3_c00239{left:165.400659pt;}
.x4_c00239{left:423.679982pt;}
.x6_c00239{left:467.029478pt;}
.x1_c00239{left:714.239970pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d242fcb96b7a0d652f31b28.woff')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00240;src:url('chunks/assets/font_2557ebf248de49cc31aca8b3.woff')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00240{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0_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;}
.ls0_c00240{letter-spacing:0.000000px;}
.sc__c00240{text-shadow:none;}
.sc1_c00240{text-shadow:-0.015em 0 rgb(95,131,104),0 0.015em rgb(95,131,104),0.015em 0 rgb(95,131,104),0 -0.015em  rgb(95,131,104);}
.sc0_c00240{text-shadow:-0.015em 0 rgb(246,246,237),0 0.015em rgb(246,246,237),0.015em 0 rgb(246,246,237),0 -0.015em  rgb(246,246,237);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc1_c00240{-webkit-text-stroke:0.015em rgb(95,131,104);text-shadow:none;}
.sc0_c00240{-webkit-text-stroke:0.015em rgb(246,246,237);text-shadow:none;}
}
.ws0_c00240{word-spacing:-0.109440px;}
.ws1_c00240{word-spacing:0.000000px;}
._1_c00240{width:3.047040px;}
._2_c00240{width:5.374080px;}
._0_c00240{width:51.143040px;}
.fc1_c00240{color:rgb(95,131,104);}
.fc0_c00240{color:rgb(246,246,237);}
.fs2_c00240{font-size:109.440000px;}
.fs3_c00240{font-size:167.760000px;}
.fs0_c00240{font-size:210.240000px;}
.fs1_c00240{font-size:419.760000px;}
.y0_c00240{bottom:0.000000px;}
.y6_c00240{bottom:49.500150px;}
.y5_c00240{bottom:134.430150px;}
.y3_c00240{bottom:357.287700px;}
.y2_c00240{bottom:459.347700px;}
.y1_c00240{bottom:1045.800000px;}
.y4_c00240{bottom:1166.490000px;}
.h3_c00240{height:98.111250px;}
.h4_c00240{height:150.394219px;}
.h1_c00240{height:188.476875px;}
.h2_c00240{height:376.308281px;}
.h0_c00240{height:1215.000000px;}
.w0_c00240{width:2160.000000px;}
.x0_c00240{left:0.000000px;}
.x2_c00240{left:93.331350px;}
.x1_c00240{left:121.500000px;}
.x5_c00240{left:1904.220000px;}
.x4_c00240{left:1943.280000px;}
.x6_c00240{left:1977.841350px;}
.x3_c00240{left:1982.159850px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ws0_c00240{word-spacing:-0.097280pt;}
.ws1_c00240{word-spacing:0.000000pt;}
._1_c00240{width:2.708480pt;}
._2_c00240{width:4.776960pt;}
._0_c00240{width:45.460480pt;}
.fs2_c00240{font-size:97.280000pt;}
.fs3_c00240{font-size:149.120000pt;}
.fs0_c00240{font-size:186.880000pt;}
.fs1_c00240{font-size:373.120000pt;}
.y0_c00240{bottom:0.000000pt;}
.y6_c00240{bottom:44.000133pt;}
.y5_c00240{bottom:119.493467pt;}
.y3_c00240{bottom:317.589067pt;}
.y2_c00240{bottom:408.309067pt;}
.y1_c00240{bottom:929.600000pt;}
.y4_c00240{bottom:1036.880000pt;}
.h3_c00240{height:87.210000pt;}
.h4_c00240{height:133.683750pt;}
.h1_c00240{height:167.535000pt;}
.h2_c00240{height:334.496250pt;}
.h0_c00240{height:1080.000000pt;}
.w0_c00240{width:1920.000000pt;}
.x0_c00240{left:0.000000pt;}
.x2_c00240{left:82.961200pt;}
.x1_c00240{left:108.000000pt;}
.x5_c00240{left:1692.640000pt;}
.x4_c00240{left:1727.360000pt;}
.x6_c00240{left:1758.081200pt;}
.x3_c00240{left:1761.919867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_010455e88e49874de07b5fb7.woff')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00241;src:url('chunks/assets/font_70892d5d91e608b6e5c8c8cd.woff')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:0.910645;font-style:normal;font-weight:normal;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_661a843e8da9348d9aafc7da.woff')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00241;src:url('chunks/assets/font_2557ebf248de49cc31aca8b3.woff')format("woff");}.ff4_c00241{font-family:ff4_c00241;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00241{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m1_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;}
.ls3_c00241{letter-spacing:-1.537920px;}
.ls2_c00241{letter-spacing:0.000000px;}
.ls4_c00241{letter-spacing:0.192240px;}
.ls8_c00241{letter-spacing:2.691360px;}
.ls5_c00241{letter-spacing:3.460320px;}
.ls6_c00241{letter-spacing:11.534400px;}
.ls7_c00241{letter-spacing:16.917120px;}
.ls0_c00241{letter-spacing:18.262800px;}
.ls1_c00241{letter-spacing:18.839520px;}
.sc__c00241{text-shadow:none;}
.sc2_c00241{text-shadow:-0.015em 0 rgb(246,246,237),0 0.015em rgb(246,246,237),0.015em 0 rgb(246,246,237),0 -0.015em  rgb(246,246,237);}
.sc1_c00241{text-shadow:-0.015em 0 rgb(95,131,104),0 0.015em rgb(95,131,104),0.015em 0 rgb(95,131,104),0 -0.015em  rgb(95,131,104);}
.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;}
.sc2_c00241{-webkit-text-stroke:0.015em rgb(246,246,237);text-shadow:none;}
.sc1_c00241{-webkit-text-stroke:0.015em rgb(95,131,104);text-shadow:none;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00241{word-spacing:-195.700320px;}
.ws2_c00241{word-spacing:-163.538568px;}
.ws6_c00241{word-spacing:-162.750384px;}
.ws1_c00241{word-spacing:-157.002408px;}
.ws5_c00241{word-spacing:-64.977120px;}
.ws3_c00241{word-spacing:-59.594400px;}
.ws7_c00241{word-spacing:-51.520320px;}
.ws0_c00241{word-spacing:-46.522080px;}
.ws8_c00241{word-spacing:-0.122400px;}
.ws9_c00241{word-spacing:0.000000px;}
._0_c00241{margin-left:-170.630178px;}
._7_c00241{margin-left:-168.448206px;}
._2_c00241{margin-left:-113.026128px;}
._6_c00241{margin-left:-64.586359px;}
._5_c00241{margin-left:-47.130586px;}
._3_c00241{margin-left:-24.874476px;}
._1_c00241{margin-left:-13.528224px;}
._4_c00241{margin-left:-12.219041px;}
._13_c00241{margin-left:-7.728048px;}
._10_c00241{margin-left:-4.286952px;}
._12_c00241{margin-left:-1.677960px;}
._18_c00241{width:2.318400px;}
._16_c00241{width:4.440744px;}
._d_c00241{width:5.940216px;}
._f_c00241{width:7.516584px;}
._11_c00241{width:8.650800px;}
._b_c00241{width:10.919232px;}
._9_c00241{width:12.880080px;}
._15_c00241{width:14.225760px;}
._a_c00241{width:18.455040px;}
._14_c00241{width:19.570032px;}
._e_c00241{width:21.127176px;}
._c_c00241{width:25.375680px;}
._17_c00241{width:57.577800px;}
._8_c00241{width:66.322800px;}
.fc1_c00241{color:rgb(246,246,237);}
.fc0_c00241{color:rgb(95,131,104);}
.fs3_c00241{font-size:122.400000px;}
.fs2_c00241{font-size:167.760000px;}
.fs1_c00241{font-size:192.240000px;}
.fs0_c00241{font-size:436.394317px;}
.yc_c00241{bottom:-35.955000px;}
.y0_c00241{bottom:0.000000px;}
.yb_c00241{bottom:7.425000px;}
.y8_c00241{bottom:48.224550px;}
.ya_c00241{bottom:50.985000px;}
.y9_c00241{bottom:94.545000px;}
.y7_c00241{bottom:250.449270px;}
.y6_c00241{bottom:317.973570px;}
.y5_c00241{bottom:385.449810px;}
.y4_c00241{bottom:452.974110px;}
.y3_c00241{bottom:520.450350px;}
.y2_c00241{bottom:878.748600px;}
.y1_c00241{bottom:986.699100px;}
.h6_c00241{height:109.729687px;}
.h3_c00241{height:133.573008px;}
.h5_c00241{height:150.394219px;}
.h4_c00241{height:168.679336px;}
.h2_c00241{height:172.340156px;}
.h1_c00241{height:391.220687px;}
.h0_c00241{height:1215.000000px;}
.w0_c00241{width:2160.000000px;}
.x0_c00241{left:0.000000px;}
.x3_c00241{left:63.720450px;}
.x1_c00241{left:121.500000px;}
.x2_c00241{left:156.992400px;}
.x6_c00241{left:1453.708350px;}
.x5_c00241{left:1521.388350px;}
.x4_c00241{left:1694.368350px;}
.x7_c00241{left:2097.208200px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls3_c00241{letter-spacing:-1.367040pt;}
.ls2_c00241{letter-spacing:0.000000pt;}
.ls4_c00241{letter-spacing:0.170880pt;}
.ls8_c00241{letter-spacing:2.392320pt;}
.ls5_c00241{letter-spacing:3.075840pt;}
.ls6_c00241{letter-spacing:10.252800pt;}
.ls7_c00241{letter-spacing:15.037440pt;}
.ls0_c00241{letter-spacing:16.233600pt;}
.ls1_c00241{letter-spacing:16.746240pt;}
.ws4_c00241{word-spacing:-173.955840pt;}
.ws2_c00241{word-spacing:-145.367616pt;}
.ws6_c00241{word-spacing:-144.667008pt;}
.ws1_c00241{word-spacing:-139.557696pt;}
.ws5_c00241{word-spacing:-57.757440pt;}
.ws3_c00241{word-spacing:-52.972800pt;}
.ws7_c00241{word-spacing:-45.795840pt;}
.ws0_c00241{word-spacing:-41.352960pt;}
.ws8_c00241{word-spacing:-0.108800pt;}
.ws9_c00241{word-spacing:0.000000pt;}
._0_c00241{margin-left:-151.671269pt;}
._7_c00241{margin-left:-149.731739pt;}
._2_c00241{margin-left:-100.467669pt;}
._6_c00241{margin-left:-57.410097pt;}
._5_c00241{margin-left:-41.893854pt;}
._3_c00241{margin-left:-22.110645pt;}
._1_c00241{margin-left:-12.025088pt;}
._4_c00241{margin-left:-10.861370pt;}
._13_c00241{margin-left:-6.869376pt;}
._10_c00241{margin-left:-3.810624pt;}
._12_c00241{margin-left:-1.491520pt;}
._18_c00241{width:2.060800pt;}
._16_c00241{width:3.947328pt;}
._d_c00241{width:5.280192pt;}
._f_c00241{width:6.681408pt;}
._11_c00241{width:7.689600pt;}
._b_c00241{width:9.705984pt;}
._9_c00241{width:11.448960pt;}
._15_c00241{width:12.645120pt;}
._a_c00241{width:16.404480pt;}
._14_c00241{width:17.395584pt;}
._e_c00241{width:18.779712pt;}
._c_c00241{width:22.556160pt;}
._17_c00241{width:51.180267pt;}
._8_c00241{width:58.953600pt;}
.fs3_c00241{font-size:108.800000pt;}
.fs2_c00241{font-size:149.120000pt;}
.fs1_c00241{font-size:170.880000pt;}
.fs0_c00241{font-size:387.906060pt;}
.yc_c00241{bottom:-31.960000pt;}
.y0_c00241{bottom:0.000000pt;}
.yb_c00241{bottom:6.600000pt;}
.y8_c00241{bottom:42.866267pt;}
.ya_c00241{bottom:45.320000pt;}
.y9_c00241{bottom:84.040000pt;}
.y7_c00241{bottom:222.621573pt;}
.y6_c00241{bottom:282.643173pt;}
.y5_c00241{bottom:342.622053pt;}
.y4_c00241{bottom:402.643653pt;}
.y3_c00241{bottom:462.622533pt;}
.y2_c00241{bottom:781.109867pt;}
.y1_c00241{bottom:877.065867pt;}
.h6_c00241{height:97.537500pt;}
.h3_c00241{height:118.731562pt;}
.h5_c00241{height:133.683750pt;}
.h4_c00241{height:149.937187pt;}
.h2_c00241{height:153.191250pt;}
.h1_c00241{height:347.751721pt;}
.h0_c00241{height:1080.000000pt;}
.w0_c00241{width:1920.000000pt;}
.x0_c00241{left:0.000000pt;}
.x3_c00241{left:56.640400pt;}
.x1_c00241{left:108.000000pt;}
.x2_c00241{left:139.548800pt;}
.x6_c00241{left:1292.185200pt;}
.x5_c00241{left:1352.345200pt;}
.x4_c00241{left:1506.105200pt;}
.x7_c00241{left:1864.185067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61208f6b1305d167926d5435.woff')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00242;src:url('chunks/assets/font_b2dbe7348b8ac122ec1681bb.woff')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_2557ebf248de49cc31aca8b3.woff')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00242{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,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;}
.ls0_c00242{letter-spacing:0.000000px;}
.ls1_c00242{letter-spacing:23.212800px;}
.ls4_c00242{letter-spacing:24.710400px;}
.ls3_c00242{letter-spacing:33.508800px;}
.ls2_c00242{letter-spacing:50.544000px;}
.sc__c00242{text-shadow:none;}
.sc2_c00242{text-shadow:-0.015em 0 rgb(246,246,237),0 0.015em rgb(246,246,237),0.015em 0 rgb(246,246,237),0 -0.015em  rgb(246,246,237);}
.sc1_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00242{text-shadow:-0.015em 0 rgb(95,131,104),0 0.015em rgb(95,131,104),0.015em 0 rgb(95,131,104),0 -0.015em  rgb(95,131,104);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc2_c00242{-webkit-text-stroke:0.015em rgb(246,246,237);text-shadow:none;}
.sc1_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00242{-webkit-text-stroke:0.015em rgb(95,131,104);text-shadow:none;}
}
.ws0_c00242{word-spacing:-97.344000px;}
.ws5_c00242{word-spacing:-33.508800px;}
.ws6_c00242{word-spacing:-24.710400px;}
.ws4_c00242{word-spacing:-23.212800px;}
.ws2_c00242{word-spacing:-0.122400px;}
.ws1_c00242{word-spacing:-0.118080px;}
.ws3_c00242{word-spacing:0.000000px;}
._12_c00242{margin-left:-36.391680px;}
._e_c00242{margin-left:-27.293760px;}
._d_c00242{margin-left:-22.276800px;}
._11_c00242{margin-left:-15.780960px;}
._c_c00242{margin-left:-13.721760px;}
._f_c00242{margin-left:-10.745280px;}
._14_c00242{margin-left:-8.236800px;}
._1a_c00242{margin-left:-4.848480px;}
._b_c00242{margin-left:-2.920320px;}
._18_c00242{margin-left:-1.366560px;}
._2_c00242{width:1.478880px;}
._10_c00242{width:3.650400px;}
._1b_c00242{width:4.960800px;}
._5_c00242{width:6.420960px;}
._1_c00242{width:7.843680px;}
._8_c00242{width:10.221120px;}
._3_c00242{width:11.550240px;}
._0_c00242{width:12.692160px;}
._7_c00242{width:14.526720px;}
._15_c00242{width:17.091360px;}
._a_c00242{width:23.212800px;}
._17_c00242{width:24.991200px;}
._9_c00242{width:27.406080px;}
._16_c00242{width:28.903680px;}
._19_c00242{width:29.933280px;}
._13_c00242{width:40.678560px;}
._6_c00242{width:41.970240px;}
._4_c00242{width:43.318080px;}
._1c_c00242{width:45.264960px;}
._1f_c00242{width:57.579000px;}
._1e_c00242{width:125.148960px;}
._1d_c00242{width:141.349800px;}
.fc2_c00242{color:transparent;}
.fc1_c00242{color:rgb(246,246,237);}
.fc0_c00242{color:rgb(95,131,104);}
.fs3_c00242{font-size:118.080000px;}
.fs4_c00242{font-size:122.400000px;}
.fs0_c00242{font-size:167.760000px;}
.fs2_c00242{font-size:187.200000px;}
.fs1_c00242{font-size:474.341649px;}
.yd_c00242{bottom:-9.295500px;}
.y0_c00242{bottom:0.000000px;}
.yc_c00242{bottom:34.084500px;}
.yb_c00242{bottom:77.644500px;}
.y9_c00242{bottom:97.830000px;}
.ya_c00242{bottom:121.204500px;}
.y8_c00242{bottom:290.588400px;}
.y7_c00242{bottom:358.074000px;}
.y6_c00242{bottom:493.092000px;}
.y5_c00242{bottom:628.110000px;}
.y4_c00242{bottom:695.595600px;}
.y3_c00242{bottom:830.613600px;}
.y2_c00242{bottom:995.239800px;}
.y1_c00242{bottom:1056.330000px;}
.h5_c00242{height:105.856875px;}
.h6_c00242{height:109.729687px;}
.h1_c00242{height:150.394219px;}
.h4_c00242{height:164.257031px;}
.h3_c00242{height:167.821875px;}
.h2_c00242{height:425.239877px;}
.h0_c00242{height:1215.000000px;}
.w0_c00242{width:2160.000000px;}
.x0_c00242{left:0.000000px;}
.x1_c00242{left:64.436700px;}
.x3_c00242{left:301.221150px;}
.x2_c00242{left:1120.755450px;}
.x6_c00242{left:1460.991150px;}
.x5_c00242{left:1528.671150px;}
.x4_c00242{left:1701.651300px;}
.x7_c00242{left:2104.491150px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ls1_c00242{letter-spacing:20.633600pt;}
.ls4_c00242{letter-spacing:21.964800pt;}
.ls3_c00242{letter-spacing:29.785600pt;}
.ls2_c00242{letter-spacing:44.928000pt;}
.ws0_c00242{word-spacing:-86.528000pt;}
.ws5_c00242{word-spacing:-29.785600pt;}
.ws6_c00242{word-spacing:-21.964800pt;}
.ws4_c00242{word-spacing:-20.633600pt;}
.ws2_c00242{word-spacing:-0.108800pt;}
.ws1_c00242{word-spacing:-0.104960pt;}
.ws3_c00242{word-spacing:0.000000pt;}
._12_c00242{margin-left:-32.348160pt;}
._e_c00242{margin-left:-24.261120pt;}
._d_c00242{margin-left:-19.801600pt;}
._11_c00242{margin-left:-14.027520pt;}
._c_c00242{margin-left:-12.197120pt;}
._f_c00242{margin-left:-9.551360pt;}
._14_c00242{margin-left:-7.321600pt;}
._1a_c00242{margin-left:-4.309760pt;}
._b_c00242{margin-left:-2.595840pt;}
._18_c00242{margin-left:-1.214720pt;}
._2_c00242{width:1.314560pt;}
._10_c00242{width:3.244800pt;}
._1b_c00242{width:4.409600pt;}
._5_c00242{width:5.707520pt;}
._1_c00242{width:6.972160pt;}
._8_c00242{width:9.085440pt;}
._3_c00242{width:10.266880pt;}
._0_c00242{width:11.281920pt;}
._7_c00242{width:12.912640pt;}
._15_c00242{width:15.192320pt;}
._a_c00242{width:20.633600pt;}
._17_c00242{width:22.214400pt;}
._9_c00242{width:24.360960pt;}
._16_c00242{width:25.692160pt;}
._19_c00242{width:26.607360pt;}
._13_c00242{width:36.158720pt;}
._6_c00242{width:37.306880pt;}
._4_c00242{width:38.504960pt;}
._1c_c00242{width:40.235520pt;}
._1f_c00242{width:51.181333pt;}
._1e_c00242{width:111.243520pt;}
._1d_c00242{width:125.644267pt;}
.fs3_c00242{font-size:104.960000pt;}
.fs4_c00242{font-size:108.800000pt;}
.fs0_c00242{font-size:149.120000pt;}
.fs2_c00242{font-size:166.400000pt;}
.fs1_c00242{font-size:421.637021pt;}
.yd_c00242{bottom:-8.262667pt;}
.y0_c00242{bottom:0.000000pt;}
.yc_c00242{bottom:30.297333pt;}
.yb_c00242{bottom:69.017333pt;}
.y9_c00242{bottom:86.960000pt;}
.ya_c00242{bottom:107.737333pt;}
.y8_c00242{bottom:258.300800pt;}
.y7_c00242{bottom:318.288000pt;}
.y6_c00242{bottom:438.304000pt;}
.y5_c00242{bottom:558.320000pt;}
.y4_c00242{bottom:618.307200pt;}
.y3_c00242{bottom:738.323200pt;}
.y2_c00242{bottom:884.657600pt;}
.y1_c00242{bottom:938.960000pt;}
.h5_c00242{height:94.095000pt;}
.h6_c00242{height:97.537500pt;}
.h1_c00242{height:133.683750pt;}
.h4_c00242{height:146.006250pt;}
.h3_c00242{height:149.175000pt;}
.h2_c00242{height:377.991002pt;}
.h0_c00242{height:1080.000000pt;}
.w0_c00242{width:1920.000000pt;}
.x0_c00242{left:0.000000pt;}
.x1_c00242{left:57.277067pt;}
.x3_c00242{left:267.752133pt;}
.x2_c00242{left:996.227067pt;}
.x6_c00242{left:1298.658800pt;}
.x5_c00242{left:1358.818800pt;}
.x4_c00242{left:1512.578933pt;}
.x7_c00242{left:1870.658800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a733802a93fe3359902a4aeb.woff')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00243;src:url('chunks/assets/font_2557ebf248de49cc31aca8b3.woff')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00243{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m1_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;}
.ls0_c00243{letter-spacing:0.000000px;}
.sc__c00243{text-shadow:none;}
.sc2_c00243{text-shadow:-0.015em 0 rgb(95,131,104),0 0.015em rgb(95,131,104),0.015em 0 rgb(95,131,104),0 -0.015em  rgb(95,131,104);}
.sc1_c00243{text-shadow:-0.015em 0 rgb(246,246,237),0 0.015em rgb(246,246,237),0.015em 0 rgb(246,246,237),0 -0.015em  rgb(246,246,237);}
.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;}
.sc2_c00243{-webkit-text-stroke:0.015em rgb(95,131,104);text-shadow:none;}
.sc1_c00243{-webkit-text-stroke:0.015em rgb(246,246,237);text-shadow:none;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00243{word-spacing:-0.118080px;}
.ws1_c00243{word-spacing:0.000000px;}
._0_c00243{margin-left:-102.002428px;}
._1_c00243{margin-left:-12.750304px;}
._3_c00243{width:2.321280px;}
._4_c00243{width:4.642560px;}
._2_c00243{width:52.073280px;}
.fc1_c00243{color:rgb(246,246,237);}
.fc0_c00243{color:rgb(95,131,104);}
.fs1_c00243{font-size:118.080000px;}
.fs2_c00243{font-size:167.760000px;}
.fs3_c00243{font-size:192.240000px;}
.fs0_c00243{font-size:455.367983px;}
.y0_c00243{bottom:0.000000px;}
.y4_c00243{bottom:12.690000px;}
.y3_c00243{bottom:54.810000px;}
.y2_c00243{bottom:96.750000px;}
.y9_c00243{bottom:448.865400px;}
.y8_c00243{bottom:583.865400px;}
.y7_c00243{bottom:651.365400px;}
.y6_c00243{bottom:786.365250px;}
.y1_c00243{bottom:999.255000px;}
.y5_c00243{bottom:1056.330000px;}
.h2_c00243{height:105.856875px;}
.h3_c00243{height:150.394219px;}
.h4_c00243{height:172.340156px;}
.h1_c00243{height:408.230282px;}
.h0_c00243{height:1215.000000px;}
.w0_c00243{width:2160.000000px;}
.x0_c00243{left:0.000000px;}
.x5_c00243{left:64.076700px;}
.x1_c00243{left:194.911950px;}
.x6_c00243{left:253.800000px;}
.x4_c00243{left:1520.890950px;}
.x3_c00243{left:1586.950950px;}
.x2_c00243{left:1752.550950px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws0_c00243{word-spacing:-0.104960pt;}
.ws1_c00243{word-spacing:0.000000pt;}
._0_c00243{margin-left:-90.668825pt;}
._1_c00243{margin-left:-11.333603pt;}
._3_c00243{width:2.063360pt;}
._4_c00243{width:4.126720pt;}
._2_c00243{width:46.287360pt;}
.fs1_c00243{font-size:104.960000pt;}
.fs2_c00243{font-size:149.120000pt;}
.fs3_c00243{font-size:170.880000pt;}
.fs0_c00243{font-size:404.771541pt;}
.y0_c00243{bottom:0.000000pt;}
.y4_c00243{bottom:11.280000pt;}
.y3_c00243{bottom:48.720000pt;}
.y2_c00243{bottom:86.000000pt;}
.y9_c00243{bottom:398.991467pt;}
.y8_c00243{bottom:518.991467pt;}
.y7_c00243{bottom:578.991467pt;}
.y6_c00243{bottom:698.991333pt;}
.y1_c00243{bottom:888.226667pt;}
.y5_c00243{bottom:938.960000pt;}
.h2_c00243{height:94.095000pt;}
.h3_c00243{height:133.683750pt;}
.h4_c00243{height:153.191250pt;}
.h1_c00243{height:362.871362pt;}
.h0_c00243{height:1080.000000pt;}
.w0_c00243{width:1920.000000pt;}
.x0_c00243{left:0.000000pt;}
.x5_c00243{left:56.957067pt;}
.x1_c00243{left:173.255067pt;}
.x6_c00243{left:225.600000pt;}
.x4_c00243{left:1351.903067pt;}
.x3_c00243{left:1410.623067pt;}
.x2_c00243{left:1557.823067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff342b4a41daca564a572ce5.woff')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00244;src:url('chunks/assets/font_2557ebf248de49cc31aca8b3.woff')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00244{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m1_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.031680px;}
.sc__c00244{text-shadow:none;}
.sc2_c00244{text-shadow:-0.015em 0 rgb(246,246,237),0 0.015em rgb(246,246,237),0.015em 0 rgb(246,246,237),0 -0.015em  rgb(246,246,237);}
.sc1_c00244{text-shadow:-0.015em 0 rgb(95,131,104),0 0.015em rgb(95,131,104),0.015em 0 rgb(95,131,104),0 -0.015em  rgb(95,131,104);}
.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;}
.sc2_c00244{-webkit-text-stroke:0.015em rgb(246,246,237);text-shadow:none;}
.sc1_c00244{-webkit-text-stroke:0.015em rgb(95,131,104);text-shadow:none;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00244{word-spacing:0.000000px;}
._1_c00244{width:2.175840px;}
._2_c00244{width:4.415040px;}
._0_c00244{width:51.545520px;}
.fc1_c00244{color:rgb(95,131,104);}
.fc0_c00244{color:rgb(246,246,237);}
.fs1_c00244{font-size:108.720000px;}
.fs2_c00244{font-size:167.760000px;}
.fs3_c00244{font-size:193.680000px;}
.fs0_c00244{font-size:455.367983px;}
.y0_c00244{bottom:0.000000px;}
.y4_c00244{bottom:30.913350px;}
.y3_c00244{bottom:68.353350px;}
.y2_c00244{bottom:105.973350px;}
.ya_c00244{bottom:231.326550px;}
.y9_c00244{bottom:348.326550px;}
.y8_c00244{bottom:465.326550px;}
.y7_c00244{bottom:582.326550px;}
.y6_c00244{bottom:699.326550px;}
.y1_c00244{bottom:947.280000px;}
.y5_c00244{bottom:1056.330000px;}
.h2_c00244{height:97.465781px;}
.h3_c00244{height:150.394219px;}
.h4_c00244{height:173.631094px;}
.h1_c00244{height:408.230282px;}
.h0_c00244{height:1215.000000px;}
.w0_c00244{width:2160.000000px;}
.x0_c00244{left:0.000000px;}
.x5_c00244{left:64.620450px;}
.x6_c00244{left:148.977150px;}
.x1_c00244{left:201.762750px;}
.x4_c00244{left:1561.568850px;}
.x3_c00244{left:1621.688850px;}
.x2_c00244{left:1775.049000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls1_c00244{letter-spacing:0.000000pt;}
.ls0_c00244{letter-spacing:0.028160pt;}
.ws0_c00244{word-spacing:0.000000pt;}
._1_c00244{width:1.934080pt;}
._2_c00244{width:3.924480pt;}
._0_c00244{width:45.818240pt;}
.fs1_c00244{font-size:96.640000pt;}
.fs2_c00244{font-size:149.120000pt;}
.fs3_c00244{font-size:172.160000pt;}
.fs0_c00244{font-size:404.771541pt;}
.y0_c00244{bottom:0.000000pt;}
.y4_c00244{bottom:27.478533pt;}
.y3_c00244{bottom:60.758533pt;}
.y2_c00244{bottom:94.198533pt;}
.ya_c00244{bottom:205.623600pt;}
.y9_c00244{bottom:309.623600pt;}
.y8_c00244{bottom:413.623600pt;}
.y7_c00244{bottom:517.623600pt;}
.y6_c00244{bottom:621.623600pt;}
.y1_c00244{bottom:842.026667pt;}
.y5_c00244{bottom:938.960000pt;}
.h2_c00244{height:86.636250pt;}
.h3_c00244{height:133.683750pt;}
.h4_c00244{height:154.338750pt;}
.h1_c00244{height:362.871362pt;}
.h0_c00244{height:1080.000000pt;}
.w0_c00244{width:1920.000000pt;}
.x0_c00244{left:0.000000pt;}
.x5_c00244{left:57.440400pt;}
.x6_c00244{left:132.424133pt;}
.x1_c00244{left:179.344667pt;}
.x4_c00244{left:1388.061200pt;}
.x3_c00244{left:1441.501200pt;}
.x2_c00244{left:1577.821333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a56a37573ed11575ec0edab.woff')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00245;src:url('chunks/assets/font_2f1aa0cb0569fa1017d514d3.woff')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00245{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m1_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;}
.ls2_c00245{letter-spacing:0.000000px;}
.ls0_c00245{letter-spacing:0.031680px;}
.ls1_c00245{letter-spacing:150.480000px;}
.sc__c00245{text-shadow:none;}
.sc2_c00245{text-shadow:-0.015em 0 rgb(246,246,237),0 0.015em rgb(246,246,237),0.015em 0 rgb(246,246,237),0 -0.015em  rgb(246,246,237);}
.sc1_c00245{text-shadow:-0.015em 0 rgb(95,131,104),0 0.015em rgb(95,131,104),0.015em 0 rgb(95,131,104),0 -0.015em  rgb(95,131,104);}
.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;}
.sc2_c00245{-webkit-text-stroke:0.015em rgb(246,246,237);text-shadow:none;}
.sc1_c00245{-webkit-text-stroke:0.015em rgb(95,131,104);text-shadow:none;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00245{word-spacing:0.000000px;}
.ws0_c00245{word-spacing:252.345600px;}
._0_c00245{margin-left:-127.958403px;}
._3_c00245{margin-left:-76.501821px;}
._2_c00245{margin-left:-44.170694px;}
._1_c00245{margin-left:-11.839568px;}
._5_c00245{width:2.175840px;}
._6_c00245{width:4.415040px;}
._4_c00245{width:51.545520px;}
._8_c00245{width:70.200000px;}
._7_c00245{width:423.259200px;}
.fc2_c00245{color:rgb(255,255,255);}
.fc1_c00245{color:rgb(95,131,104);}
.fc0_c00245{color:rgb(246,246,237);}
.fs1_c00245{font-size:108.720000px;}
.fs2_c00245{font-size:167.760000px;}
.fs3_c00245{font-size:187.200000px;}
.fs0_c00245{font-size:455.367983px;}
.y0_c00245{bottom:0.000000px;}
.y4_c00245{bottom:30.913350px;}
.y3_c00245{bottom:68.353350px;}
.y2_c00245{bottom:105.973350px;}
.yc_c00245{bottom:210.366000px;}
.yb_c00245{bottom:345.384000px;}
.ya_c00245{bottom:480.402000px;}
.y9_c00245{bottom:615.420000px;}
.y8_c00245{bottom:682.934400px;}
.y7_c00245{bottom:750.420000px;}
.y6_c00245{bottom:817.920000px;}
.y1_c00245{bottom:970.380000px;}
.y5_c00245{bottom:1056.330000px;}
.h2_c00245{height:97.465781px;}
.h3_c00245{height:150.394219px;}
.h4_c00245{height:167.821875px;}
.h1_c00245{height:408.230282px;}
.h0_c00245{height:1215.000000px;}
.w0_c00245{width:2160.000000px;}
.x0_c00245{left:0.000000px;}
.x5_c00245{left:65.160450px;}
.x6_c00245{left:117.000000px;}
.x1_c00245{left:201.762750px;}
.x4_c00245{left:1561.568850px;}
.x3_c00245{left:1621.688850px;}
.x2_c00245{left:1775.049000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls2_c00245{letter-spacing:0.000000pt;}
.ls0_c00245{letter-spacing:0.028160pt;}
.ls1_c00245{letter-spacing:133.760000pt;}
.ws1_c00245{word-spacing:0.000000pt;}
.ws0_c00245{word-spacing:224.307200pt;}
._0_c00245{margin-left:-113.740803pt;}
._3_c00245{margin-left:-68.001619pt;}
._2_c00245{margin-left:-39.262839pt;}
._1_c00245{margin-left:-10.524060pt;}
._5_c00245{width:1.934080pt;}
._6_c00245{width:3.924480pt;}
._4_c00245{width:45.818240pt;}
._8_c00245{width:62.400000pt;}
._7_c00245{width:376.230400pt;}
.fs1_c00245{font-size:96.640000pt;}
.fs2_c00245{font-size:149.120000pt;}
.fs3_c00245{font-size:166.400000pt;}
.fs0_c00245{font-size:404.771541pt;}
.y0_c00245{bottom:0.000000pt;}
.y4_c00245{bottom:27.478533pt;}
.y3_c00245{bottom:60.758533pt;}
.y2_c00245{bottom:94.198533pt;}
.yc_c00245{bottom:186.992000pt;}
.yb_c00245{bottom:307.008000pt;}
.ya_c00245{bottom:427.024000pt;}
.y9_c00245{bottom:547.040000pt;}
.y8_c00245{bottom:607.052800pt;}
.y7_c00245{bottom:667.040000pt;}
.y6_c00245{bottom:727.040000pt;}
.y1_c00245{bottom:862.560000pt;}
.y5_c00245{bottom:938.960000pt;}
.h2_c00245{height:86.636250pt;}
.h3_c00245{height:133.683750pt;}
.h4_c00245{height:149.175000pt;}
.h1_c00245{height:362.871362pt;}
.h0_c00245{height:1080.000000pt;}
.w0_c00245{width:1920.000000pt;}
.x0_c00245{left:0.000000pt;}
.x5_c00245{left:57.920400pt;}
.x6_c00245{left:104.000000pt;}
.x1_c00245{left:179.344667pt;}
.x4_c00245{left:1388.061200pt;}
.x3_c00245{left:1441.501200pt;}
.x2_c00245{left:1577.821333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a3e45258503a873e83a3e42.woff')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00246;src:url('chunks/assets/font_1a54b9800762e192ec4a333c.woff')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00246{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m1_c00246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.ls4_c00246{letter-spacing:0.000000px;}
.ls3_c00246{letter-spacing:34.257000px;}
.ls0_c00246{letter-spacing:34.257600px;}
.ls2_c00246{letter-spacing:35.697600px;}
.ls1_c00246{letter-spacing:44.956800px;}
.sc__c00246{text-shadow:none;}
.sc2_c00246{text-shadow:-0.015em 0 rgb(95,131,104),0 0.015em rgb(95,131,104),0.015em 0 rgb(95,131,104),0 -0.015em  rgb(95,131,104);}
.sc1_c00246{text-shadow:-0.015em 0 rgb(246,246,237),0 0.015em rgb(246,246,237),0.015em 0 rgb(246,246,237),0 -0.015em  rgb(246,246,237);}
.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;}
.sc2_c00246{-webkit-text-stroke:0.015em rgb(95,131,104);text-shadow:none;}
.sc1_c00246{-webkit-text-stroke:0.015em rgb(246,246,237);text-shadow:none;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00246{word-spacing:-0.118080px;}
.ws1_c00246{word-spacing:0.000000px;}
._1_c00246{width:2.321280px;}
._2_c00246{width:4.642560px;}
._7_c00246{width:37.252800px;}
._4_c00246{width:38.750400px;}
._0_c00246{width:52.073280px;}
._8_c00246{width:64.612800px;}
._5_c00246{width:70.560000px;}
._6_c00246{width:164.361600px;}
._3_c00246{width:277.992000px;}
._9_c00246{width:293.529600px;}
.fc1_c00246{color:rgb(246,246,237);}
.fc0_c00246{color:rgb(95,131,104);}
.fs1_c00246{font-size:118.080000px;}
.fs2_c00246{font-size:167.760000px;}
.fs3_c00246{font-size:187.200000px;}
.fs0_c00246{font-size:455.367983px;}
.y0_c00246{bottom:0.000000px;}
.y4_c00246{bottom:12.690000px;}
.y3_c00246{bottom:54.810000px;}
.y2_c00246{bottom:96.750000px;}
.y9_c00246{bottom:330.476700px;}
.y8_c00246{bottom:465.494700px;}
.y7_c00246{bottom:600.512700px;}
.y6_c00246{bottom:735.512700px;}
.y1_c00246{bottom:999.255000px;}
.y5_c00246{bottom:1056.330000px;}
.h2_c00246{height:105.856875px;}
.h3_c00246{height:150.394219px;}
.h4_c00246{height:167.821875px;}
.h1_c00246{height:408.230282px;}
.h0_c00246{height:1215.000000px;}
.w0_c00246{width:2160.000000px;}
.x0_c00246{left:0.000000px;}
.x5_c00246{left:64.436700px;}
.x6_c00246{left:124.299000px;}
.x1_c00246{left:194.911950px;}
.x4_c00246{left:1520.890950px;}
.x3_c00246{left:1586.950950px;}
.x2_c00246{left:1752.550950px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls4_c00246{letter-spacing:0.000000pt;}
.ls3_c00246{letter-spacing:30.450667pt;}
.ls0_c00246{letter-spacing:30.451200pt;}
.ls2_c00246{letter-spacing:31.731200pt;}
.ls1_c00246{letter-spacing:39.961600pt;}
.ws0_c00246{word-spacing:-0.104960pt;}
.ws1_c00246{word-spacing:0.000000pt;}
._1_c00246{width:2.063360pt;}
._2_c00246{width:4.126720pt;}
._7_c00246{width:33.113600pt;}
._4_c00246{width:34.444800pt;}
._0_c00246{width:46.287360pt;}
._8_c00246{width:57.433600pt;}
._5_c00246{width:62.720000pt;}
._6_c00246{width:146.099200pt;}
._3_c00246{width:247.104000pt;}
._9_c00246{width:260.915200pt;}
.fs1_c00246{font-size:104.960000pt;}
.fs2_c00246{font-size:149.120000pt;}
.fs3_c00246{font-size:166.400000pt;}
.fs0_c00246{font-size:404.771541pt;}
.y0_c00246{bottom:0.000000pt;}
.y4_c00246{bottom:11.280000pt;}
.y3_c00246{bottom:48.720000pt;}
.y2_c00246{bottom:86.000000pt;}
.y9_c00246{bottom:293.757067pt;}
.y8_c00246{bottom:413.773067pt;}
.y7_c00246{bottom:533.789067pt;}
.y6_c00246{bottom:653.789067pt;}
.y1_c00246{bottom:888.226667pt;}
.y5_c00246{bottom:938.960000pt;}
.h2_c00246{height:94.095000pt;}
.h3_c00246{height:133.683750pt;}
.h4_c00246{height:149.175000pt;}
.h1_c00246{height:362.871362pt;}
.h0_c00246{height:1080.000000pt;}
.w0_c00246{width:1920.000000pt;}
.x0_c00246{left:0.000000pt;}
.x5_c00246{left:57.277067pt;}
.x6_c00246{left:110.488000pt;}
.x1_c00246{left:173.255067pt;}
.x4_c00246{left:1351.903067pt;}
.x3_c00246{left:1410.623067pt;}
.x2_c00246{left:1557.823067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af10a45233fb0cf7ed08beed.woff')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.172852;font-style:normal;font-weight:normal;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_0b9068eebe38f764b0189b15.woff')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:0.740234;font-style:normal;font-weight:normal;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_c7a204c2e3f76fb17027b6ac.woff')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls1_c00247{letter-spacing:0.000000px;}
.ls0_c00247{letter-spacing:0.174240px;}
.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:-13.505760px;}
.ws1_c00247{word-spacing:0.000000px;}
._3_c00247{margin-left:-4.421520px;}
._1_c00247{margin-left:-2.883600px;}
._2_c00247{margin-left:-1.537920px;}
._4_c00247{width:1.163280px;}
._5_c00247{width:3.439440px;}
._0_c00247{width:817.482720px;}
.fc2_c00247{color:rgb(68,114,196);}
.fc5_c00247{color:transparent;}
.fc1_c00247{color:rgb(196,89,17);}
.fc4_c00247{color:rgb(89,89,89);}
.fc3_c00247{color:rgb(64,64,64);}
.fc0_c00247{color:rgb(0,0,0);}
.fs5_c00247{font-size:54.000000px;}
.fs6_c00247{font-size:59.760000px;}
.fs0_c00247{font-size:66.240000px;}
.fs4_c00247{font-size:84.240000px;}
.fs3_c00247{font-size:108.000000px;}
.fs1_c00247{font-size:167.760000px;}
.fs2_c00247{font-size:192.240000px;}
.y0_c00247{bottom:0.000000px;}
.y7_c00247{bottom:5.580000px;}
.y5_c00247{bottom:21.780000px;}
.yd_c00247{bottom:52.920000px;}
.yc_c00247{bottom:71.100000px;}
.y4_c00247{bottom:77.040000px;}
.yb_c00247{bottom:89.460000px;}
.ya_c00247{bottom:107.820000px;}
.y6_c00247{bottom:114.876000px;}
.y9_c00247{bottom:127.800000px;}
.y8_c00247{bottom:230.790000px;}
.y3_c00247{bottom:426.675000px;}
.y2_c00247{bottom:1135.770000px;}
.y1_c00247{bottom:1193.220000px;}
.ha_c00247{height:59.439023px;}
.h2_c00247{height:65.884219px;}
.h8_c00247{height:83.787539px;}
.h6_c00247{height:107.419922px;}
.h7_c00247{height:114.480000px;}
.h3_c00247{height:122.133867px;}
.h9_c00247{height:147.816000px;}
.h5_c00247{height:191.207461px;}
.h4_c00247{height:456.915000px;}
.h0_c00247{height:1262.880000px;}
.h1_c00247{height:1263.000000px;}
.w3_c00247{width:839.850000px;}
.w4_c00247{width:866.123970px;}
.w2_c00247{width:892.979987px;}
.w0_c00247{width:892.980000px;}
.w1_c00247{width:893.250000px;}
.x0_c00247{left:0.000000px;}
.x2_c00247{left:26.640000px;}
.x1_c00247{left:53.999987px;}
.x7_c00247{left:70.199970px;}
.x8_c00247{left:96.335970px;}
.x9_c00247{left:105.695970px;}
.x3_c00247{left:241.590000px;}
.x4_c00247{left:299.775000px;}
.x5_c00247{left:472.605000px;}
.xa_c00247{left:642.344970px;}
.x6_c00247{left:712.769970px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls1_c00247{letter-spacing:0.000000pt;}
.ls0_c00247{letter-spacing:0.154880pt;}
.ws0_c00247{word-spacing:-12.005120pt;}
.ws1_c00247{word-spacing:0.000000pt;}
._3_c00247{margin-left:-3.930240pt;}
._1_c00247{margin-left:-2.563200pt;}
._2_c00247{margin-left:-1.367040pt;}
._4_c00247{width:1.034027pt;}
._5_c00247{width:3.057280pt;}
._0_c00247{width:726.651307pt;}
.fs5_c00247{font-size:48.000000pt;}
.fs6_c00247{font-size:53.120000pt;}
.fs0_c00247{font-size:58.880000pt;}
.fs4_c00247{font-size:74.880000pt;}
.fs3_c00247{font-size:96.000000pt;}
.fs1_c00247{font-size:149.120000pt;}
.fs2_c00247{font-size:170.880000pt;}
.y0_c00247{bottom:0.000000pt;}
.y7_c00247{bottom:4.960000pt;}
.y5_c00247{bottom:19.360000pt;}
.yd_c00247{bottom:47.040000pt;}
.yc_c00247{bottom:63.200000pt;}
.y4_c00247{bottom:68.480000pt;}
.yb_c00247{bottom:79.520000pt;}
.ya_c00247{bottom:95.840000pt;}
.y6_c00247{bottom:102.112000pt;}
.y9_c00247{bottom:113.600000pt;}
.y8_c00247{bottom:205.146667pt;}
.y3_c00247{bottom:379.266667pt;}
.y2_c00247{bottom:1009.573333pt;}
.y1_c00247{bottom:1060.640000pt;}
.ha_c00247{height:52.834688pt;}
.h2_c00247{height:58.563750pt;}
.h8_c00247{height:74.477812pt;}
.h6_c00247{height:95.484375pt;}
.h7_c00247{height:101.760000pt;}
.h3_c00247{height:108.563437pt;}
.h9_c00247{height:131.392000pt;}
.h5_c00247{height:169.962187pt;}
.h4_c00247{height:406.146667pt;}
.h0_c00247{height:1122.560000pt;}
.h1_c00247{height:1122.666667pt;}
.w3_c00247{width:746.533333pt;}
.w4_c00247{width:769.887973pt;}
.w2_c00247{width:793.759988pt;}
.w0_c00247{width:793.760000pt;}
.w1_c00247{width:794.000000pt;}
.x0_c00247{left:0.000000pt;}
.x2_c00247{left:23.680000pt;}
.x1_c00247{left:47.999988pt;}
.x7_c00247{left:62.399973pt;}
.x8_c00247{left:85.631973pt;}
.x9_c00247{left:93.951973pt;}
.x3_c00247{left:214.746667pt;}
.x4_c00247{left:266.466667pt;}
.x5_c00247{left:420.093333pt;}
.xa_c00247{left:570.973307pt;}
.x6_c00247{left:633.573307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8d1d795d1bb8f846a84b993.woff')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.115234;font-style:normal;font-weight:normal;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_0b9068eebe38f764b0189b15.woff')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:0.740234;font-style:normal;font-weight:normal;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_3b39d7a3b16dbb51cbf7b7dc.woff')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:0.708008;font-style:normal;font-weight:normal;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_ec85567a31ec05196962fb45.woff')format("woff");}.ff4_c00248{font-family:ff4_c00248;line-height:1.104492;font-style:normal;font-weight:normal;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_5ed36dae8a09423a938a894f.woff')format("woff");}.ff5_c00248{font-family:ff5_c00248;line-height:1.104492;font-style:normal;font-weight:normal;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_208b64e87d80be18ec5f6b67.woff')format("woff");}.ff6_c00248{font-family:ff6_c00248;line-height:1.115234;font-style:normal;font-weight:normal;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_7d9be419dc9abf0547e64a96.woff')format("woff");}.ff7_c00248{font-family:ff7_c00248;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00248;src:url('chunks/assets/font_3d88f5e2d6e8f890a90ff66c.woff')format("woff");}.ff8_c00248{font-family:ff8_c00248;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00248{letter-spacing:0.000000px;}
.ls1_c00248{letter-spacing:0.144000px;}
.ls0_c00248{letter-spacing:0.216000px;}
.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;}
}
.ws1_c00248{word-spacing:-30.024000px;}
.ws0_c00248{word-spacing:-23.418720px;}
.ws2_c00248{word-spacing:-20.016000px;}
.ws3_c00248{word-spacing:0.000000px;}
._1_c00248{margin-left:-6.907680px;}
._5_c00248{margin-left:-5.462400px;}
._6_c00248{margin-left:-3.960000px;}
._0_c00248{margin-left:-1.010880px;}
._2_c00248{width:1.130880px;}
._8_c00248{width:2.960160px;}
._7_c00248{width:8.907840px;}
._4_c00248{width:10.157760px;}
._3_c00248{width:11.232000px;}
.fc1_c00248{color:rgb(196,89,17);}
.fc0_c00248{color:rgb(0,0,0);}
.fs2_c00248{font-size:72.000000px;}
.fs0_c00248{font-size:84.240000px;}
.fs3_c00248{font-size:108.000000px;}
.fs1_c00248{font-size:167.760000px;}
.y0_c00248{bottom:0.000000px;}
.y20_c00248{bottom:59.400000px;}
.y1f_c00248{bottom:102.600000px;}
.y1e_c00248{bottom:138.276000px;}
.y1d_c00248{bottom:174.090000px;}
.y1c_c00248{bottom:209.910000px;}
.y1b_c00248{bottom:245.730000px;}
.y1a_c00248{bottom:281.550000px;}
.y19_c00248{bottom:317.190000px;}
.y18_c00248{bottom:353.010000px;}
.y17_c00248{bottom:396.255000px;}
.y16_c00248{bottom:427.215000px;}
.y15_c00248{bottom:470.415000px;}
.y14_c00248{bottom:506.055000px;}
.y13_c00248{bottom:541.875000px;}
.y12_c00248{bottom:577.695000px;}
.y11_c00248{bottom:613.515000px;}
.y10_c00248{bottom:649.365000px;}
.yf_c00248{bottom:685.185000px;}
.ye_c00248{bottom:721.005000px;}
.yd_c00248{bottom:756.645000px;}
.yc_c00248{bottom:792.465000px;}
.yb_c00248{bottom:828.285000px;}
.ya_c00248{bottom:864.105000px;}
.y9_c00248{bottom:899.970000px;}
.y8_c00248{bottom:942.990000px;}
.y7_c00248{bottom:974.130000px;}
.y6_c00248{bottom:1024.170000px;}
.y5_c00248{bottom:1075.830000px;}
.y4_c00248{bottom:1111.110000px;}
.y3_c00248{bottom:1137.030000px;}
.y2_c00248{bottom:1163.160000px;}
.y1_c00248{bottom:1189.260000px;}
.h4_c00248{height:49.992188px;}
.h7_c00248{height:64.546875px;}
.h6_c00248{height:65.144531px;}
.h2_c00248{height:76.219102px;}
.h5_c00248{height:96.556641px;}
.h3_c00248{height:122.133867px;}
.h0_c00248{height:1262.880000px;}
.h1_c00248{height:1263.000000px;}
.w2_c00248{width:892.979987px;}
.w0_c00248{width:892.980000px;}
.w1_c00248{width:893.250000px;}
.x0_c00248{left:0.000000px;}
.x1_c00248{left:53.999987px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls2_c00248{letter-spacing:0.000000pt;}
.ls1_c00248{letter-spacing:0.128000pt;}
.ls0_c00248{letter-spacing:0.192000pt;}
.ws1_c00248{word-spacing:-26.688000pt;}
.ws0_c00248{word-spacing:-20.816640pt;}
.ws2_c00248{word-spacing:-17.792000pt;}
.ws3_c00248{word-spacing:0.000000pt;}
._1_c00248{margin-left:-6.140160pt;}
._5_c00248{margin-left:-4.855467pt;}
._6_c00248{margin-left:-3.520000pt;}
._0_c00248{margin-left:-0.898560pt;}
._2_c00248{width:1.005227pt;}
._8_c00248{width:2.631253pt;}
._7_c00248{width:7.918080pt;}
._4_c00248{width:9.029120pt;}
._3_c00248{width:9.984000pt;}
.fs2_c00248{font-size:64.000000pt;}
.fs0_c00248{font-size:74.880000pt;}
.fs3_c00248{font-size:96.000000pt;}
.fs1_c00248{font-size:149.120000pt;}
.y0_c00248{bottom:0.000000pt;}
.y20_c00248{bottom:52.800000pt;}
.y1f_c00248{bottom:91.200000pt;}
.y1e_c00248{bottom:122.912000pt;}
.y1d_c00248{bottom:154.746667pt;}
.y1c_c00248{bottom:186.586667pt;}
.y1b_c00248{bottom:218.426667pt;}
.y1a_c00248{bottom:250.266667pt;}
.y19_c00248{bottom:281.946667pt;}
.y18_c00248{bottom:313.786667pt;}
.y17_c00248{bottom:352.226667pt;}
.y16_c00248{bottom:379.746667pt;}
.y15_c00248{bottom:418.146667pt;}
.y14_c00248{bottom:449.826667pt;}
.y13_c00248{bottom:481.666667pt;}
.y12_c00248{bottom:513.506667pt;}
.y11_c00248{bottom:545.346667pt;}
.y10_c00248{bottom:577.213333pt;}
.yf_c00248{bottom:609.053333pt;}
.ye_c00248{bottom:640.893333pt;}
.yd_c00248{bottom:672.573333pt;}
.yc_c00248{bottom:704.413333pt;}
.yb_c00248{bottom:736.253333pt;}
.ya_c00248{bottom:768.093333pt;}
.y9_c00248{bottom:799.973333pt;}
.y8_c00248{bottom:838.213333pt;}
.y7_c00248{bottom:865.893333pt;}
.y6_c00248{bottom:910.373333pt;}
.y5_c00248{bottom:956.293333pt;}
.y4_c00248{bottom:987.653333pt;}
.y3_c00248{bottom:1010.693333pt;}
.y2_c00248{bottom:1033.920000pt;}
.y1_c00248{bottom:1057.120000pt;}
.h4_c00248{height:44.437500pt;}
.h7_c00248{height:57.375000pt;}
.h6_c00248{height:57.906250pt;}
.h2_c00248{height:67.750312pt;}
.h5_c00248{height:85.828125pt;}
.h3_c00248{height:108.563437pt;}
.h0_c00248{height:1122.560000pt;}
.h1_c00248{height:1122.666667pt;}
.w2_c00248{width:793.759988pt;}
.w0_c00248{width:793.760000pt;}
.w1_c00248{width:794.000000pt;}
.x0_c00248{left:0.000000pt;}
.x1_c00248{left:47.999988pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f6cfdc243cfe6cd4a856fd2.woff')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_3d88f5e2d6e8f890a90ff66c.woff')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_3b39d7a3b16dbb51cbf7b7dc.woff')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:0.708008;font-style:normal;font-weight:normal;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_070a5d935a8da745c6d05ddd.woff')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.115234;font-style:normal;font-weight:normal;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_208b64e87d80be18ec5f6b67.woff')format("woff");}.ff5_c00249{font-family:ff5_c00249;line-height:1.115234;font-style: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;}
.ls0_c00249{letter-spacing:0.000000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00249{word-spacing:0.000000px;}
._2_c00249{margin-left:-5.472000px;}
._3_c00249{margin-left:-4.032000px;}
._1_c00249{margin-left:-1.008000px;}
._0_c00249{width:1.128000px;}
.fc1_c00249{color:rgb(196,89,17);}
.fc0_c00249{color:rgb(0,0,0);}
.fs0_c00249{font-size:72.000000px;}
.y0_c00249{bottom:0.000000px;}
.y1f_c00249{bottom:68.400000px;}
.y1e_c00249{bottom:104.220000px;}
.y1d_c00249{bottom:140.076000px;}
.y1c_c00249{bottom:175.890000px;}
.y1b_c00249{bottom:211.710000px;}
.y1a_c00249{bottom:253.470000px;}
.y19_c00249{bottom:295.410000px;}
.y18_c00249{bottom:337.170000px;}
.y17_c00249{bottom:373.035000px;}
.y16_c00249{bottom:408.675000px;}
.y15_c00249{bottom:444.495000px;}
.y14_c00249{bottom:480.315000px;}
.y13_c00249{bottom:516.135000px;}
.y12_c00249{bottom:551.955000px;}
.y11_c00249{bottom:587.775000px;}
.y10_c00249{bottom:629.745000px;}
.yf_c00249{bottom:671.325000px;}
.ye_c00249{bottom:707.145000px;}
.yd_c00249{bottom:742.965000px;}
.yc_c00249{bottom:778.785000px;}
.yb_c00249{bottom:814.605000px;}
.ya_c00249{bottom:850.425000px;}
.y9_c00249{bottom:886.290000px;}
.y8_c00249{bottom:922.110000px;}
.y7_c00249{bottom:957.930000px;}
.y6_c00249{bottom:993.750000px;}
.y5_c00249{bottom:1035.510000px;}
.y4_c00249{bottom:1084.650000px;}
.y3_c00249{bottom:1120.290000px;}
.y2_c00249{bottom:1156.140000px;}
.y1_c00249{bottom:1191.960000px;}
.h3_c00249{height:49.992188px;}
.h2_c00249{height:64.546875px;}
.h4_c00249{height:65.144531px;}
.h0_c00249{height:1262.880000px;}
.h1_c00249{height:1263.000000px;}
.w2_c00249{width:892.979987px;}
.w0_c00249{width:892.980000px;}
.w1_c00249{width:893.250000px;}
.x0_c00249{left:0.000000px;}
.x1_c00249{left:53.999987px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws0_c00249{word-spacing:0.000000pt;}
._2_c00249{margin-left:-4.864000pt;}
._3_c00249{margin-left:-3.584000pt;}
._1_c00249{margin-left:-0.896000pt;}
._0_c00249{width:1.002667pt;}
.fs0_c00249{font-size:64.000000pt;}
.y0_c00249{bottom:0.000000pt;}
.y1f_c00249{bottom:60.800000pt;}
.y1e_c00249{bottom:92.640000pt;}
.y1d_c00249{bottom:124.512000pt;}
.y1c_c00249{bottom:156.346667pt;}
.y1b_c00249{bottom:188.186667pt;}
.y1a_c00249{bottom:225.306667pt;}
.y19_c00249{bottom:262.586667pt;}
.y18_c00249{bottom:299.706667pt;}
.y17_c00249{bottom:331.586667pt;}
.y16_c00249{bottom:363.266667pt;}
.y15_c00249{bottom:395.106667pt;}
.y14_c00249{bottom:426.946667pt;}
.y13_c00249{bottom:458.786667pt;}
.y12_c00249{bottom:490.626667pt;}
.y11_c00249{bottom:522.466667pt;}
.y10_c00249{bottom:559.773333pt;}
.yf_c00249{bottom:596.733333pt;}
.ye_c00249{bottom:628.573333pt;}
.yd_c00249{bottom:660.413333pt;}
.yc_c00249{bottom:692.253333pt;}
.yb_c00249{bottom:724.093333pt;}
.ya_c00249{bottom:755.933333pt;}
.y9_c00249{bottom:787.813333pt;}
.y8_c00249{bottom:819.653333pt;}
.y7_c00249{bottom:851.493333pt;}
.y6_c00249{bottom:883.333333pt;}
.y5_c00249{bottom:920.453333pt;}
.y4_c00249{bottom:964.133333pt;}
.y3_c00249{bottom:995.813333pt;}
.y2_c00249{bottom:1027.680000pt;}
.y1_c00249{bottom:1059.520000pt;}
.h3_c00249{height:44.437500pt;}
.h2_c00249{height:57.375000pt;}
.h4_c00249{height:57.906250pt;}
.h0_c00249{height:1122.560000pt;}
.h1_c00249{height:1122.666667pt;}
.w2_c00249{width:793.759988pt;}
.w0_c00249{width:793.760000pt;}
.w1_c00249{width:794.000000pt;}
.x0_c00249{left:0.000000pt;}
.x1_c00249{left:47.999988pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61de35e8eb4cde880ec83dbe.woff')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00250;src:url('chunks/assets/font_3d88f5e2d6e8f890a90ff66c.woff')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_c190a2c778218b753eebaebb.woff')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:1.115234;font-style:normal;font-weight:normal;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_208b64e87d80be18ec5f6b67.woff')format("woff");}.ff4_c00250{font-family:ff4_c00250;line-height:1.115234;font-style: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;}
.ls1_c00250{letter-spacing:0.000000px;}
.ls0_c00250{letter-spacing:0.144000px;}
.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:-20.016000px;}
.ws1_c00250{word-spacing:0.000000px;}
._0_c00250{margin-left:-7.992000px;}
._3_c00250{margin-left:-2.448000px;}
._1_c00250{margin-left:-1.008000px;}
._2_c00250{width:1.200000px;}
.fc0_c00250{color:rgb(0,0,0);}
.fs0_c00250{font-size:72.000000px;}
.y0_c00250{bottom:0.000000px;}
.y1e_c00250{bottom:117.576000px;}
.y1d_c00250{bottom:153.390000px;}
.y1c_c00250{bottom:189.210000px;}
.y1b_c00250{bottom:224.850000px;}
.y1a_c00250{bottom:260.670000px;}
.y19_c00250{bottom:296.490000px;}
.y18_c00250{bottom:332.310000px;}
.y17_c00250{bottom:368.175000px;}
.y16_c00250{bottom:410.115000px;}
.y15_c00250{bottom:451.875000px;}
.y14_c00250{bottom:487.515000px;}
.y13_c00250{bottom:523.335000px;}
.y12_c00250{bottom:559.155000px;}
.y11_c00250{bottom:594.975000px;}
.y10_c00250{bottom:630.825000px;}
.yf_c00250{bottom:666.645000px;}
.ye_c00250{bottom:702.465000px;}
.yd_c00250{bottom:738.285000px;}
.yc_c00250{bottom:774.105000px;}
.yb_c00250{bottom:815.865000px;}
.ya_c00250{bottom:857.625000px;}
.y9_c00250{bottom:893.490000px;}
.y8_c00250{bottom:929.310000px;}
.y7_c00250{bottom:965.130000px;}
.y6_c00250{bottom:1000.950000px;}
.y5_c00250{bottom:1036.770000px;}
.y4_c00250{bottom:1072.590000px;}
.y3_c00250{bottom:1114.350000px;}
.y2_c00250{bottom:1156.140000px;}
.y1_c00250{bottom:1191.960000px;}
.h2_c00250{height:64.546875px;}
.h3_c00250{height:65.144531px;}
.h0_c00250{height:1262.880000px;}
.h1_c00250{height:1263.000000px;}
.w2_c00250{width:892.979987px;}
.w0_c00250{width:892.980000px;}
.w1_c00250{width:893.250000px;}
.x0_c00250{left:0.000000px;}
.x1_c00250{left:53.999987px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls1_c00250{letter-spacing:0.000000pt;}
.ls0_c00250{letter-spacing:0.128000pt;}
.ws0_c00250{word-spacing:-17.792000pt;}
.ws1_c00250{word-spacing:0.000000pt;}
._0_c00250{margin-left:-7.104000pt;}
._3_c00250{margin-left:-2.176000pt;}
._1_c00250{margin-left:-0.896000pt;}
._2_c00250{width:1.066667pt;}
.fs0_c00250{font-size:64.000000pt;}
.y0_c00250{bottom:0.000000pt;}
.y1e_c00250{bottom:104.512000pt;}
.y1d_c00250{bottom:136.346667pt;}
.y1c_c00250{bottom:168.186667pt;}
.y1b_c00250{bottom:199.866667pt;}
.y1a_c00250{bottom:231.706667pt;}
.y19_c00250{bottom:263.546667pt;}
.y18_c00250{bottom:295.386667pt;}
.y17_c00250{bottom:327.266667pt;}
.y16_c00250{bottom:364.546667pt;}
.y15_c00250{bottom:401.666667pt;}
.y14_c00250{bottom:433.346667pt;}
.y13_c00250{bottom:465.186667pt;}
.y12_c00250{bottom:497.026667pt;}
.y11_c00250{bottom:528.866667pt;}
.y10_c00250{bottom:560.733333pt;}
.yf_c00250{bottom:592.573333pt;}
.ye_c00250{bottom:624.413333pt;}
.yd_c00250{bottom:656.253333pt;}
.yc_c00250{bottom:688.093333pt;}
.yb_c00250{bottom:725.213333pt;}
.ya_c00250{bottom:762.333333pt;}
.y9_c00250{bottom:794.213333pt;}
.y8_c00250{bottom:826.053333pt;}
.y7_c00250{bottom:857.893333pt;}
.y6_c00250{bottom:889.733333pt;}
.y5_c00250{bottom:921.573333pt;}
.y4_c00250{bottom:953.413333pt;}
.y3_c00250{bottom:990.533333pt;}
.y2_c00250{bottom:1027.680000pt;}
.y1_c00250{bottom:1059.520000pt;}
.h2_c00250{height:57.375000pt;}
.h3_c00250{height:57.906250pt;}
.h0_c00250{height:1122.560000pt;}
.h1_c00250{height:1122.666667pt;}
.w2_c00250{width:793.759988pt;}
.w0_c00250{width:793.760000pt;}
.w1_c00250{width:794.000000pt;}
.x0_c00250{left:0.000000pt;}
.x1_c00250{left:47.999988pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_174c2d5b61f09f6b755d2a22.woff')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.115234;font-style:normal;font-weight:normal;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_208b64e87d80be18ec5f6b67.woff')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.115234;font-style:normal;font-weight:normal;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_8fdf6ec5eae0bbdf34424304.woff')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00251;src:url('chunks/assets/font_3d88f5e2d6e8f890a90ff66c.woff')format("woff");}.ff4_c00251{font-family:ff4_c00251;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.144000px;}
.ls1_c00251{letter-spacing:0.000000px;}
.ls0_c00251{letter-spacing:0.144000px;}
.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:-20.016000px;}
.ws1_c00251{word-spacing:-19.872000px;}
.ws2_c00251{word-spacing:0.000000px;}
._4_c00251{margin-left:-3.888000px;}
._6_c00251{margin-left:-2.172000px;}
._1_c00251{margin-left:-1.008000px;}
._3_c00251{width:1.008000px;}
._5_c00251{width:2.076000px;}
._2_c00251{width:12.240000px;}
._0_c00251{width:13.608000px;}
.fc0_c00251{color:rgb(0,0,0);}
.fs0_c00251{font-size:72.000000px;}
.y0_c00251{bottom:0.000000px;}
.y1f_c00251{bottom:87.660000px;}
.y1e_c00251{bottom:123.516000px;}
.y1d_c00251{bottom:159.330000px;}
.y1c_c00251{bottom:195.150000px;}
.y1b_c00251{bottom:230.970000px;}
.y1a_c00251{bottom:272.730000px;}
.y19_c00251{bottom:314.490000px;}
.y18_c00251{bottom:350.310000px;}
.y17_c00251{bottom:386.175000px;}
.y16_c00251{bottom:421.995000px;}
.y15_c00251{bottom:457.815000px;}
.y14_c00251{bottom:493.635000px;}
.y13_c00251{bottom:529.455000px;}
.y12_c00251{bottom:565.275000px;}
.y11_c00251{bottom:607.035000px;}
.y10_c00251{bottom:630.645000px;}
.yf_c00251{bottom:672.585000px;}
.ye_c00251{bottom:708.405000px;}
.yd_c00251{bottom:744.225000px;}
.yc_c00251{bottom:780.045000px;}
.yb_c00251{bottom:821.985000px;}
.ya_c00251{bottom:863.745000px;}
.y9_c00251{bottom:899.430000px;}
.y8_c00251{bottom:935.430000px;}
.y7_c00251{bottom:977.190000px;}
.y6_c00251{bottom:1018.950000px;}
.y5_c00251{bottom:1054.770000px;}
.y4_c00251{bottom:1090.590000px;}
.y3_c00251{bottom:1126.410000px;}
.y2_c00251{bottom:1168.200000px;}
.y1_c00251{bottom:1191.780000px;}
.h3_c00251{height:64.546875px;}
.h2_c00251{height:65.144531px;}
.h0_c00251{height:1262.880000px;}
.h1_c00251{height:1263.000000px;}
.w2_c00251{width:892.979987px;}
.w0_c00251{width:892.980000px;}
.w1_c00251{width:893.250000px;}
.x0_c00251{left:0.000000px;}
.x1_c00251{left:53.999987px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls2_c00251{letter-spacing:-0.128000pt;}
.ls1_c00251{letter-spacing:0.000000pt;}
.ls0_c00251{letter-spacing:0.128000pt;}
.ws0_c00251{word-spacing:-17.792000pt;}
.ws1_c00251{word-spacing:-17.664000pt;}
.ws2_c00251{word-spacing:0.000000pt;}
._4_c00251{margin-left:-3.456000pt;}
._6_c00251{margin-left:-1.930667pt;}
._1_c00251{margin-left:-0.896000pt;}
._3_c00251{width:0.896000pt;}
._5_c00251{width:1.845333pt;}
._2_c00251{width:10.880000pt;}
._0_c00251{width:12.096000pt;}
.fs0_c00251{font-size:64.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y1f_c00251{bottom:77.920000pt;}
.y1e_c00251{bottom:109.792000pt;}
.y1d_c00251{bottom:141.626667pt;}
.y1c_c00251{bottom:173.466667pt;}
.y1b_c00251{bottom:205.306667pt;}
.y1a_c00251{bottom:242.426667pt;}
.y19_c00251{bottom:279.546667pt;}
.y18_c00251{bottom:311.386667pt;}
.y17_c00251{bottom:343.266667pt;}
.y16_c00251{bottom:375.106667pt;}
.y15_c00251{bottom:406.946667pt;}
.y14_c00251{bottom:438.786667pt;}
.y13_c00251{bottom:470.626667pt;}
.y12_c00251{bottom:502.466667pt;}
.y11_c00251{bottom:539.586667pt;}
.y10_c00251{bottom:560.573333pt;}
.yf_c00251{bottom:597.853333pt;}
.ye_c00251{bottom:629.693333pt;}
.yd_c00251{bottom:661.533333pt;}
.yc_c00251{bottom:693.373333pt;}
.yb_c00251{bottom:730.653333pt;}
.ya_c00251{bottom:767.773333pt;}
.y9_c00251{bottom:799.493333pt;}
.y8_c00251{bottom:831.493333pt;}
.y7_c00251{bottom:868.613333pt;}
.y6_c00251{bottom:905.733333pt;}
.y5_c00251{bottom:937.573333pt;}
.y4_c00251{bottom:969.413333pt;}
.y3_c00251{bottom:1001.253333pt;}
.y2_c00251{bottom:1038.400000pt;}
.y1_c00251{bottom:1059.360000pt;}
.h3_c00251{height:57.375000pt;}
.h2_c00251{height:57.906250pt;}
.h0_c00251{height:1122.560000pt;}
.h1_c00251{height:1122.666667pt;}
.w2_c00251{width:793.759988pt;}
.w0_c00251{width:793.760000pt;}
.w1_c00251{width:794.000000pt;}
.x0_c00251{left:0.000000pt;}
.x1_c00251{left:47.999988pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d955e8f0d6138912b9eea6ff.woff')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.115234;font-style:normal;font-weight:normal;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_208b64e87d80be18ec5f6b67.woff')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.115234;font-style:normal;font-weight:normal;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_dce3aebdf8dc60fe46feaf66.woff')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_3d88f5e2d6e8f890a90ff66c.woff')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00252;src:url('chunks/assets/font_c6f7c6826caa3fa98c3c7d93.woff')format("woff");}.ff5_c00252{font-family:ff5_c00252;line-height:1.104492;font-style:normal;font-weight:normal;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_5ed36dae8a09423a938a894f.woff')format("woff");}.ff6_c00252{font-family:ff6_c00252;line-height:1.104492;font-style:normal;font-weight:normal;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_0b9068eebe38f764b0189b15.woff')format("woff");}.ff7_c00252{font-family:ff7_c00252;line-height:0.740234;font-style: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;}
.ls3_c00252{letter-spacing:-0.144000px;}
.ls2_c00252{letter-spacing:0.000000px;}
.ls1_c00252{letter-spacing:0.144000px;}
.ls0_c00252{letter-spacing:0.216000px;}
.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;}
}
.ws0_c00252{word-spacing:-30.024000px;}
.ws1_c00252{word-spacing:-19.872000px;}
.ws2_c00252{word-spacing:0.000000px;}
._3_c00252{margin-left:-7.848000px;}
._4_c00252{margin-left:-5.112000px;}
._2_c00252{margin-left:-3.744000px;}
._5_c00252{margin-left:-2.448000px;}
._0_c00252{margin-left:-1.296000px;}
._1_c00252{width:1.716000px;}
._6_c00252{width:38.088000px;}
.fc1_c00252{color:rgb(196,89,17);}
.fc0_c00252{color:rgb(0,0,0);}
.fs0_c00252{font-size:72.000000px;}
.fs1_c00252{font-size:108.000000px;}
.y0_c00252{bottom:0.000000px;}
.y1e_c00252{bottom:87.660000px;}
.y1d_c00252{bottom:123.516000px;}
.y1c_c00252{bottom:165.450000px;}
.y1b_c00252{bottom:207.210000px;}
.y1a_c00252{bottom:242.850000px;}
.y19_c00252{bottom:278.670000px;}
.y18_c00252{bottom:314.490000px;}
.y17_c00252{bottom:350.310000px;}
.y16_c00252{bottom:386.175000px;}
.y15_c00252{bottom:427.935000px;}
.y14_c00252{bottom:451.695000px;}
.y13_c00252{bottom:493.635000px;}
.y12_c00252{bottom:529.455000px;}
.y11_c00252{bottom:565.275000px;}
.y10_c00252{bottom:607.035000px;}
.yf_c00252{bottom:648.825000px;}
.ye_c00252{bottom:684.645000px;}
.yd_c00252{bottom:720.465000px;}
.yc_c00252{bottom:762.225000px;}
.yb_c00252{bottom:807.405000px;}
.ya_c00252{bottom:855.285000px;}
.y9_c00252{bottom:899.430000px;}
.y8_c00252{bottom:935.250000px;}
.y7_c00252{bottom:971.070000px;}
.y6_c00252{bottom:1006.890000px;}
.y5_c00252{bottom:1042.710000px;}
.y4_c00252{bottom:1078.530000px;}
.y3_c00252{bottom:1114.350000px;}
.y2_c00252{bottom:1150.200000px;}
.y1_c00252{bottom:1191.960000px;}
.h3_c00252{height:64.546875px;}
.h2_c00252{height:65.144531px;}
.h5_c00252{height:78.626953px;}
.h4_c00252{height:96.556641px;}
.h0_c00252{height:1262.880000px;}
.h1_c00252{height:1263.000000px;}
.w2_c00252{width:892.979987px;}
.w0_c00252{width:892.980000px;}
.w1_c00252{width:893.250000px;}
.x0_c00252{left:0.000000px;}
.x1_c00252{left:53.999987px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls3_c00252{letter-spacing:-0.128000pt;}
.ls2_c00252{letter-spacing:0.000000pt;}
.ls1_c00252{letter-spacing:0.128000pt;}
.ls0_c00252{letter-spacing:0.192000pt;}
.ws0_c00252{word-spacing:-26.688000pt;}
.ws1_c00252{word-spacing:-17.664000pt;}
.ws2_c00252{word-spacing:0.000000pt;}
._3_c00252{margin-left:-6.976000pt;}
._4_c00252{margin-left:-4.544000pt;}
._2_c00252{margin-left:-3.328000pt;}
._5_c00252{margin-left:-2.176000pt;}
._0_c00252{margin-left:-1.152000pt;}
._1_c00252{width:1.525333pt;}
._6_c00252{width:33.856000pt;}
.fs0_c00252{font-size:64.000000pt;}
.fs1_c00252{font-size:96.000000pt;}
.y0_c00252{bottom:0.000000pt;}
.y1e_c00252{bottom:77.920000pt;}
.y1d_c00252{bottom:109.792000pt;}
.y1c_c00252{bottom:147.066667pt;}
.y1b_c00252{bottom:184.186667pt;}
.y1a_c00252{bottom:215.866667pt;}
.y19_c00252{bottom:247.706667pt;}
.y18_c00252{bottom:279.546667pt;}
.y17_c00252{bottom:311.386667pt;}
.y16_c00252{bottom:343.266667pt;}
.y15_c00252{bottom:380.386667pt;}
.y14_c00252{bottom:401.506667pt;}
.y13_c00252{bottom:438.786667pt;}
.y12_c00252{bottom:470.626667pt;}
.y11_c00252{bottom:502.466667pt;}
.y10_c00252{bottom:539.586667pt;}
.yf_c00252{bottom:576.733333pt;}
.ye_c00252{bottom:608.573333pt;}
.yd_c00252{bottom:640.413333pt;}
.yc_c00252{bottom:677.533333pt;}
.yb_c00252{bottom:717.693333pt;}
.ya_c00252{bottom:760.253333pt;}
.y9_c00252{bottom:799.493333pt;}
.y8_c00252{bottom:831.333333pt;}
.y7_c00252{bottom:863.173333pt;}
.y6_c00252{bottom:895.013333pt;}
.y5_c00252{bottom:926.853333pt;}
.y4_c00252{bottom:958.693333pt;}
.y3_c00252{bottom:990.533333pt;}
.y2_c00252{bottom:1022.400000pt;}
.y1_c00252{bottom:1059.520000pt;}
.h3_c00252{height:57.375000pt;}
.h2_c00252{height:57.906250pt;}
.h5_c00252{height:69.890625pt;}
.h4_c00252{height:85.828125pt;}
.h0_c00252{height:1122.560000pt;}
.h1_c00252{height:1122.666667pt;}
.w2_c00252{width:793.759988pt;}
.w0_c00252{width:793.760000pt;}
.w1_c00252{width:794.000000pt;}
.x0_c00252{left:0.000000pt;}
.x1_c00252{left:47.999988pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a235a97c1eddfe5cfe2de89.woff')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.115234;font-style:normal;font-weight:normal;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_208b64e87d80be18ec5f6b67.woff')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.115234;font-style:normal;font-weight:normal;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_a120d6abe16f33bd8c13ab55.woff')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00253;src:url('chunks/assets/font_3d88f5e2d6e8f890a90ff66c.woff')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00253;src:url('chunks/assets/font_7ecc20c6646e692bb8a71ac0.woff')format("woff");}.ff5_c00253{font-family:ff5_c00253;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00253;src:url('chunks/assets/font_5ed36dae8a09423a938a894f.woff')format("woff");}.ff6_c00253{font-family:ff6_c00253;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls2_c00253{letter-spacing:-0.144000px;}
.ls1_c00253{letter-spacing:0.000000px;}
.ls0_c00253{letter-spacing:0.144000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00253{word-spacing:-19.872000px;}
.ws1_c00253{word-spacing:0.000000px;}
._4_c00253{margin-left:-3.888000px;}
._2_c00253{margin-left:-2.448000px;}
._0_c00253{margin-left:-1.008000px;}
._1_c00253{width:1.092000px;}
._3_c00253{width:2.364000px;}
.fc1_c00253{color:rgb(196,89,17);}
.fc0_c00253{color:rgb(0,0,0);}
.fs0_c00253{font-size:72.000000px;}
.fs1_c00253{font-size:108.000000px;}
.y0_c00253{bottom:0.000000px;}
.y1e_c00253{bottom:87.660000px;}
.y1d_c00253{bottom:123.516000px;}
.y1c_c00253{bottom:159.330000px;}
.y1b_c00253{bottom:201.090000px;}
.y1a_c00253{bottom:242.850000px;}
.y19_c00253{bottom:278.670000px;}
.y18_c00253{bottom:314.490000px;}
.y17_c00253{bottom:350.310000px;}
.y16_c00253{bottom:386.175000px;}
.y15_c00253{bottom:421.815000px;}
.y14_c00253{bottom:457.635000px;}
.y13_c00253{bottom:493.635000px;}
.y12_c00253{bottom:535.395000px;}
.y11_c00253{bottom:577.155000px;}
.y10_c00253{bottom:612.975000px;}
.yf_c00253{bottom:648.825000px;}
.ye_c00253{bottom:690.585000px;}
.yd_c00253{bottom:732.345000px;}
.yc_c00253{bottom:768.165000px;}
.yb_c00253{bottom:803.985000px;}
.ya_c00253{bottom:839.805000px;}
.y9_c00253{bottom:881.565000px;}
.y8_c00253{bottom:923.370000px;}
.y7_c00253{bottom:962.610000px;}
.y6_c00253{bottom:1006.890000px;}
.y5_c00253{bottom:1042.710000px;}
.y4_c00253{bottom:1078.530000px;}
.y3_c00253{bottom:1114.350000px;}
.y2_c00253{bottom:1150.200000px;}
.y1_c00253{bottom:1191.960000px;}
.h3_c00253{height:64.546875px;}
.h2_c00253{height:65.144531px;}
.h4_c00253{height:96.556641px;}
.h0_c00253{height:1262.880000px;}
.h1_c00253{height:1263.000000px;}
.w2_c00253{width:892.979987px;}
.w0_c00253{width:892.980000px;}
.w1_c00253{width:893.250000px;}
.x0_c00253{left:0.000000px;}
.x1_c00253{left:53.999987px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls2_c00253{letter-spacing:-0.128000pt;}
.ls1_c00253{letter-spacing:0.000000pt;}
.ls0_c00253{letter-spacing:0.128000pt;}
.ws0_c00253{word-spacing:-17.664000pt;}
.ws1_c00253{word-spacing:0.000000pt;}
._4_c00253{margin-left:-3.456000pt;}
._2_c00253{margin-left:-2.176000pt;}
._0_c00253{margin-left:-0.896000pt;}
._1_c00253{width:0.970667pt;}
._3_c00253{width:2.101333pt;}
.fs0_c00253{font-size:64.000000pt;}
.fs1_c00253{font-size:96.000000pt;}
.y0_c00253{bottom:0.000000pt;}
.y1e_c00253{bottom:77.920000pt;}
.y1d_c00253{bottom:109.792000pt;}
.y1c_c00253{bottom:141.626667pt;}
.y1b_c00253{bottom:178.746667pt;}
.y1a_c00253{bottom:215.866667pt;}
.y19_c00253{bottom:247.706667pt;}
.y18_c00253{bottom:279.546667pt;}
.y17_c00253{bottom:311.386667pt;}
.y16_c00253{bottom:343.266667pt;}
.y15_c00253{bottom:374.946667pt;}
.y14_c00253{bottom:406.786667pt;}
.y13_c00253{bottom:438.786667pt;}
.y12_c00253{bottom:475.906667pt;}
.y11_c00253{bottom:513.026667pt;}
.y10_c00253{bottom:544.866667pt;}
.yf_c00253{bottom:576.733333pt;}
.ye_c00253{bottom:613.853333pt;}
.yd_c00253{bottom:650.973333pt;}
.yc_c00253{bottom:682.813333pt;}
.yb_c00253{bottom:714.653333pt;}
.ya_c00253{bottom:746.493333pt;}
.y9_c00253{bottom:783.613333pt;}
.y8_c00253{bottom:820.773333pt;}
.y7_c00253{bottom:855.653333pt;}
.y6_c00253{bottom:895.013333pt;}
.y5_c00253{bottom:926.853333pt;}
.y4_c00253{bottom:958.693333pt;}
.y3_c00253{bottom:990.533333pt;}
.y2_c00253{bottom:1022.400000pt;}
.y1_c00253{bottom:1059.520000pt;}
.h3_c00253{height:57.375000pt;}
.h2_c00253{height:57.906250pt;}
.h4_c00253{height:85.828125pt;}
.h0_c00253{height:1122.560000pt;}
.h1_c00253{height:1122.666667pt;}
.w2_c00253{width:793.759988pt;}
.w0_c00253{width:793.760000pt;}
.w1_c00253{width:794.000000pt;}
.x0_c00253{left:0.000000pt;}
.x1_c00253{left:47.999988pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_067df311cc210a35f809ea54.woff')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00254;src:url('chunks/assets/font_3d88f5e2d6e8f890a90ff66c.woff')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00254;src:url('chunks/assets/font_34b211adc5d80f64f7ebd8da.woff')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.115234;font-style:normal;font-weight:normal;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_208b64e87d80be18ec5f6b67.woff')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:1.115234;font-style:normal;font-weight:normal;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_7bce125388f9edf69a856a4e.woff')format("woff");}.ff5_c00254{font-family:ff5_c00254;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00254;src:url('chunks/assets/font_5ed36dae8a09423a938a894f.woff')format("woff");}.ff6_c00254{font-family:ff6_c00254;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls3_c00254{letter-spacing:-0.144000px;}
.ls2_c00254{letter-spacing:0.000000px;}
.ls0_c00254{letter-spacing:0.144000px;}
.ls1_c00254{letter-spacing:0.216000px;}
.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;}
}
.ws2_c00254{word-spacing:-30.024000px;}
.ws1_c00254{word-spacing:-20.016000px;}
.ws0_c00254{word-spacing:-19.872000px;}
.ws3_c00254{word-spacing:0.000000px;}
._2_c00254{margin-left:-5.904000px;}
._3_c00254{margin-left:-4.104000px;}
._1_c00254{margin-left:-1.152000px;}
._0_c00254{width:1.368000px;}
._4_c00254{width:2.808000px;}
._7_c00254{width:24.696000px;}
._5_c00254{width:25.848000px;}
._6_c00254{width:27.000000px;}
.fc1_c00254{color:rgb(196,89,17);}
.fc0_c00254{color:rgb(0,0,0);}
.fs0_c00254{font-size:72.000000px;}
.fs1_c00254{font-size:108.000000px;}
.y0_c00254{bottom:0.000000px;}
.y1f_c00254{bottom:69.840000px;}
.y1e_c00254{bottom:105.660000px;}
.y1d_c00254{bottom:141.516000px;}
.y1c_c00254{bottom:177.330000px;}
.y1b_c00254{bottom:213.150000px;}
.y1a_c00254{bottom:254.910000px;}
.y19_c00254{bottom:296.670000px;}
.y18_c00254{bottom:332.490000px;}
.y17_c00254{bottom:368.535000px;}
.y16_c00254{bottom:410.115000px;}
.y15_c00254{bottom:433.875000px;}
.y14_c00254{bottom:475.815000px;}
.y13_c00254{bottom:511.635000px;}
.y12_c00254{bottom:547.455000px;}
.y11_c00254{bottom:583.275000px;}
.y10_c00254{bottom:625.065000px;}
.yf_c00254{bottom:648.645000px;}
.ye_c00254{bottom:694.005000px;}
.yd_c00254{bottom:741.705000px;}
.yc_c00254{bottom:785.985000px;}
.yb_c00254{bottom:821.805000px;}
.ya_c00254{bottom:857.805000px;}
.y9_c00254{bottom:899.610000px;}
.y8_c00254{bottom:941.370000px;}
.y7_c00254{bottom:977.190000px;}
.y6_c00254{bottom:1013.010000px;}
.y5_c00254{bottom:1054.770000px;}
.y4_c00254{bottom:1078.350000px;}
.y3_c00254{bottom:1120.290000px;}
.y2_c00254{bottom:1156.140000px;}
.y1_c00254{bottom:1191.960000px;}
.h2_c00254{height:64.546875px;}
.h3_c00254{height:65.144531px;}
.h4_c00254{height:96.556641px;}
.h0_c00254{height:1262.880000px;}
.h1_c00254{height:1263.000000px;}
.w2_c00254{width:892.979987px;}
.w0_c00254{width:892.980000px;}
.w1_c00254{width:893.250000px;}
.x0_c00254{left:0.000000px;}
.x1_c00254{left:53.999987px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls3_c00254{letter-spacing:-0.128000pt;}
.ls2_c00254{letter-spacing:0.000000pt;}
.ls0_c00254{letter-spacing:0.128000pt;}
.ls1_c00254{letter-spacing:0.192000pt;}
.ws2_c00254{word-spacing:-26.688000pt;}
.ws1_c00254{word-spacing:-17.792000pt;}
.ws0_c00254{word-spacing:-17.664000pt;}
.ws3_c00254{word-spacing:0.000000pt;}
._2_c00254{margin-left:-5.248000pt;}
._3_c00254{margin-left:-3.648000pt;}
._1_c00254{margin-left:-1.024000pt;}
._0_c00254{width:1.216000pt;}
._4_c00254{width:2.496000pt;}
._7_c00254{width:21.952000pt;}
._5_c00254{width:22.976000pt;}
._6_c00254{width:24.000000pt;}
.fs0_c00254{font-size:64.000000pt;}
.fs1_c00254{font-size:96.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y1f_c00254{bottom:62.080000pt;}
.y1e_c00254{bottom:93.920000pt;}
.y1d_c00254{bottom:125.792000pt;}
.y1c_c00254{bottom:157.626667pt;}
.y1b_c00254{bottom:189.466667pt;}
.y1a_c00254{bottom:226.586667pt;}
.y19_c00254{bottom:263.706667pt;}
.y18_c00254{bottom:295.546667pt;}
.y17_c00254{bottom:327.586667pt;}
.y16_c00254{bottom:364.546667pt;}
.y15_c00254{bottom:385.666667pt;}
.y14_c00254{bottom:422.946667pt;}
.y13_c00254{bottom:454.786667pt;}
.y12_c00254{bottom:486.626667pt;}
.y11_c00254{bottom:518.466667pt;}
.y10_c00254{bottom:555.613333pt;}
.yf_c00254{bottom:576.573333pt;}
.ye_c00254{bottom:616.893333pt;}
.yd_c00254{bottom:659.293333pt;}
.yc_c00254{bottom:698.653333pt;}
.yb_c00254{bottom:730.493333pt;}
.ya_c00254{bottom:762.493333pt;}
.y9_c00254{bottom:799.653333pt;}
.y8_c00254{bottom:836.773333pt;}
.y7_c00254{bottom:868.613333pt;}
.y6_c00254{bottom:900.453333pt;}
.y5_c00254{bottom:937.573333pt;}
.y4_c00254{bottom:958.533333pt;}
.y3_c00254{bottom:995.813333pt;}
.y2_c00254{bottom:1027.680000pt;}
.y1_c00254{bottom:1059.520000pt;}
.h2_c00254{height:57.375000pt;}
.h3_c00254{height:57.906250pt;}
.h4_c00254{height:85.828125pt;}
.h0_c00254{height:1122.560000pt;}
.h1_c00254{height:1122.666667pt;}
.w2_c00254{width:793.759988pt;}
.w0_c00254{width:793.760000pt;}
.w1_c00254{width:794.000000pt;}
.x0_c00254{left:0.000000pt;}
.x1_c00254{left:47.999988pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_505d68d5586a5f55ce84e091.woff')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.115234;font-style:normal;font-weight:normal;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_208b64e87d80be18ec5f6b67.woff')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.115234;font-style:normal;font-weight:normal;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_c080b2cd6b3be1509c291ccd.woff')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00255;src:url('chunks/assets/font_3d88f5e2d6e8f890a90ff66c.woff')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00255;src:url('chunks/assets/font_da1b82cc156714b4c43bfe0c.woff')format("woff");}.ff5_c00255{font-family:ff5_c00255;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00255;src:url('chunks/assets/font_5ed36dae8a09423a938a894f.woff')format("woff");}.ff6_c00255{font-family:ff6_c00255;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00255{letter-spacing:-0.144000px;}
.ls2_c00255{letter-spacing:0.000000px;}
.ls0_c00255{letter-spacing:0.144000px;}
.ls1_c00255{letter-spacing:0.216000px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00255{word-spacing:-30.024000px;}
.ws0_c00255{word-spacing:-20.016000px;}
.ws1_c00255{word-spacing:-19.872000px;}
.ws3_c00255{word-spacing:0.000000px;}
._1_c00255{margin-left:-4.752000px;}
._2_c00255{margin-left:-1.152000px;}
._0_c00255{width:1.284000px;}
._3_c00255{width:2.964000px;}
.fc1_c00255{color:rgb(196,89,17);}
.fc0_c00255{color:rgb(0,0,0);}
.fs0_c00255{font-size:72.000000px;}
.fs1_c00255{font-size:108.000000px;}
.y0_c00255{bottom:0.000000px;}
.y1e_c00255{bottom:87.660000px;}
.y1d_c00255{bottom:123.516000px;}
.y1c_c00255{bottom:159.330000px;}
.y1b_c00255{bottom:195.150000px;}
.y1a_c00255{bottom:230.970000px;}
.y19_c00255{bottom:272.730000px;}
.y18_c00255{bottom:296.490000px;}
.y17_c00255{bottom:338.430000px;}
.y16_c00255{bottom:374.115000px;}
.y15_c00255{bottom:409.935000px;}
.y14_c00255{bottom:445.935000px;}
.y13_c00255{bottom:487.695000px;}
.y12_c00255{bottom:529.455000px;}
.y11_c00255{bottom:565.275000px;}
.y10_c00255{bottom:601.095000px;}
.yf_c00255{bottom:636.765000px;}
.ye_c00255{bottom:678.705000px;}
.yd_c00255{bottom:720.465000px;}
.yc_c00255{bottom:759.705000px;}
.yb_c00255{bottom:807.405000px;}
.ya_c00255{bottom:851.685000px;}
.y9_c00255{bottom:887.550000px;}
.y8_c00255{bottom:923.370000px;}
.y7_c00255{bottom:965.130000px;}
.y6_c00255{bottom:1006.890000px;}
.y5_c00255{bottom:1042.710000px;}
.y4_c00255{bottom:1078.530000px;}
.y3_c00255{bottom:1114.350000px;}
.y2_c00255{bottom:1150.200000px;}
.y1_c00255{bottom:1191.960000px;}
.h3_c00255{height:64.546875px;}
.h2_c00255{height:65.144531px;}
.h4_c00255{height:96.556641px;}
.h0_c00255{height:1262.880000px;}
.h1_c00255{height:1263.000000px;}
.w2_c00255{width:892.979987px;}
.w0_c00255{width:892.980000px;}
.w1_c00255{width:893.250000px;}
.x0_c00255{left:0.000000px;}
.x1_c00255{left:53.999987px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls3_c00255{letter-spacing:-0.128000pt;}
.ls2_c00255{letter-spacing:0.000000pt;}
.ls0_c00255{letter-spacing:0.128000pt;}
.ls1_c00255{letter-spacing:0.192000pt;}
.ws2_c00255{word-spacing:-26.688000pt;}
.ws0_c00255{word-spacing:-17.792000pt;}
.ws1_c00255{word-spacing:-17.664000pt;}
.ws3_c00255{word-spacing:0.000000pt;}
._1_c00255{margin-left:-4.224000pt;}
._2_c00255{margin-left:-1.024000pt;}
._0_c00255{width:1.141333pt;}
._3_c00255{width:2.634667pt;}
.fs0_c00255{font-size:64.000000pt;}
.fs1_c00255{font-size:96.000000pt;}
.y0_c00255{bottom:0.000000pt;}
.y1e_c00255{bottom:77.920000pt;}
.y1d_c00255{bottom:109.792000pt;}
.y1c_c00255{bottom:141.626667pt;}
.y1b_c00255{bottom:173.466667pt;}
.y1a_c00255{bottom:205.306667pt;}
.y19_c00255{bottom:242.426667pt;}
.y18_c00255{bottom:263.546667pt;}
.y17_c00255{bottom:300.826667pt;}
.y16_c00255{bottom:332.546667pt;}
.y15_c00255{bottom:364.386667pt;}
.y14_c00255{bottom:396.386667pt;}
.y13_c00255{bottom:433.506667pt;}
.y12_c00255{bottom:470.626667pt;}
.y11_c00255{bottom:502.466667pt;}
.y10_c00255{bottom:534.306667pt;}
.yf_c00255{bottom:566.013333pt;}
.ye_c00255{bottom:603.293333pt;}
.yd_c00255{bottom:640.413333pt;}
.yc_c00255{bottom:675.293333pt;}
.yb_c00255{bottom:717.693333pt;}
.ya_c00255{bottom:757.053333pt;}
.y9_c00255{bottom:788.933333pt;}
.y8_c00255{bottom:820.773333pt;}
.y7_c00255{bottom:857.893333pt;}
.y6_c00255{bottom:895.013333pt;}
.y5_c00255{bottom:926.853333pt;}
.y4_c00255{bottom:958.693333pt;}
.y3_c00255{bottom:990.533333pt;}
.y2_c00255{bottom:1022.400000pt;}
.y1_c00255{bottom:1059.520000pt;}
.h3_c00255{height:57.375000pt;}
.h2_c00255{height:57.906250pt;}
.h4_c00255{height:85.828125pt;}
.h0_c00255{height:1122.560000pt;}
.h1_c00255{height:1122.666667pt;}
.w2_c00255{width:793.759988pt;}
.w0_c00255{width:793.760000pt;}
.w1_c00255{width:794.000000pt;}
.x0_c00255{left:0.000000pt;}
.x1_c00255{left:47.999988pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24d2c49cc04a10041f1d6df4.woff')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_5ed36dae8a09423a938a894f.woff')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00256;src:url('chunks/assets/font_7a61186965e91247a034cbbb.woff')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.115234;font-style:normal;font-weight:normal;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_208b64e87d80be18ec5f6b67.woff')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:1.115234;font-style:normal;font-weight:normal;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_a48c907c042f483d50ec4172.woff')format("woff");}.ff5_c00256{font-family:ff5_c00256;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00256;src:url('chunks/assets/font_3d88f5e2d6e8f890a90ff66c.woff')format("woff");}.ff6_c00256{font-family:ff6_c00256;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls2_c00256{letter-spacing:0.000000px;}
.ls0_c00256{letter-spacing:0.144000px;}
.ls1_c00256{letter-spacing:0.216000px;}
.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;}
}
.ws1_c00256{word-spacing:-30.024000px;}
.ws0_c00256{word-spacing:-20.016000px;}
.ws2_c00256{word-spacing:0.000000px;}
._0_c00256{margin-left:-1.008000px;}
._1_c00256{width:1.524000px;}
.fc1_c00256{color:rgb(0,0,0);}
.fc0_c00256{color:rgb(196,89,17);}
.fs1_c00256{font-size:72.000000px;}
.fs0_c00256{font-size:108.000000px;}
.y0_c00256{bottom:0.000000px;}
.y1d_c00256{bottom:87.660000px;}
.y1c_c00256{bottom:123.516000px;}
.y1b_c00256{bottom:159.330000px;}
.y1a_c00256{bottom:195.150000px;}
.y19_c00256{bottom:230.970000px;}
.y18_c00256{bottom:266.790000px;}
.y17_c00256{bottom:308.550000px;}
.y16_c00256{bottom:350.310000px;}
.y15_c00256{bottom:386.175000px;}
.y14_c00256{bottom:421.995000px;}
.y13_c00256{bottom:457.815000px;}
.y12_c00256{bottom:499.575000px;}
.y11_c00256{bottom:544.935000px;}
.y10_c00256{bottom:598.575000px;}
.yf_c00256{bottom:642.885000px;}
.ye_c00256{bottom:678.705000px;}
.yd_c00256{bottom:714.525000px;}
.yc_c00256{bottom:750.165000px;}
.yb_c00256{bottom:786.165000px;}
.ya_c00256{bottom:827.925000px;}
.y9_c00256{bottom:869.685000px;}
.y8_c00256{bottom:905.550000px;}
.y7_c00256{bottom:941.370000px;}
.y6_c00256{bottom:977.190000px;}
.y5_c00256{bottom:1012.830000px;}
.y4_c00256{bottom:1048.830000px;}
.y3_c00256{bottom:1090.590000px;}
.y2_c00256{bottom:1135.770000px;}
.y1_c00256{bottom:1183.500000px;}
.h4_c00256{height:64.546875px;}
.h3_c00256{height:65.144531px;}
.h2_c00256{height:96.556641px;}
.h0_c00256{height:1262.880000px;}
.h1_c00256{height:1263.000000px;}
.w2_c00256{width:892.979987px;}
.w0_c00256{width:892.980000px;}
.w1_c00256{width:893.250000px;}
.x0_c00256{left:0.000000px;}
.x1_c00256{left:53.999987px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls2_c00256{letter-spacing:0.000000pt;}
.ls0_c00256{letter-spacing:0.128000pt;}
.ls1_c00256{letter-spacing:0.192000pt;}
.ws1_c00256{word-spacing:-26.688000pt;}
.ws0_c00256{word-spacing:-17.792000pt;}
.ws2_c00256{word-spacing:0.000000pt;}
._0_c00256{margin-left:-0.896000pt;}
._1_c00256{width:1.354667pt;}
.fs1_c00256{font-size:64.000000pt;}
.fs0_c00256{font-size:96.000000pt;}
.y0_c00256{bottom:0.000000pt;}
.y1d_c00256{bottom:77.920000pt;}
.y1c_c00256{bottom:109.792000pt;}
.y1b_c00256{bottom:141.626667pt;}
.y1a_c00256{bottom:173.466667pt;}
.y19_c00256{bottom:205.306667pt;}
.y18_c00256{bottom:237.146667pt;}
.y17_c00256{bottom:274.266667pt;}
.y16_c00256{bottom:311.386667pt;}
.y15_c00256{bottom:343.266667pt;}
.y14_c00256{bottom:375.106667pt;}
.y13_c00256{bottom:406.946667pt;}
.y12_c00256{bottom:444.066667pt;}
.y11_c00256{bottom:484.386667pt;}
.y10_c00256{bottom:532.066667pt;}
.yf_c00256{bottom:571.453333pt;}
.ye_c00256{bottom:603.293333pt;}
.yd_c00256{bottom:635.133333pt;}
.yc_c00256{bottom:666.813333pt;}
.yb_c00256{bottom:698.813333pt;}
.ya_c00256{bottom:735.933333pt;}
.y9_c00256{bottom:773.053333pt;}
.y8_c00256{bottom:804.933333pt;}
.y7_c00256{bottom:836.773333pt;}
.y6_c00256{bottom:868.613333pt;}
.y5_c00256{bottom:900.293333pt;}
.y4_c00256{bottom:932.293333pt;}
.y3_c00256{bottom:969.413333pt;}
.y2_c00256{bottom:1009.573333pt;}
.y1_c00256{bottom:1052.000000pt;}
.h4_c00256{height:57.375000pt;}
.h3_c00256{height:57.906250pt;}
.h2_c00256{height:85.828125pt;}
.h0_c00256{height:1122.560000pt;}
.h1_c00256{height:1122.666667pt;}
.w2_c00256{width:793.759988pt;}
.w0_c00256{width:793.760000pt;}
.w1_c00256{width:794.000000pt;}
.x0_c00256{left:0.000000pt;}
.x1_c00256{left:47.999988pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8355123a14ff508a0d9fc51a.woff')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_5ed36dae8a09423a938a894f.woff')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_527f3a88278db4eb105f1689.woff')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.115234;font-style:normal;font-weight:normal;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_208b64e87d80be18ec5f6b67.woff')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:1.115234;font-style:normal;font-weight:normal;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_d8a3166c180bedb188c74105.woff')format("woff");}.ff5_c00257{font-family:ff5_c00257;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00257;src:url('chunks/assets/font_3d88f5e2d6e8f890a90ff66c.woff')format("woff");}.ff6_c00257{font-family:ff6_c00257;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00257{letter-spacing:0.000000px;}
.ls1_c00257{letter-spacing:0.120000px;}
.ls0_c00257{letter-spacing:0.144000px;}
.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.000000px;}
._2_c00257{margin-left:-5.904000px;}
._0_c00257{margin-left:-4.464000px;}
._3_c00257{margin-left:-1.224000px;}
._1_c00257{width:1.680000px;}
.fc1_c00257{color:rgb(0,0,0);}
.fc0_c00257{color:rgb(196,89,17);}
.fs1_c00257{font-size:72.000000px;}
.fs0_c00257{font-size:108.000000px;}
.y0_c00257{bottom:0.000000px;}
.y1e_c00257{bottom:87.660000px;}
.y1d_c00257{bottom:123.516000px;}
.y1c_c00257{bottom:159.330000px;}
.y1b_c00257{bottom:195.150000px;}
.y1a_c00257{bottom:230.970000px;}
.y19_c00257{bottom:266.790000px;}
.y18_c00257{bottom:302.610000px;}
.y17_c00257{bottom:338.430000px;}
.y16_c00257{bottom:374.115000px;}
.y15_c00257{bottom:409.935000px;}
.y14_c00257{bottom:445.755000px;}
.y13_c00257{bottom:481.575000px;}
.y12_c00257{bottom:517.395000px;}
.y11_c00257{bottom:553.215000px;}
.y10_c00257{bottom:589.035000px;}
.yf_c00257{bottom:630.825000px;}
.ye_c00257{bottom:672.585000px;}
.yd_c00257{bottom:708.405000px;}
.yc_c00257{bottom:744.225000px;}
.yb_c00257{bottom:780.045000px;}
.ya_c00257{bottom:821.985000px;}
.y9_c00257{bottom:863.745000px;}
.y8_c00257{bottom:899.430000px;}
.y7_c00257{bottom:935.250000px;}
.y6_c00257{bottom:971.070000px;}
.y5_c00257{bottom:1006.890000px;}
.y4_c00257{bottom:1042.710000px;}
.y3_c00257{bottom:1084.650000px;}
.y2_c00257{bottom:1129.830000px;}
.y1_c00257{bottom:1183.500000px;}
.h4_c00257{height:64.546875px;}
.h3_c00257{height:65.144531px;}
.h2_c00257{height:96.556641px;}
.h0_c00257{height:1262.880000px;}
.h1_c00257{height:1263.000000px;}
.w2_c00257{width:892.979987px;}
.w0_c00257{width:892.980000px;}
.w1_c00257{width:893.250000px;}
.x0_c00257{left:0.000000px;}
.x1_c00257{left:53.999987px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls2_c00257{letter-spacing:0.000000pt;}
.ls1_c00257{letter-spacing:0.106667pt;}
.ls0_c00257{letter-spacing:0.128000pt;}
.ws0_c00257{word-spacing:0.000000pt;}
._2_c00257{margin-left:-5.248000pt;}
._0_c00257{margin-left:-3.968000pt;}
._3_c00257{margin-left:-1.088000pt;}
._1_c00257{width:1.493333pt;}
.fs1_c00257{font-size:64.000000pt;}
.fs0_c00257{font-size:96.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y1e_c00257{bottom:77.920000pt;}
.y1d_c00257{bottom:109.792000pt;}
.y1c_c00257{bottom:141.626667pt;}
.y1b_c00257{bottom:173.466667pt;}
.y1a_c00257{bottom:205.306667pt;}
.y19_c00257{bottom:237.146667pt;}
.y18_c00257{bottom:268.986667pt;}
.y17_c00257{bottom:300.826667pt;}
.y16_c00257{bottom:332.546667pt;}
.y15_c00257{bottom:364.386667pt;}
.y14_c00257{bottom:396.226667pt;}
.y13_c00257{bottom:428.066667pt;}
.y12_c00257{bottom:459.906667pt;}
.y11_c00257{bottom:491.746667pt;}
.y10_c00257{bottom:523.586667pt;}
.yf_c00257{bottom:560.733333pt;}
.ye_c00257{bottom:597.853333pt;}
.yd_c00257{bottom:629.693333pt;}
.yc_c00257{bottom:661.533333pt;}
.yb_c00257{bottom:693.373333pt;}
.ya_c00257{bottom:730.653333pt;}
.y9_c00257{bottom:767.773333pt;}
.y8_c00257{bottom:799.493333pt;}
.y7_c00257{bottom:831.333333pt;}
.y6_c00257{bottom:863.173333pt;}
.y5_c00257{bottom:895.013333pt;}
.y4_c00257{bottom:926.853333pt;}
.y3_c00257{bottom:964.133333pt;}
.y2_c00257{bottom:1004.293333pt;}
.y1_c00257{bottom:1052.000000pt;}
.h4_c00257{height:57.375000pt;}
.h3_c00257{height:57.906250pt;}
.h2_c00257{height:85.828125pt;}
.h0_c00257{height:1122.560000pt;}
.h1_c00257{height:1122.666667pt;}
.w2_c00257{width:793.759988pt;}
.w0_c00257{width:793.760000pt;}
.w1_c00257{width:794.000000pt;}
.x0_c00257{left:0.000000pt;}
.x1_c00257{left:47.999988pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00258{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
}
.y0_c00258{bottom:0.000000px;}
.h0_c00258{height:810.000000px;}
.w0_c00258{width:1440.000000px;}
.x0_c00258{left:0.000000px;}
@media print{
.y0_c00258{bottom:0.000000pt;}
.h0_c00258{height:720.000000pt;}
.w0_c00258{width:1280.000000pt;}
.x0_c00258{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_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;}
.sc__c00259{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
}
.y0_c00259{bottom:0.000000px;}
.h0_c00259{height:810.000000px;}
.w0_c00259{width:1440.000000px;}
.x0_c00259{left:0.000000px;}
@media print{
.y0_c00259{bottom:0.000000pt;}
.h0_c00259{height:720.000000pt;}
.w0_c00259{width:1280.000000pt;}
.x0_c00259{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_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;}
.sc__c00260{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
}
.y0_c00260{bottom:0.000000px;}
.h0_c00260{height:810.000000px;}
.w0_c00260{width:1440.000000px;}
.x0_c00260{left:0.000000px;}
@media print{
.y0_c00260{bottom:0.000000pt;}
.h0_c00260{height:720.000000pt;}
.w0_c00260{width:1280.000000pt;}
.x0_c00260{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_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;}
.sc__c00261{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
}
.y0_c00261{bottom:0.000000px;}
.h0_c00261{height:810.000000px;}
.w0_c00261{width:1440.000000px;}
.x0_c00261{left:0.000000px;}
@media print{
.y0_c00261{bottom:0.000000pt;}
.h0_c00261{height:720.000000pt;}
.w0_c00261{width:1280.000000pt;}
.x0_c00261{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_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;}
.sc__c00262{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
}
.y0_c00262{bottom:0.000000px;}
.h0_c00262{height:810.000000px;}
.w0_c00262{width:1440.000000px;}
.x0_c00262{left:0.000000px;}
@media print{
.y0_c00262{bottom:0.000000pt;}
.h0_c00262{height:720.000000pt;}
.w0_c00262{width:1280.000000pt;}
.x0_c00262{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_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;}
.sc__c00263{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
}
.y0_c00263{bottom:0.000000px;}
.h0_c00263{height:810.000000px;}
.w0_c00263{width:1440.000000px;}
.x0_c00263{left:0.000000px;}
@media print{
.y0_c00263{bottom:0.000000pt;}
.h0_c00263{height:720.000000pt;}
.w0_c00263{width:1280.000000pt;}
.x0_c00263{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_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;}
.sc__c00264{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
}
.y0_c00264{bottom:0.000000px;}
.h0_c00264{height:810.000000px;}
.w0_c00264{width:1440.000000px;}
.x0_c00264{left:0.000000px;}
@media print{
.y0_c00264{bottom:0.000000pt;}
.h0_c00264{height:720.000000pt;}
.w0_c00264{width:1280.000000pt;}
.x0_c00264{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_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;}
.sc__c00265{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
}
.y0_c00265{bottom:0.000000px;}
.h0_c00265{height:810.000000px;}
.w0_c00265{width:1440.000000px;}
.x0_c00265{left:0.000000px;}
@media print{
.y0_c00265{bottom:0.000000pt;}
.h0_c00265{height:720.000000pt;}
.w0_c00265{width:1280.000000pt;}
.x0_c00265{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_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;}
.sc__c00266{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
}
.y0_c00266{bottom:0.000000px;}
.h0_c00266{height:810.000000px;}
.w0_c00266{width:1440.000000px;}
.x0_c00266{left:0.000000px;}
@media print{
.y0_c00266{bottom:0.000000pt;}
.h0_c00266{height:720.000000pt;}
.w0_c00266{width:1280.000000pt;}
.x0_c00266{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_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;}
.sc__c00267{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
}
.y0_c00267{bottom:0.000000px;}
.h0_c00267{height:810.000000px;}
.w0_c00267{width:1440.000000px;}
.x0_c00267{left:0.000000px;}
@media print{
.y0_c00267{bottom:0.000000pt;}
.h0_c00267{height:720.000000pt;}
.w0_c00267{width:1280.000000pt;}
.x0_c00267{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_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;}
.sc__c00268{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
}
.y0_c00268{bottom:0.000000px;}
.h0_c00268{height:810.000000px;}
.w0_c00268{width:1440.000000px;}
.x0_c00268{left:0.000000px;}
@media print{
.y0_c00268{bottom:0.000000pt;}
.h0_c00268{height:720.000000pt;}
.w0_c00268{width:1280.000000pt;}
.x0_c00268{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_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;}
.sc__c00269{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
}
.y0_c00269{bottom:0.000000px;}
.h0_c00269{height:810.000000px;}
.w0_c00269{width:1440.000000px;}
.x0_c00269{left:0.000000px;}
@media print{
.y0_c00269{bottom:0.000000pt;}
.h0_c00269{height:720.000000pt;}
.w0_c00269{width:1280.000000pt;}
.x0_c00269{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_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_ee93de512bc395cfdb141863.woff')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.165527;font-style:normal;font-weight:normal;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_3124d248a92c87af9bfcdefb.woff')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00270;src:url('chunks/assets/font_3d5266046a5ee52e5dfbbd65.woff')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:0.868164;font-style: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;}
.ls4_c00270{letter-spacing:-0.299520px;}
.ls3_c00270{letter-spacing:-0.240480px;}
.ls0_c00270{letter-spacing:-0.120240px;}
.ls2_c00270{letter-spacing:0.000000px;}
.ls5_c00270{letter-spacing:0.072000px;}
.ls1_c00270{letter-spacing:0.240480px;}
.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:-33.667200px;}
.ws1_c00270{word-spacing:-20.088000px;}
.ws3_c00270{word-spacing:-20.016000px;}
.ws2_c00270{word-spacing:-0.072000px;}
.ws5_c00270{word-spacing:0.000000px;}
.ws4_c00270{word-spacing:0.120240px;}
.ws6_c00270{word-spacing:0.240480px;}
.ws7_c00270{word-spacing:0.299520px;}
._5_c00270{margin-left:-11.546496px;}
._2_c00270{margin-left:-4.112208px;}
._3_c00270{margin-left:-2.356704px;}
._0_c00270{margin-left:-1.022040px;}
._1_c00270{width:1.106208px;}
._4_c00270{width:3.258504px;}
.fc1_c00270{color:rgb(0,0,0);}
.fc0_c00270{color:rgb(64,64,64);}
.fs2_c00270{font-size:72.000000px;}
.fs0_c00270{font-size:120.240000px;}
.fs1_c00270{font-size:149.760000px;}
.y0_c00270{bottom:0.000000px;}
.y6_c00270{bottom:20.941800px;}
.y4_c00270{bottom:419.330790px;}
.y3_c00270{bottom:470.282490px;}
.y2_c00270{bottom:521.234190px;}
.y1_c00270{bottom:572.366250px;}
.y5_c00270{bottom:660.886800px;}
.h3_c00270{height:63.597656px;}
.h1_c00270{height:106.208086px;}
.h2_c00270{height:112.320000px;}
.h0_c00270{height:810.000000px;}
.w0_c00270{width:1440.000000px;}
.x0_c00270{left:0.000000px;}
.x6_c00270{left:4.004850px;}
.x2_c00270{left:329.115060px;}
.x4_c00270{left:556.819560px;}
.x5_c00270{left:596.460000px;}
.x1_c00270{left:687.851100px;}
.x3_c00270{left:791.888760px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls4_c00270{letter-spacing:-0.266240pt;}
.ls3_c00270{letter-spacing:-0.213760pt;}
.ls0_c00270{letter-spacing:-0.106880pt;}
.ls2_c00270{letter-spacing:0.000000pt;}
.ls5_c00270{letter-spacing:0.064000pt;}
.ls1_c00270{letter-spacing:0.213760pt;}
.ws0_c00270{word-spacing:-29.926400pt;}
.ws1_c00270{word-spacing:-17.856000pt;}
.ws3_c00270{word-spacing:-17.792000pt;}
.ws2_c00270{word-spacing:-0.064000pt;}
.ws5_c00270{word-spacing:0.000000pt;}
.ws4_c00270{word-spacing:0.106880pt;}
.ws6_c00270{word-spacing:0.213760pt;}
.ws7_c00270{word-spacing:0.266240pt;}
._5_c00270{margin-left:-10.263552pt;}
._2_c00270{margin-left:-3.655296pt;}
._3_c00270{margin-left:-2.094848pt;}
._0_c00270{margin-left:-0.908480pt;}
._1_c00270{width:0.983296pt;}
._4_c00270{width:2.896448pt;}
.fs2_c00270{font-size:64.000000pt;}
.fs0_c00270{font-size:106.880000pt;}
.fs1_c00270{font-size:133.120000pt;}
.y0_c00270{bottom:0.000000pt;}
.y6_c00270{bottom:18.614933pt;}
.y4_c00270{bottom:372.738480pt;}
.y3_c00270{bottom:418.028880pt;}
.y2_c00270{bottom:463.319280pt;}
.y1_c00270{bottom:508.770000pt;}
.y5_c00270{bottom:587.454933pt;}
.h3_c00270{height:56.531250pt;}
.h1_c00270{height:94.407187pt;}
.h2_c00270{height:99.840000pt;}
.h0_c00270{height:720.000000pt;}
.w0_c00270{width:1280.000000pt;}
.x0_c00270{left:0.000000pt;}
.x6_c00270{left:3.559867pt;}
.x2_c00270{left:292.546720pt;}
.x4_c00270{left:494.950720pt;}
.x5_c00270{left:530.186667pt;}
.x1_c00270{left:611.423200pt;}
.x3_c00270{left:703.901120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00b197788cec909373014954.woff')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.165527;font-style:normal;font-weight:normal;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_acc785ca248e4beb4c6c3bac.woff')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:0.868164;font-style: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;}
.ls4_c00271{letter-spacing:-0.360000px;}
.ls2_c00271{letter-spacing:-0.324000px;}
.ls1_c00271{letter-spacing:0.000000px;}
.ls3_c00271{letter-spacing:0.216000px;}
.ls0_c00271{letter-spacing:20.160000px;}
.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.615600px;}
.ws1_c00271{word-spacing:-0.360000px;}
.ws3_c00271{word-spacing:-0.216000px;}
.ws2_c00271{word-spacing:0.000000px;}
.ws4_c00271{word-spacing:0.360000px;}
._3_c00271{margin-left:-10.692000px;}
._5_c00271{margin-left:-8.391600px;}
._2_c00271{margin-left:-6.469200px;}
._1_c00271{margin-left:-2.926800px;}
._0_c00271{margin-left:-1.090800px;}
._4_c00271{width:1.231200px;}
.fc1_c00271{color:rgb(0,0,0);}
.fc0_c00271{color:rgb(38,38,38);}
.fs1_c00271{font-size:72.000000px;}
.fs0_c00271{font-size:108.000000px;}
.y0_c00271{bottom:0.000000px;}
.y1_c00271{bottom:81.101250px;}
.y2_c00271{bottom:122.457750px;}
.y3_c00271{bottom:773.469150px;}
.h2_c00271{height:63.597656px;}
.h1_c00271{height:95.396484px;}
.h0_c00271{height:810.000000px;}
.w0_c00271{width:1440.000000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:87.839850px;}
.x3_c00271{left:521.902350px;}
.x2_c00271{left:589.172850px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls4_c00271{letter-spacing:-0.320000pt;}
.ls2_c00271{letter-spacing:-0.288000pt;}
.ls1_c00271{letter-spacing:0.000000pt;}
.ls3_c00271{letter-spacing:0.192000pt;}
.ls0_c00271{letter-spacing:17.920000pt;}
.ws0_c00271{word-spacing:-0.547200pt;}
.ws1_c00271{word-spacing:-0.320000pt;}
.ws3_c00271{word-spacing:-0.192000pt;}
.ws2_c00271{word-spacing:0.000000pt;}
.ws4_c00271{word-spacing:0.320000pt;}
._3_c00271{margin-left:-9.504000pt;}
._5_c00271{margin-left:-7.459200pt;}
._2_c00271{margin-left:-5.750400pt;}
._1_c00271{margin-left:-2.601600pt;}
._0_c00271{margin-left:-0.969600pt;}
._4_c00271{width:1.094400pt;}
.fs1_c00271{font-size:64.000000pt;}
.fs0_c00271{font-size:96.000000pt;}
.y0_c00271{bottom:0.000000pt;}
.y1_c00271{bottom:72.090000pt;}
.y2_c00271{bottom:108.851333pt;}
.y3_c00271{bottom:687.528133pt;}
.h2_c00271{height:56.531250pt;}
.h1_c00271{height:84.796875pt;}
.h0_c00271{height:720.000000pt;}
.w0_c00271{width:1280.000000pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:78.079867pt;}
.x3_c00271{left:463.913200pt;}
.x2_c00271{left:523.709200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2da9f032a82778114d203113.woff')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_05dd7d656f61a5e19f7a2e5f.woff')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.165527;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_1b97e82ee11fafb5deec4753.woff')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:0.979980;font-style: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;}
.lsb_c00272{letter-spacing:-5.292000px;}
.ls9_c00272{letter-spacing:-3.240000px;}
.lsd_c00272{letter-spacing:-3.132000px;}
.lsc_c00272{letter-spacing:-2.808000px;}
.lsf_c00272{letter-spacing:-2.484000px;}
.ls4_c00272{letter-spacing:-0.756000px;}
.lse_c00272{letter-spacing:-0.648000px;}
.ls6_c00272{letter-spacing:-0.540000px;}
.lsa_c00272{letter-spacing:-0.432000px;}
.ls8_c00272{letter-spacing:-0.324000px;}
.ls11_c00272{letter-spacing:-0.149760px;}
.ls5_c00272{letter-spacing:0.000000px;}
.ls10_c00272{letter-spacing:0.072000px;}
.ls2_c00272{letter-spacing:0.108000px;}
.ls7_c00272{letter-spacing:0.216000px;}
.ls3_c00272{letter-spacing:46.980000px;}
.ls0_c00272{letter-spacing:70.200000px;}
.ls1_c00272{letter-spacing:110.376000px;}
.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;}
}
.ws21_c00272{word-spacing:-149.610240px;}
.ws10_c00272{word-spacing:-30.240000px;}
.wsa_c00272{word-spacing:-30.132000px;}
.ws11_c00272{word-spacing:-30.024000px;}
.ws6_c00272{word-spacing:-29.700000px;}
.ws1d_c00272{word-spacing:-27.540000px;}
.ws1f_c00272{word-spacing:-2.408400px;}
.ws16_c00272{word-spacing:-1.296000px;}
.ws20_c00272{word-spacing:-1.285200px;}
.ws19_c00272{word-spacing:-1.220400px;}
.ws18_c00272{word-spacing:-1.004400px;}
.ws1e_c00272{word-spacing:-0.572400px;}
.ws23_c00272{word-spacing:-0.072000px;}
.ws22_c00272{word-spacing:0.000000px;}
.ws17_c00272{word-spacing:4.568400px;}
.ws1a_c00272{word-spacing:16.524000px;}
.ws1c_c00272{word-spacing:18.068400px;}
.ws1b_c00272{word-spacing:22.971600px;}
.ws15_c00272{word-spacing:26.276400px;}
.ws12_c00272{word-spacing:27.583200px;}
.ws13_c00272{word-spacing:28.512000px;}
.ws9_c00272{word-spacing:29.667600px;}
.ws8_c00272{word-spacing:29.732400px;}
.ws7_c00272{word-spacing:36.579600px;}
.ws14_c00272{word-spacing:38.491200px;}
.ws5_c00272{word-spacing:46.472400px;}
.ws3_c00272{word-spacing:47.736000px;}
.ws4_c00272{word-spacing:48.524400px;}
.wsb_c00272{word-spacing:50.760000px;}
.wsd_c00272{word-spacing:60.156000px;}
.wsf_c00272{word-spacing:60.696000px;}
.wsc_c00272{word-spacing:61.592400px;}
.wse_c00272{word-spacing:62.100000px;}
.ws1_c00272{word-spacing:79.520400px;}
.ws0_c00272{word-spacing:80.352000px;}
.ws2_c00272{word-spacing:80.643600px;}
._5_c00272{margin-left:-7.063200px;}
._2_c00272{margin-left:-3.175200px;}
._8_c00272{margin-left:-2.127600px;}
._0_c00272{margin-left:-1.112400px;}
._1_c00272{width:1.328400px;}
._3_c00272{width:3.132000px;}
._6_c00272{width:5.054400px;}
._9_c00272{width:30.337200px;}
._4_c00272{width:48.481200px;}
._7_c00272{width:57.531600px;}
.fc2_c00272{color:rgb(0,0,0);}
.fc1_c00272{color:rgb(38,38,38);}
.fc0_c00272{color:rgb(155,175,181);}
.fs1_c00272{font-size:72.000000px;}
.fs0_c00272{font-size:108.000000px;}
.fs2_c00272{font-size:149.760000px;}
.y0_c00272{bottom:0.000000px;}
.yb_c00272{bottom:113.730600px;}
.ya_c00272{bottom:198.000000px;}
.y9_c00272{bottom:230.400000px;}
.y8_c00272{bottom:277.740000px;}
.y7_c00272{bottom:310.140000px;}
.y6_c00272{bottom:357.480000px;}
.y5_c00272{bottom:389.880000px;}
.y4_c00272{bottom:422.280000px;}
.y3_c00272{bottom:469.800000px;}
.y2_c00272{bottom:502.200000px;}
.y1_c00272{bottom:534.600000px;}
.yc_c00272{bottom:642.235500px;}
.h3_c00272{height:63.597656px;}
.h2_c00272{height:95.396484px;}
.h1_c00272{height:96.820312px;}
.h4_c00272{height:112.320000px;}
.h0_c00272{height:810.000000px;}
.w0_c00272{width:1440.000000px;}
.x0_c00272{left:0.000000px;}
.x1_c00272{left:122.289450px;}
.x2_c00272{left:149.316450px;}
.x4_c00272{left:264.449100px;}
.x3_c00272{left:899.270550px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.lsb_c00272{letter-spacing:-4.704000pt;}
.ls9_c00272{letter-spacing:-2.880000pt;}
.lsd_c00272{letter-spacing:-2.784000pt;}
.lsc_c00272{letter-spacing:-2.496000pt;}
.lsf_c00272{letter-spacing:-2.208000pt;}
.ls4_c00272{letter-spacing:-0.672000pt;}
.lse_c00272{letter-spacing:-0.576000pt;}
.ls6_c00272{letter-spacing:-0.480000pt;}
.lsa_c00272{letter-spacing:-0.384000pt;}
.ls8_c00272{letter-spacing:-0.288000pt;}
.ls11_c00272{letter-spacing:-0.133120pt;}
.ls5_c00272{letter-spacing:0.000000pt;}
.ls10_c00272{letter-spacing:0.064000pt;}
.ls2_c00272{letter-spacing:0.096000pt;}
.ls7_c00272{letter-spacing:0.192000pt;}
.ls3_c00272{letter-spacing:41.760000pt;}
.ls0_c00272{letter-spacing:62.400000pt;}
.ls1_c00272{letter-spacing:98.112000pt;}
.ws21_c00272{word-spacing:-132.986880pt;}
.ws10_c00272{word-spacing:-26.880000pt;}
.wsa_c00272{word-spacing:-26.784000pt;}
.ws11_c00272{word-spacing:-26.688000pt;}
.ws6_c00272{word-spacing:-26.400000pt;}
.ws1d_c00272{word-spacing:-24.480000pt;}
.ws1f_c00272{word-spacing:-2.140800pt;}
.ws16_c00272{word-spacing:-1.152000pt;}
.ws20_c00272{word-spacing:-1.142400pt;}
.ws19_c00272{word-spacing:-1.084800pt;}
.ws18_c00272{word-spacing:-0.892800pt;}
.ws1e_c00272{word-spacing:-0.508800pt;}
.ws23_c00272{word-spacing:-0.064000pt;}
.ws22_c00272{word-spacing:0.000000pt;}
.ws17_c00272{word-spacing:4.060800pt;}
.ws1a_c00272{word-spacing:14.688000pt;}
.ws1c_c00272{word-spacing:16.060800pt;}
.ws1b_c00272{word-spacing:20.419200pt;}
.ws15_c00272{word-spacing:23.356800pt;}
.ws12_c00272{word-spacing:24.518400pt;}
.ws13_c00272{word-spacing:25.344000pt;}
.ws9_c00272{word-spacing:26.371200pt;}
.ws8_c00272{word-spacing:26.428800pt;}
.ws7_c00272{word-spacing:32.515200pt;}
.ws14_c00272{word-spacing:34.214400pt;}
.ws5_c00272{word-spacing:41.308800pt;}
.ws3_c00272{word-spacing:42.432000pt;}
.ws4_c00272{word-spacing:43.132800pt;}
.wsb_c00272{word-spacing:45.120000pt;}
.wsd_c00272{word-spacing:53.472000pt;}
.wsf_c00272{word-spacing:53.952000pt;}
.wsc_c00272{word-spacing:54.748800pt;}
.wse_c00272{word-spacing:55.200000pt;}
.ws1_c00272{word-spacing:70.684800pt;}
.ws0_c00272{word-spacing:71.424000pt;}
.ws2_c00272{word-spacing:71.683200pt;}
._5_c00272{margin-left:-6.278400pt;}
._2_c00272{margin-left:-2.822400pt;}
._8_c00272{margin-left:-1.891200pt;}
._0_c00272{margin-left:-0.988800pt;}
._1_c00272{width:1.180800pt;}
._3_c00272{width:2.784000pt;}
._6_c00272{width:4.492800pt;}
._9_c00272{width:26.966400pt;}
._4_c00272{width:43.094400pt;}
._7_c00272{width:51.139200pt;}
.fs1_c00272{font-size:64.000000pt;}
.fs0_c00272{font-size:96.000000pt;}
.fs2_c00272{font-size:133.120000pt;}
.y0_c00272{bottom:0.000000pt;}
.yb_c00272{bottom:101.093867pt;}
.ya_c00272{bottom:176.000000pt;}
.y9_c00272{bottom:204.800000pt;}
.y8_c00272{bottom:246.880000pt;}
.y7_c00272{bottom:275.680000pt;}
.y6_c00272{bottom:317.760000pt;}
.y5_c00272{bottom:346.560000pt;}
.y4_c00272{bottom:375.360000pt;}
.y3_c00272{bottom:417.600000pt;}
.y2_c00272{bottom:446.400000pt;}
.y1_c00272{bottom:475.200000pt;}
.yc_c00272{bottom:570.876000pt;}
.h3_c00272{height:56.531250pt;}
.h2_c00272{height:84.796875pt;}
.h1_c00272{height:86.062500pt;}
.h4_c00272{height:99.840000pt;}
.h0_c00272{height:720.000000pt;}
.w0_c00272{width:1280.000000pt;}
.x0_c00272{left:0.000000pt;}
.x1_c00272{left:108.701733pt;}
.x2_c00272{left:132.725733pt;}
.x4_c00272{left:235.065867pt;}
.x3_c00272{left:799.351600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85a5076657d19d8f2ddf9905.woff')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.165527;font-style:normal;font-weight:normal;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_24c848b8619ada37dc00659b.woff')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:0.868164;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00273;src:url('chunks/assets/font_8d8a2050691510f605de065c.woff')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:0.910645;font-style: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;}
.ls10_c00273{letter-spacing:-2.484000px;}
.ls9_c00273{letter-spacing:-1.915200px;}
.ls7_c00273{letter-spacing:-1.627920px;}
.lse_c00273{letter-spacing:-0.756000px;}
.lsc_c00273{letter-spacing:-0.288000px;}
.ls5_c00273{letter-spacing:-0.287280px;}
.ls4_c00273{letter-spacing:-0.191520px;}
.ls3_c00273{letter-spacing:-0.095760px;}
.ls8_c00273{letter-spacing:0.000000px;}
.lsa_c00273{letter-spacing:0.072000px;}
.lsd_c00273{letter-spacing:0.108000px;}
.lsb_c00273{letter-spacing:0.144000px;}
.ls6_c00273{letter-spacing:0.191520px;}
.lsf_c00273{letter-spacing:0.216000px;}
.ls2_c00273{letter-spacing:0.383040px;}
.ls0_c00273{letter-spacing:52.955280px;}
.ls1_c00273{letter-spacing:100.476000px;}
.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;}
}
.ws2c_c00273{word-spacing:-30.132000px;}
.ws31_c00273{word-spacing:-30.024000px;}
.wsa_c00273{word-spacing:-26.525520px;}
.ws1b_c00273{word-spacing:-26.429760px;}
.ws5_c00273{word-spacing:-26.334000px;}
.ws26_c00273{word-spacing:-18.000000px;}
.ws27_c00273{word-spacing:-17.712000px;}
.ws7_c00273{word-spacing:-4.902912px;}
.ws34_c00273{word-spacing:-0.144000px;}
.ws24_c00273{word-spacing:-0.134064px;}
.ws33_c00273{word-spacing:-0.072000px;}
.ws32_c00273{word-spacing:0.000000px;}
.ws23_c00273{word-spacing:0.095760px;}
.ws35_c00273{word-spacing:0.756000px;}
.ws22_c00273{word-spacing:1.101240px;}
.ws21_c00273{word-spacing:1.149120px;}
.ws25_c00273{word-spacing:1.771560px;}
.ws17_c00273{word-spacing:2.518488px;}
.ws9_c00273{word-spacing:4.088952px;}
.ws8_c00273{word-spacing:5.774328px;}
.ws6_c00273{word-spacing:5.783904px;}
.ws19_c00273{word-spacing:11.606112px;}
.ws16_c00273{word-spacing:12.841416px;}
.ws18_c00273{word-spacing:13.071240px;}
.ws1a_c00273{word-spacing:13.128696px;}
.ws1f_c00273{word-spacing:15.666336px;}
.ws30_c00273{word-spacing:19.148400px;}
.ws2d_c00273{word-spacing:19.407600px;}
.ws2e_c00273{word-spacing:19.699200px;}
.ws12_c00273{word-spacing:21.402360px;}
.ws2f_c00273{word-spacing:24.732000px;}
.wsb_c00273{word-spacing:25.433856px;}
.ws1d_c00273{word-spacing:26.085024px;}
.ws1c_c00273{word-spacing:26.659584px;}
.ws20_c00273{word-spacing:26.927712px;}
.ws1e_c00273{word-spacing:30.662352px;}
.ws11_c00273{word-spacing:32.261544px;}
.ws13_c00273{word-spacing:32.749920px;}
.ws15_c00273{word-spacing:32.778648px;}
.ws10_c00273{word-spacing:32.864832px;}
.wse_c00273{word-spacing:33.899040px;}
.wsd_c00273{word-spacing:34.061832px;}
.wsf_c00273{word-spacing:34.961976px;}
.ws14_c00273{word-spacing:35.737632px;}
.wsc_c00273{word-spacing:37.624104px;}
.ws2a_c00273{word-spacing:55.803600px;}
.ws2b_c00273{word-spacing:56.160000px;}
.ws28_c00273{word-spacing:56.527200px;}
.ws0_c00273{word-spacing:61.305552px;}
.ws4_c00273{word-spacing:61.803504px;}
.ws1_c00273{word-spacing:62.320608px;}
.ws2_c00273{word-spacing:62.646192px;}
.ws3_c00273{word-spacing:62.674920px;}
.ws29_c00273{word-spacing:142.570800px;}
._9_c00273{margin-left:-7.279200px;}
._a_c00273{margin-left:-4.415904px;}
._5_c00273{margin-left:-2.958984px;}
._0_c00273{margin-left:-1.264032px;}
._1_c00273{width:1.244880px;}
._4_c00273{width:3.342024px;}
._6_c00273{width:4.969944px;}
._7_c00273{width:39.912768px;}
._8_c00273{width:53.932032px;}
._3_c00273{width:59.601024px;}
._2_c00273{width:127.265040px;}
.fc0_c00273{color:rgb(0,0,0);}
.fs1_c00273{font-size:72.000000px;}
.fs0_c00273{font-size:95.760000px;}
.fs2_c00273{font-size:108.000000px;}
.fs3_c00273{font-size:149.760000px;}
.y0_c00273{bottom:0.000000px;}
.ya_c00273{bottom:35.640000px;}
.ye_c00273{bottom:73.668150px;}
.yd_c00273{bottom:106.068150px;}
.yc_c00273{bottom:170.868150px;}
.yb_c00273{bottom:203.268150px;}
.y9_c00273{bottom:306.381300px;}
.y8_c00273{bottom:468.654150px;}
.y7_c00273{bottom:497.453970px;}
.y6_c00273{bottom:526.253790px;}
.y5_c00273{bottom:613.922070px;}
.y4_c00273{bottom:642.721890px;}
.y3_c00273{bottom:671.521710px;}
.y2_c00273{bottom:700.321530px;}
.yf_c00273{bottom:716.161350px;}
.y1_c00273{bottom:729.121350px;}
.h3_c00273{height:50.027344px;}
.h2_c00273{height:63.597656px;}
.h1_c00273{height:84.584883px;}
.h4_c00273{height:95.396484px;}
.h5_c00273{height:132.283125px;}
.h0_c00273{height:810.000000px;}
.w0_c00273{width:1440.000000px;}
.x0_c00273{left:0.000000px;}
.x4_c00273{left:64.800000px;}
.x2_c00273{left:82.122900px;}
.x5_c00273{left:98.667000px;}
.x6_c00273{left:128.412000px;}
.x1_c00273{left:795.240000px;}
.x3_c00273{left:798.042900px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls10_c00273{letter-spacing:-2.208000pt;}
.ls9_c00273{letter-spacing:-1.702400pt;}
.ls7_c00273{letter-spacing:-1.447040pt;}
.lse_c00273{letter-spacing:-0.672000pt;}
.lsc_c00273{letter-spacing:-0.256000pt;}
.ls5_c00273{letter-spacing:-0.255360pt;}
.ls4_c00273{letter-spacing:-0.170240pt;}
.ls3_c00273{letter-spacing:-0.085120pt;}
.ls8_c00273{letter-spacing:0.000000pt;}
.lsa_c00273{letter-spacing:0.064000pt;}
.lsd_c00273{letter-spacing:0.096000pt;}
.lsb_c00273{letter-spacing:0.128000pt;}
.ls6_c00273{letter-spacing:0.170240pt;}
.lsf_c00273{letter-spacing:0.192000pt;}
.ls2_c00273{letter-spacing:0.340480pt;}
.ls0_c00273{letter-spacing:47.071360pt;}
.ls1_c00273{letter-spacing:89.312000pt;}
.ws2c_c00273{word-spacing:-26.784000pt;}
.ws31_c00273{word-spacing:-26.688000pt;}
.wsa_c00273{word-spacing:-23.578240pt;}
.ws1b_c00273{word-spacing:-23.493120pt;}
.ws5_c00273{word-spacing:-23.408000pt;}
.ws26_c00273{word-spacing:-16.000000pt;}
.ws27_c00273{word-spacing:-15.744000pt;}
.ws7_c00273{word-spacing:-4.358144pt;}
.ws34_c00273{word-spacing:-0.128000pt;}
.ws24_c00273{word-spacing:-0.119168pt;}
.ws33_c00273{word-spacing:-0.064000pt;}
.ws32_c00273{word-spacing:0.000000pt;}
.ws23_c00273{word-spacing:0.085120pt;}
.ws35_c00273{word-spacing:0.672000pt;}
.ws22_c00273{word-spacing:0.978880pt;}
.ws21_c00273{word-spacing:1.021440pt;}
.ws25_c00273{word-spacing:1.574720pt;}
.ws17_c00273{word-spacing:2.238656pt;}
.ws9_c00273{word-spacing:3.634624pt;}
.ws8_c00273{word-spacing:5.132736pt;}
.ws6_c00273{word-spacing:5.141248pt;}
.ws19_c00273{word-spacing:10.316544pt;}
.ws16_c00273{word-spacing:11.414592pt;}
.ws18_c00273{word-spacing:11.618880pt;}
.ws1a_c00273{word-spacing:11.669952pt;}
.ws1f_c00273{word-spacing:13.925632pt;}
.ws30_c00273{word-spacing:17.020800pt;}
.ws2d_c00273{word-spacing:17.251200pt;}
.ws2e_c00273{word-spacing:17.510400pt;}
.ws12_c00273{word-spacing:19.024320pt;}
.ws2f_c00273{word-spacing:21.984000pt;}
.wsb_c00273{word-spacing:22.607872pt;}
.ws1d_c00273{word-spacing:23.186688pt;}
.ws1c_c00273{word-spacing:23.697408pt;}
.ws20_c00273{word-spacing:23.935744pt;}
.ws1e_c00273{word-spacing:27.255424pt;}
.ws11_c00273{word-spacing:28.676928pt;}
.ws13_c00273{word-spacing:29.111040pt;}
.ws15_c00273{word-spacing:29.136576pt;}
.ws10_c00273{word-spacing:29.213184pt;}
.wse_c00273{word-spacing:30.132480pt;}
.wsd_c00273{word-spacing:30.277184pt;}
.wsf_c00273{word-spacing:31.077312pt;}
.ws14_c00273{word-spacing:31.766784pt;}
.wsc_c00273{word-spacing:33.443648pt;}
.ws2a_c00273{word-spacing:49.603200pt;}
.ws2b_c00273{word-spacing:49.920000pt;}
.ws28_c00273{word-spacing:50.246400pt;}
.ws0_c00273{word-spacing:54.493824pt;}
.ws4_c00273{word-spacing:54.936448pt;}
.ws1_c00273{word-spacing:55.396096pt;}
.ws2_c00273{word-spacing:55.685504pt;}
.ws3_c00273{word-spacing:55.711040pt;}
.ws29_c00273{word-spacing:126.729600pt;}
._9_c00273{margin-left:-6.470400pt;}
._a_c00273{margin-left:-3.925248pt;}
._5_c00273{margin-left:-2.630208pt;}
._0_c00273{margin-left:-1.123584pt;}
._1_c00273{width:1.106560pt;}
._4_c00273{width:2.970688pt;}
._6_c00273{width:4.417728pt;}
._7_c00273{width:35.478016pt;}
._8_c00273{width:47.939584pt;}
._3_c00273{width:52.978688pt;}
._2_c00273{width:113.124480pt;}
.fs1_c00273{font-size:64.000000pt;}
.fs0_c00273{font-size:85.120000pt;}
.fs2_c00273{font-size:96.000000pt;}
.fs3_c00273{font-size:133.120000pt;}
.y0_c00273{bottom:0.000000pt;}
.ya_c00273{bottom:31.680000pt;}
.ye_c00273{bottom:65.482800pt;}
.yd_c00273{bottom:94.282800pt;}
.yc_c00273{bottom:151.882800pt;}
.yb_c00273{bottom:180.682800pt;}
.y9_c00273{bottom:272.338933pt;}
.y8_c00273{bottom:416.581467pt;}
.y7_c00273{bottom:442.181307pt;}
.y6_c00273{bottom:467.781147pt;}
.y5_c00273{bottom:545.708507pt;}
.y4_c00273{bottom:571.308347pt;}
.y3_c00273{bottom:596.908187pt;}
.y2_c00273{bottom:622.508027pt;}
.yf_c00273{bottom:636.587867pt;}
.y1_c00273{bottom:648.107867pt;}
.h3_c00273{height:44.468750pt;}
.h2_c00273{height:56.531250pt;}
.h1_c00273{height:75.186562pt;}
.h4_c00273{height:84.796875pt;}
.h5_c00273{height:117.585000pt;}
.h0_c00273{height:720.000000pt;}
.w0_c00273{width:1280.000000pt;}
.x0_c00273{left:0.000000pt;}
.x4_c00273{left:57.600000pt;}
.x2_c00273{left:72.998133pt;}
.x5_c00273{left:87.704000pt;}
.x6_c00273{left:114.144000pt;}
.x1_c00273{left:706.880000pt;}
.x3_c00273{left:709.371467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2da9f032a82778114d203113.woff')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_027a4c2bc076d44e58836ffa.woff')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.165527;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00274;src:url('chunks/assets/font_1e1d742838940029cace4bc8.woff')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:0.979980;font-style: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;}
.ls3_c00274{letter-spacing:-10.692000px;}
.ls1_c00274{letter-spacing:-0.324000px;}
.ls6_c00274{letter-spacing:-0.120240px;}
.ls2_c00274{letter-spacing:0.000000px;}
.ls4_c00274{letter-spacing:0.108000px;}
.ls5_c00274{letter-spacing:0.216000px;}
.ls0_c00274{letter-spacing:70.200000px;}
.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;}
}
.ws3_c00274{word-spacing:-30.240000px;}
.ws2_c00274{word-spacing:-30.132000px;}
.ws0_c00274{word-spacing:-29.700000px;}
.ws4_c00274{word-spacing:-0.540000px;}
.ws5_c00274{word-spacing:0.000000px;}
.ws8_c00274{word-spacing:0.120240px;}
.ws1_c00274{word-spacing:0.313200px;}
.ws7_c00274{word-spacing:0.324000px;}
.ws6_c00274{word-spacing:10.692000px;}
._1_c00274{margin-left:-16.340400px;}
._0_c00274{margin-left:-9.828000px;}
._2_c00274{margin-left:-6.199200px;}
._8_c00274{margin-left:-2.851200px;}
._5_c00274{margin-left:-1.609200px;}
._7_c00274{width:1.252800px;}
._6_c00274{width:2.700000px;}
._3_c00274{width:10.368000px;}
._4_c00274{width:13.068000px;}
.fc2_c00274{color:rgb(0,0,0);}
.fc1_c00274{color:rgb(38,38,38);}
.fc0_c00274{color:rgb(155,175,181);}
.fs0_c00274{font-size:108.000000px;}
.fs1_c00274{font-size:120.240000px;}
.y0_c00274{bottom:0.000000px;}
.y7_c00274{bottom:216.091200px;}
.y6_c00274{bottom:263.431200px;}
.y5_c00274{bottom:310.771200px;}
.y4_c00274{bottom:358.291200px;}
.y3_c00274{bottom:405.631200px;}
.y2_c00274{bottom:452.971200px;}
.y1_c00274{bottom:500.491200px;}
.y8_c00274{bottom:691.801800px;}
.h2_c00274{height:90.180000px;}
.h1_c00274{height:96.820312px;}
.h0_c00274{height:810.000000px;}
.w0_c00274{width:1440.000000px;}
.x0_c00274{left:0.000000px;}
.x1_c00274{left:53.419050px;}
.x2_c00274{left:582.244800px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls3_c00274{letter-spacing:-9.504000pt;}
.ls1_c00274{letter-spacing:-0.288000pt;}
.ls6_c00274{letter-spacing:-0.106880pt;}
.ls2_c00274{letter-spacing:0.000000pt;}
.ls4_c00274{letter-spacing:0.096000pt;}
.ls5_c00274{letter-spacing:0.192000pt;}
.ls0_c00274{letter-spacing:62.400000pt;}
.ws3_c00274{word-spacing:-26.880000pt;}
.ws2_c00274{word-spacing:-26.784000pt;}
.ws0_c00274{word-spacing:-26.400000pt;}
.ws4_c00274{word-spacing:-0.480000pt;}
.ws5_c00274{word-spacing:0.000000pt;}
.ws8_c00274{word-spacing:0.106880pt;}
.ws1_c00274{word-spacing:0.278400pt;}
.ws7_c00274{word-spacing:0.288000pt;}
.ws6_c00274{word-spacing:9.504000pt;}
._1_c00274{margin-left:-14.524800pt;}
._0_c00274{margin-left:-8.736000pt;}
._2_c00274{margin-left:-5.510400pt;}
._8_c00274{margin-left:-2.534400pt;}
._5_c00274{margin-left:-1.430400pt;}
._7_c00274{width:1.113600pt;}
._6_c00274{width:2.400000pt;}
._3_c00274{width:9.216000pt;}
._4_c00274{width:11.616000pt;}
.fs0_c00274{font-size:96.000000pt;}
.fs1_c00274{font-size:106.880000pt;}
.y0_c00274{bottom:0.000000pt;}
.y7_c00274{bottom:192.081067pt;}
.y6_c00274{bottom:234.161067pt;}
.y5_c00274{bottom:276.241067pt;}
.y4_c00274{bottom:318.481067pt;}
.y3_c00274{bottom:360.561067pt;}
.y2_c00274{bottom:402.641067pt;}
.y1_c00274{bottom:444.881067pt;}
.y8_c00274{bottom:614.934933pt;}
.h2_c00274{height:80.160000pt;}
.h1_c00274{height:86.062500pt;}
.h0_c00274{height:720.000000pt;}
.w0_c00274{width:1280.000000pt;}
.x0_c00274{left:0.000000pt;}
.x1_c00274{left:47.483600pt;}
.x2_c00274{left:517.550933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dce36a2bb397ed94e32a064a.woff')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.165527;font-style: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;}
.ls0_c00275{letter-spacing:-0.324000px;}
.ls1_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:-29.700000px;}
.ws1_c00275{word-spacing:0.000000px;}
._1_c00275{margin-left:-16.340400px;}
._0_c00275{margin-left:-9.828000px;}
._2_c00275{margin-left:-6.199200px;}
.fc0_c00275{color:rgb(0,0,0);}
.fs0_c00275{font-size:108.000000px;}
.y0_c00275{bottom:0.000000px;}
.y1_c00275{bottom:551.806500px;}
.h1_c00275{height:95.396484px;}
.h0_c00275{height:810.000000px;}
.w0_c00275{width:1440.000000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:629.172750px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:-0.288000pt;}
.ls1_c00275{letter-spacing:0.000000pt;}
.ws0_c00275{word-spacing:-26.400000pt;}
.ws1_c00275{word-spacing:0.000000pt;}
._1_c00275{margin-left:-14.524800pt;}
._0_c00275{margin-left:-8.736000pt;}
._2_c00275{margin-left:-5.510400pt;}
.fs0_c00275{font-size:96.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y1_c00275{bottom:490.494667pt;}
.h1_c00275{height:84.796875pt;}
.h0_c00275{height:720.000000pt;}
.w0_c00275{width:1280.000000pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:559.264667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f24df906b679dbaf1fdc4eab.woff')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.165527;font-style: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.216000px;}
.ls2_c00276{letter-spacing:0.000000px;}
.ls1_c00276{letter-spacing:0.216000px;}
.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:-19.800000px;}
.ws1_c00276{word-spacing:-0.216000px;}
.ws2_c00276{word-spacing:0.000000px;}
.ws3_c00276{word-spacing:0.216000px;}
._1_c00276{margin-left:-10.656000px;}
._0_c00276{margin-left:-6.552000px;}
._2_c00276{margin-left:-4.824000px;}
._3_c00276{margin-left:-1.382400px;}
._4_c00276{width:1.647360px;}
.fc0_c00276{color:rgb(0,0,0);}
.fs0_c00276{font-size:72.000000px;}
.fs1_c00276{font-size:149.760000px;}
.y0_c00276{bottom:0.000000px;}
.y1_c00276{bottom:77.320200px;}
.y2_c00276{bottom:652.854600px;}
.h1_c00276{height:63.597656px;}
.h2_c00276{height:132.283125px;}
.h0_c00276{height:810.000000px;}
.w0_c00276{width:1440.000000px;}
.x0_c00276{left:0.000000px;}
.x3_c00276{left:289.900800px;}
.x2_c00276{left:612.195900px;}
.x1_c00276{left:1038.599700px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls0_c00276{letter-spacing:-0.192000pt;}
.ls2_c00276{letter-spacing:0.000000pt;}
.ls1_c00276{letter-spacing:0.192000pt;}
.ws0_c00276{word-spacing:-17.600000pt;}
.ws1_c00276{word-spacing:-0.192000pt;}
.ws2_c00276{word-spacing:0.000000pt;}
.ws3_c00276{word-spacing:0.192000pt;}
._1_c00276{margin-left:-9.472000pt;}
._0_c00276{margin-left:-5.824000pt;}
._2_c00276{margin-left:-4.288000pt;}
._3_c00276{margin-left:-1.228800pt;}
._4_c00276{width:1.464320pt;}
.fs0_c00276{font-size:64.000000pt;}
.fs1_c00276{font-size:133.120000pt;}
.y0_c00276{bottom:0.000000pt;}
.y1_c00276{bottom:68.729067pt;}
.y2_c00276{bottom:580.315200pt;}
.h1_c00276{height:56.531250pt;}
.h2_c00276{height:117.585000pt;}
.h0_c00276{height:720.000000pt;}
.w0_c00276{width:1280.000000pt;}
.x0_c00276{left:0.000000pt;}
.x3_c00276{left:257.689600pt;}
.x2_c00276{left:544.174133pt;}
.x1_c00276{left:923.199733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfa9bb2d3228d6b05e774c74.woff')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.165527;font-style:normal;font-weight:normal;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_eb45bdcefb0e0fa6b0b88c0f.woff')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:0.868164;font-style: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;}
.ls4_c00277{letter-spacing:0.000000px;}
.ls1_c00277{letter-spacing:0.072000px;}
.ls3_c00277{letter-spacing:0.216000px;}
.ls2_c00277{letter-spacing:0.288000px;}
.ls0_c00277{letter-spacing:42.382080px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00277{word-spacing:-0.216000px;}
.ws1_c00277{word-spacing:-0.149760px;}
.ws2_c00277{word-spacing:-0.072000px;}
.ws4_c00277{word-spacing:0.000000px;}
.ws0_c00277{word-spacing:2408.832000px;}
._5_c00277{margin-left:-13.938624px;}
._1_c00277{margin-left:-7.200000px;}
._4_c00277{margin-left:-3.887424px;}
._3_c00277{margin-left:-2.088000px;}
._2_c00277{margin-left:-1.080000px;}
._0_c00277{width:1.224000px;}
._6_c00277{width:2.291328px;}
._7_c00277{width:3.980736px;}
.fc0_c00277{color:rgb(0,0,0);}
.fs0_c00277{font-size:72.000000px;}
.fs1_c00277{font-size:149.760000px;}
.y0_c00277{bottom:0.000000px;}
.y1_c00277{bottom:103.851300px;}
.y4_c00277{bottom:593.119590px;}
.y3_c00277{bottom:638.122470px;}
.y2_c00277{bottom:683.125350px;}
.h1_c00277{height:63.597656px;}
.h2_c00277{height:132.283125px;}
.h0_c00277{height:810.000000px;}
.w0_c00277{width:1440.000000px;}
.x0_c00277{left:0.000000px;}
.x1_c00277{left:236.142750px;}
.x3_c00277{left:242.297280px;}
.x4_c00277{left:398.347200px;}
.x2_c00277{left:580.680000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls4_c00277{letter-spacing:0.000000pt;}
.ls1_c00277{letter-spacing:0.064000pt;}
.ls3_c00277{letter-spacing:0.192000pt;}
.ls2_c00277{letter-spacing:0.256000pt;}
.ls0_c00277{letter-spacing:37.672960pt;}
.ws3_c00277{word-spacing:-0.192000pt;}
.ws1_c00277{word-spacing:-0.133120pt;}
.ws2_c00277{word-spacing:-0.064000pt;}
.ws4_c00277{word-spacing:0.000000pt;}
.ws0_c00277{word-spacing:2141.184000pt;}
._5_c00277{margin-left:-12.389888pt;}
._1_c00277{margin-left:-6.400000pt;}
._4_c00277{margin-left:-3.455488pt;}
._3_c00277{margin-left:-1.856000pt;}
._2_c00277{margin-left:-0.960000pt;}
._0_c00277{width:1.088000pt;}
._6_c00277{width:2.036736pt;}
._7_c00277{width:3.538432pt;}
.fs0_c00277{font-size:64.000000pt;}
.fs1_c00277{font-size:133.120000pt;}
.y0_c00277{bottom:0.000000pt;}
.y1_c00277{bottom:92.312267pt;}
.y4_c00277{bottom:527.217413pt;}
.y3_c00277{bottom:567.219973pt;}
.y2_c00277{bottom:607.222533pt;}
.h1_c00277{height:56.531250pt;}
.h2_c00277{height:117.585000pt;}
.h0_c00277{height:720.000000pt;}
.w0_c00277{width:1280.000000pt;}
.x0_c00277{left:0.000000pt;}
.x1_c00277{left:209.904667pt;}
.x3_c00277{left:215.375360pt;}
.x4_c00277{left:354.086400pt;}
.x2_c00277{left:516.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f36d088076271fd2b361c17e.woff')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.165527;font-style: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;}
.ls3_c00278{letter-spacing:-0.216000px;}
.ls1_c00278{letter-spacing:0.000000px;}
.ls2_c00278{letter-spacing:0.144000px;}
.ls0_c00278{letter-spacing:0.216000px;}
.ls4_c00278{letter-spacing:0.299520px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00278{word-spacing:-41.633280px;}
.ws1_c00278{word-spacing:-20.160000px;}
.ws0_c00278{word-spacing:-20.016000px;}
.ws2_c00278{word-spacing:-19.800000px;}
.ws6_c00278{word-spacing:-0.299520px;}
.ws4_c00278{word-spacing:-0.216000px;}
.ws5_c00278{word-spacing:0.000000px;}
._6_c00278{margin-left:-13.887936px;}
._3_c00278{margin-left:-11.376000px;}
._0_c00278{margin-left:-6.408000px;}
._4_c00278{margin-left:-4.752000px;}
._5_c00278{margin-left:-3.085056px;}
._1_c00278{margin-left:-1.080000px;}
._2_c00278{width:1.368000px;}
._7_c00278{width:2.908800px;}
.fc0_c00278{color:rgb(0,0,0);}
.fs0_c00278{font-size:72.000000px;}
.fs1_c00278{font-size:149.760000px;}
.y0_c00278{bottom:0.000000px;}
.y2_c00278{bottom:32.287950px;}
.y1_c00278{bottom:175.021500px;}
.y3_c00278{bottom:427.621950px;}
.y6_c00278{bottom:622.499340px;}
.y5_c00278{bottom:667.502220px;}
.y4_c00278{bottom:712.505100px;}
.h1_c00278{height:63.597656px;}
.h2_c00278{height:132.283125px;}
.h0_c00278{height:810.000000px;}
.w0_c00278{width:1440.000000px;}
.x0_c00278{left:0.000000px;}
.x5_c00278{left:153.242160px;}
.x4_c00278{left:213.370800px;}
.x1_c00278{left:256.016850px;}
.x6_c00278{left:272.937840px;}
.x3_c00278{left:949.650150px;}
.x2_c00278{left:976.956150px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls3_c00278{letter-spacing:-0.192000pt;}
.ls1_c00278{letter-spacing:0.000000pt;}
.ls2_c00278{letter-spacing:0.128000pt;}
.ls0_c00278{letter-spacing:0.192000pt;}
.ls4_c00278{letter-spacing:0.266240pt;}
.ws3_c00278{word-spacing:-37.007360pt;}
.ws1_c00278{word-spacing:-17.920000pt;}
.ws0_c00278{word-spacing:-17.792000pt;}
.ws2_c00278{word-spacing:-17.600000pt;}
.ws6_c00278{word-spacing:-0.266240pt;}
.ws4_c00278{word-spacing:-0.192000pt;}
.ws5_c00278{word-spacing:0.000000pt;}
._6_c00278{margin-left:-12.344832pt;}
._3_c00278{margin-left:-10.112000pt;}
._0_c00278{margin-left:-5.696000pt;}
._4_c00278{margin-left:-4.224000pt;}
._5_c00278{margin-left:-2.742272pt;}
._1_c00278{margin-left:-0.960000pt;}
._2_c00278{width:1.216000pt;}
._7_c00278{width:2.585600pt;}
.fs0_c00278{font-size:64.000000pt;}
.fs1_c00278{font-size:133.120000pt;}
.y0_c00278{bottom:0.000000pt;}
.y2_c00278{bottom:28.700400pt;}
.y1_c00278{bottom:155.574667pt;}
.y3_c00278{bottom:380.108400pt;}
.y6_c00278{bottom:553.332747pt;}
.y5_c00278{bottom:593.335307pt;}
.y4_c00278{bottom:633.337867pt;}
.h1_c00278{height:56.531250pt;}
.h2_c00278{height:117.585000pt;}
.h0_c00278{height:720.000000pt;}
.w0_c00278{width:1280.000000pt;}
.x0_c00278{left:0.000000pt;}
.x5_c00278{left:136.215253pt;}
.x4_c00278{left:189.662933pt;}
.x1_c00278{left:227.570533pt;}
.x6_c00278{left:242.611413pt;}
.x3_c00278{left:844.133467pt;}
.x2_c00278{left:868.405467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d673fecf4123b3c0ce553fd9.woff')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.165527;font-style: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;}
.ls2_c00279{letter-spacing:-7.128000px;}
.ls8_c00279{letter-spacing:-3.144960px;}
.ls3_c00279{letter-spacing:-2.088000px;}
.ls6_c00279{letter-spacing:-0.149760px;}
.ls5_c00279{letter-spacing:0.000000px;}
.ls4_c00279{letter-spacing:0.072000px;}
.ls1_c00279{letter-spacing:0.216000px;}
.ls7_c00279{letter-spacing:0.299520px;}
.ls0_c00279{letter-spacing:41.932800px;}
.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;}
}
.ws5_c00279{word-spacing:-41.932800px;}
.ws1_c00279{word-spacing:-20.088000px;}
.ws6_c00279{word-spacing:-0.216000px;}
.ws8_c00279{word-spacing:0.000000px;}
.ws2_c00279{word-spacing:1.437696px;}
.ws3_c00279{word-spacing:1.557504px;}
.ws0_c00279{word-spacing:4.176000px;}
.ws7_c00279{word-spacing:7.128000px;}
.ws4_c00279{word-spacing:7.338240px;}
._0_c00279{margin-left:-6.408000px;}
._2_c00279{margin-left:-3.240000px;}
._1_c00279{margin-left:-1.087200px;}
._5_c00279{width:2.016000px;}
._6_c00279{width:3.333600px;}
._3_c00279{width:6.912000px;}
._4_c00279{width:8.712000px;}
.fc0_c00279{color:rgb(0,0,0);}
.fs0_c00279{font-size:72.000000px;}
.fs1_c00279{font-size:149.760000px;}
.y0_c00279{bottom:0.000000px;}
.y2_c00279{bottom:29.453850px;}
.y1_c00279{bottom:338.428650px;}
.y4_c00279{bottom:556.479120px;}
.y3_c00279{bottom:601.482000px;}
.h1_c00279{height:63.597656px;}
.h2_c00279{height:132.283125px;}
.h0_c00279{height:810.000000px;}
.w0_c00279{width:1440.000000px;}
.x0_c00279{left:0.000000px;}
.x4_c00279{left:67.403730px;}
.x3_c00279{left:200.802450px;}
.x2_c00279{left:337.124250px;}
.x1_c00279{left:948.849000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls2_c00279{letter-spacing:-6.336000pt;}
.ls8_c00279{letter-spacing:-2.795520pt;}
.ls3_c00279{letter-spacing:-1.856000pt;}
.ls6_c00279{letter-spacing:-0.133120pt;}
.ls5_c00279{letter-spacing:0.000000pt;}
.ls4_c00279{letter-spacing:0.064000pt;}
.ls1_c00279{letter-spacing:0.192000pt;}
.ls7_c00279{letter-spacing:0.266240pt;}
.ls0_c00279{letter-spacing:37.273600pt;}
.ws5_c00279{word-spacing:-37.273600pt;}
.ws1_c00279{word-spacing:-17.856000pt;}
.ws6_c00279{word-spacing:-0.192000pt;}
.ws8_c00279{word-spacing:0.000000pt;}
.ws2_c00279{word-spacing:1.277952pt;}
.ws3_c00279{word-spacing:1.384448pt;}
.ws0_c00279{word-spacing:3.712000pt;}
.ws7_c00279{word-spacing:6.336000pt;}
.ws4_c00279{word-spacing:6.522880pt;}
._0_c00279{margin-left:-5.696000pt;}
._2_c00279{margin-left:-2.880000pt;}
._1_c00279{margin-left:-0.966400pt;}
._5_c00279{width:1.792000pt;}
._6_c00279{width:2.963200pt;}
._3_c00279{width:6.144000pt;}
._4_c00279{width:7.744000pt;}
.fs0_c00279{font-size:64.000000pt;}
.fs1_c00279{font-size:133.120000pt;}
.y0_c00279{bottom:0.000000pt;}
.y2_c00279{bottom:26.181200pt;}
.y1_c00279{bottom:300.825467pt;}
.y4_c00279{bottom:494.648107pt;}
.y3_c00279{bottom:534.650667pt;}
.h1_c00279{height:56.531250pt;}
.h2_c00279{height:117.585000pt;}
.h0_c00279{height:720.000000pt;}
.w0_c00279{width:1280.000000pt;}
.x0_c00279{left:0.000000pt;}
.x4_c00279{left:59.914427pt;}
.x3_c00279{left:178.491067pt;}
.x2_c00279{left:299.666000pt;}
.x1_c00279{left:843.421333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19265183d1be823e9416dd74.woff')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.165527;font-style: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;}
.ls0_c00280{letter-spacing:-7.128000px;}
.ls1_c00280{letter-spacing:-0.216000px;}
.ls2_c00280{letter-spacing:0.000000px;}
.ls3_c00280{letter-spacing:0.299520px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00280{word-spacing:-20.016000px;}
.ws4_c00280{word-spacing:-0.299520px;}
.ws3_c00280{word-spacing:0.000000px;}
.ws0_c00280{word-spacing:0.792000px;}
.ws2_c00280{word-spacing:7.128000px;}
._2_c00280{margin-left:-7.056000px;}
._5_c00280{margin-left:-3.085056px;}
._4_c00280{margin-left:-1.800000px;}
._3_c00280{width:1.008000px;}
._6_c00280{width:2.216448px;}
._7_c00280{width:3.522240px;}
._0_c00280{width:6.912000px;}
._1_c00280{width:8.712000px;}
.fc0_c00280{color:rgb(0,0,0);}
.fs0_c00280{font-size:72.000000px;}
.fs1_c00280{font-size:149.760000px;}
.y0_c00280{bottom:0.000000px;}
.y2_c00280{bottom:152.002050px;}
.y1_c00280{bottom:200.314050px;}
.y4_c00280{bottom:652.814070px;}
.y3_c00280{bottom:697.816950px;}
.h1_c00280{height:63.597656px;}
.h2_c00280{height:132.283125px;}
.h0_c00280{height:810.000000px;}
.w0_c00280{width:1440.000000px;}
.x0_c00280{left:0.000000px;}
.x1_c00280{left:292.076850px;}
.x4_c00280{left:509.067720px;}
.x3_c00280{left:628.950600px;}
.x2_c00280{left:1010.132850px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls0_c00280{letter-spacing:-6.336000pt;}
.ls1_c00280{letter-spacing:-0.192000pt;}
.ls2_c00280{letter-spacing:0.000000pt;}
.ls3_c00280{letter-spacing:0.266240pt;}
.ws1_c00280{word-spacing:-17.792000pt;}
.ws4_c00280{word-spacing:-0.266240pt;}
.ws3_c00280{word-spacing:0.000000pt;}
.ws0_c00280{word-spacing:0.704000pt;}
.ws2_c00280{word-spacing:6.336000pt;}
._2_c00280{margin-left:-6.272000pt;}
._5_c00280{margin-left:-2.742272pt;}
._4_c00280{margin-left:-1.600000pt;}
._3_c00280{width:0.896000pt;}
._6_c00280{width:1.970176pt;}
._7_c00280{width:3.130880pt;}
._0_c00280{width:6.144000pt;}
._1_c00280{width:7.744000pt;}
.fs0_c00280{font-size:64.000000pt;}
.fs1_c00280{font-size:133.120000pt;}
.y0_c00280{bottom:0.000000pt;}
.y2_c00280{bottom:135.112933pt;}
.y1_c00280{bottom:178.056933pt;}
.y4_c00280{bottom:580.279173pt;}
.y3_c00280{bottom:620.281733pt;}
.h1_c00280{height:56.531250pt;}
.h2_c00280{height:117.585000pt;}
.h0_c00280{height:720.000000pt;}
.w0_c00280{width:1280.000000pt;}
.x0_c00280{left:0.000000pt;}
.x1_c00280{left:259.623867pt;}
.x4_c00280{left:452.504640pt;}
.x3_c00280{left:559.067200pt;}
.x2_c00280{left:897.895867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75f685e8a3f5efc30c242860.woff')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.165527;font-style:normal;font-weight:normal;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_acc785ca248e4beb4c6c3bac.woff')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:0.868164;font-style: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:-7.128000px;}
.ls5_c00281{letter-spacing:-2.088000px;}
.ls6_c00281{letter-spacing:0.000000px;}
.ls1_c00281{letter-spacing:0.072000px;}
.ls3_c00281{letter-spacing:0.216000px;}
.ls2_c00281{letter-spacing:0.288000px;}
.ls7_c00281{letter-spacing:0.299520px;}
.ls0_c00281{letter-spacing:41.783040px;}
.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:-20.304000px;}
.ws2_c00281{word-spacing:-20.088000px;}
.ws7_c00281{word-spacing:-0.299520px;}
.ws4_c00281{word-spacing:-0.216000px;}
.ws3_c00281{word-spacing:-0.072000px;}
.ws6_c00281{word-spacing:0.000000px;}
.ws1_c00281{word-spacing:4.176000px;}
.ws5_c00281{word-spacing:7.128000px;}
._9_c00281{margin-left:-15.885504px;}
._1_c00281{margin-left:-7.200000px;}
._7_c00281{margin-left:-3.887424px;}
._3_c00281{margin-left:-2.088000px;}
._2_c00281{margin-left:-1.080000px;}
._0_c00281{width:1.224000px;}
._6_c00281{width:3.168000px;}
._8_c00281{width:4.396032px;}
._4_c00281{width:6.912000px;}
._5_c00281{width:8.712000px;}
.fc0_c00281{color:rgb(0,0,0);}
.fs0_c00281{font-size:72.000000px;}
.fs1_c00281{font-size:149.760000px;}
.y0_c00281{bottom:0.000000px;}
.y2_c00281{bottom:10.548000px;}
.y1_c00281{bottom:109.080000px;}
.y3_c00281{bottom:442.944000px;}
.y6_c00281{bottom:610.178490px;}
.y5_c00281{bottom:655.181370px;}
.y4_c00281{bottom:700.184250px;}
.h1_c00281{height:63.597656px;}
.h2_c00281{height:132.283125px;}
.h0_c00281{height:810.000000px;}
.w0_c00281{width:1440.000000px;}
.x0_c00281{left:0.000000px;}
.x6_c00281{left:115.322880px;}
.x5_c00281{left:122.885760px;}
.x4_c00281{left:196.492800px;}
.x1_c00281{left:238.972500px;}
.x2_c00281{left:998.212500px;}
.x3_c00281{left:1008.544500px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls4_c00281{letter-spacing:-6.336000pt;}
.ls5_c00281{letter-spacing:-1.856000pt;}
.ls6_c00281{letter-spacing:0.000000pt;}
.ls1_c00281{letter-spacing:0.064000pt;}
.ls3_c00281{letter-spacing:0.192000pt;}
.ls2_c00281{letter-spacing:0.256000pt;}
.ls7_c00281{letter-spacing:0.266240pt;}
.ls0_c00281{letter-spacing:37.140480pt;}
.ws0_c00281{word-spacing:-18.048000pt;}
.ws2_c00281{word-spacing:-17.856000pt;}
.ws7_c00281{word-spacing:-0.266240pt;}
.ws4_c00281{word-spacing:-0.192000pt;}
.ws3_c00281{word-spacing:-0.064000pt;}
.ws6_c00281{word-spacing:0.000000pt;}
.ws1_c00281{word-spacing:3.712000pt;}
.ws5_c00281{word-spacing:6.336000pt;}
._9_c00281{margin-left:-14.120448pt;}
._1_c00281{margin-left:-6.400000pt;}
._7_c00281{margin-left:-3.455488pt;}
._3_c00281{margin-left:-1.856000pt;}
._2_c00281{margin-left:-0.960000pt;}
._0_c00281{width:1.088000pt;}
._6_c00281{width:2.816000pt;}
._8_c00281{width:3.907584pt;}
._4_c00281{width:6.144000pt;}
._5_c00281{width:7.744000pt;}
.fs0_c00281{font-size:64.000000pt;}
.fs1_c00281{font-size:133.120000pt;}
.y0_c00281{bottom:0.000000pt;}
.y2_c00281{bottom:9.376000pt;}
.y1_c00281{bottom:96.960000pt;}
.y3_c00281{bottom:393.728000pt;}
.y6_c00281{bottom:542.380880pt;}
.y5_c00281{bottom:582.383440pt;}
.y4_c00281{bottom:622.386000pt;}
.h1_c00281{height:56.531250pt;}
.h2_c00281{height:117.585000pt;}
.h0_c00281{height:720.000000pt;}
.w0_c00281{width:1280.000000pt;}
.x0_c00281{left:0.000000pt;}
.x6_c00281{left:102.509227pt;}
.x5_c00281{left:109.231787pt;}
.x4_c00281{left:174.660267pt;}
.x1_c00281{left:212.420000pt;}
.x2_c00281{left:887.300000pt;}
.x3_c00281{left:896.484000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f75f8880c0ecdb09ec2e14fd.woff')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.165527;font-style:normal;font-weight:normal;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_acc785ca248e4beb4c6c3bac.woff')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:0.868164;font-style: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;}
.ls4_c00282{letter-spacing:-2.995200px;}
.ls2_c00282{letter-spacing:0.000000px;}
.ls1_c00282{letter-spacing:0.108000px;}
.ls5_c00282{letter-spacing:0.149760px;}
.ls3_c00282{letter-spacing:0.216000px;}
.ls0_c00282{letter-spacing:30.240000px;}
.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:-38.638080px;}
.ws3_c00282{word-spacing:-0.216000px;}
.ws4_c00282{word-spacing:-0.149760px;}
.ws1_c00282{word-spacing:-0.108000px;}
.ws2_c00282{word-spacing:0.000000px;}
._1_c00282{margin-left:-11.275200px;}
._5_c00282{margin-left:-6.620400px;}
._6_c00282{margin-left:-5.551200px;}
._2_c00282{margin-left:-3.283200px;}
._4_c00282{margin-left:-2.203200px;}
._0_c00282{margin-left:-1.047600px;}
._3_c00282{width:1.944000px;}
._7_c00282{width:3.911616px;}
.fc1_c00282{color:rgb(0,0,0);}
.fc0_c00282{color:rgb(38,38,38);}
.fs0_c00282{font-size:108.000000px;}
.fs1_c00282{font-size:149.760000px;}
.y0_c00282{bottom:0.000000px;}
.y9_c00282{bottom:28.522200px;}
.y7_c00282{bottom:417.317250px;}
.y6_c00282{bottom:449.717250px;}
.y5_c00282{bottom:482.117250px;}
.y4_c00282{bottom:529.637250px;}
.y3_c00282{bottom:562.037250px;}
.y2_c00282{bottom:594.437250px;}
.y1_c00282{bottom:626.837250px;}
.y8_c00282{bottom:681.084750px;}
.h1_c00282{height:95.396484px;}
.h2_c00282{height:132.283125px;}
.h0_c00282{height:810.000000px;}
.w0_c00282{width:1440.000000px;}
.x0_c00282{left:0.000000px;}
.x3_c00282{left:190.776900px;}
.x1_c00282{left:201.576900px;}
.x2_c00282{left:205.167900px;}
.x6_c00282{left:216.345900px;}
.x5_c00282{left:231.465900px;}
.x4_c00282{left:411.825900px;}
.x7_c00282{left:505.974900px;}
.x9_c00282{left:571.292100px;}
.x8_c00282{left:702.782550px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls4_c00282{letter-spacing:-2.662400pt;}
.ls2_c00282{letter-spacing:0.000000pt;}
.ls1_c00282{letter-spacing:0.096000pt;}
.ls5_c00282{letter-spacing:0.133120pt;}
.ls3_c00282{letter-spacing:0.192000pt;}
.ls0_c00282{letter-spacing:26.880000pt;}
.ws0_c00282{word-spacing:-34.344960pt;}
.ws3_c00282{word-spacing:-0.192000pt;}
.ws4_c00282{word-spacing:-0.133120pt;}
.ws1_c00282{word-spacing:-0.096000pt;}
.ws2_c00282{word-spacing:0.000000pt;}
._1_c00282{margin-left:-10.022400pt;}
._5_c00282{margin-left:-5.884800pt;}
._6_c00282{margin-left:-4.934400pt;}
._2_c00282{margin-left:-2.918400pt;}
._4_c00282{margin-left:-1.958400pt;}
._0_c00282{margin-left:-0.931200pt;}
._3_c00282{width:1.728000pt;}
._7_c00282{width:3.476992pt;}
.fs0_c00282{font-size:96.000000pt;}
.fs1_c00282{font-size:133.120000pt;}
.y0_c00282{bottom:0.000000pt;}
.y9_c00282{bottom:25.353067pt;}
.y7_c00282{bottom:370.948667pt;}
.y6_c00282{bottom:399.748667pt;}
.y5_c00282{bottom:428.548667pt;}
.y4_c00282{bottom:470.788667pt;}
.y3_c00282{bottom:499.588667pt;}
.y2_c00282{bottom:528.388667pt;}
.y1_c00282{bottom:557.188667pt;}
.y8_c00282{bottom:605.408667pt;}
.h1_c00282{height:84.796875pt;}
.h2_c00282{height:117.585000pt;}
.h0_c00282{height:720.000000pt;}
.w0_c00282{width:1280.000000pt;}
.x0_c00282{left:0.000000pt;}
.x3_c00282{left:169.579467pt;}
.x1_c00282{left:179.179467pt;}
.x2_c00282{left:182.371467pt;}
.x6_c00282{left:192.307467pt;}
.x5_c00282{left:205.747467pt;}
.x4_c00282{left:366.067467pt;}
.x7_c00282{left:449.755467pt;}
.x9_c00282{left:507.815200pt;}
.x8_c00282{left:624.695600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7b9ad5b0bd39179129f5bce.woff')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.032000;font-style:normal;font-weight:normal;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_036b41d62d7b98d89d8f08f2.woff')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00283;src:url('chunks/assets/font_8892c00a38aab4d614e3aa7b.woff')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.089280px;}
.ls2_c00283{letter-spacing:0.000000px;}
.ls1_c00283{letter-spacing:2.053440px;}
.sc__c00283{text-shadow:none;}
.sc1_c00283{text-shadow:-0.015em 0 rgb(15,81,131),0 0.015em rgb(15,81,131),0.015em 0 rgb(15,81,131),0 -0.015em  rgb(15,81,131);}
.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;}
.sc1_c00283{-webkit-text-stroke:0.015em rgb(15,81,131);text-shadow:none;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00283{word-spacing:-2.142720px;}
.ws0_c00283{word-spacing:0.000000px;}
._6_c00283{margin-left:-7.687320px;}
._2_c00283{width:2.312352px;}
._0_c00283{width:3.472992px;}
._3_c00283{width:5.115744px;}
._1_c00283{width:6.374592px;}
._4_c00283{width:35.802120px;}
._5_c00283{width:70.930680px;}
.fc0_c00283{color:rgb(15,81,131);}
.fs0_c00283{font-size:89.280000px;}
.fs2_c00283{font-size:149.760000px;}
.fs1_c00283{font-size:347.760000px;}
.fs3_c00283{font-size:390.240000px;}
.y0_c00283{bottom:0.000000px;}
.y2_c00283{bottom:3.651150px;}
.y1_c00283{bottom:35.151150px;}
.y6_c00283{bottom:259.242900px;}
.y5_c00283{bottom:311.802900px;}
.y4_c00283{bottom:364.182900px;}
.y3_c00283{bottom:434.022900px;}
.y8_c00283{bottom:774.254850px;}
.y7_c00283{bottom:910.694850px;}
.h1_c00283{height:68.745600px;}
.h3_c00283{height:134.257500px;}
.h2_c00283{height:311.761406px;}
.h4_c00283{height:349.844063px;}
.h0_c00283{height:1215.000000px;}
.w0_c00283{width:2160.000000px;}
.x0_c00283{left:0.000000px;}
.x6_c00283{left:160.200000px;}
.x7_c00283{left:386.460000px;}
.x2_c00283{left:499.637850px;}
.x5_c00283{left:684.137850px;}
.x4_c00283{left:778.637850px;}
.x3_c00283{left:783.857850px;}
.x1_c00283{left:1847.949600px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:-0.079360pt;}
.ls2_c00283{letter-spacing:0.000000pt;}
.ls1_c00283{letter-spacing:1.825280pt;}
.ws1_c00283{word-spacing:-1.904640pt;}
.ws0_c00283{word-spacing:0.000000pt;}
._6_c00283{margin-left:-6.833173pt;}
._2_c00283{width:2.055424pt;}
._0_c00283{width:3.087104pt;}
._3_c00283{width:4.547328pt;}
._1_c00283{width:5.666304pt;}
._4_c00283{width:31.824107pt;}
._5_c00283{width:63.049493pt;}
.fs0_c00283{font-size:79.360000pt;}
.fs2_c00283{font-size:133.120000pt;}
.fs1_c00283{font-size:309.120000pt;}
.fs3_c00283{font-size:346.880000pt;}
.y0_c00283{bottom:0.000000pt;}
.y2_c00283{bottom:3.245467pt;}
.y1_c00283{bottom:31.245467pt;}
.y6_c00283{bottom:230.438133pt;}
.y5_c00283{bottom:277.158133pt;}
.y4_c00283{bottom:323.718133pt;}
.y3_c00283{bottom:385.798133pt;}
.y8_c00283{bottom:688.226533pt;}
.y7_c00283{bottom:809.506533pt;}
.h1_c00283{height:61.107200pt;}
.h3_c00283{height:119.340000pt;}
.h2_c00283{height:277.121250pt;}
.h4_c00283{height:310.972500pt;}
.h0_c00283{height:1080.000000pt;}
.w0_c00283{width:1920.000000pt;}
.x0_c00283{left:0.000000pt;}
.x6_c00283{left:142.400000pt;}
.x7_c00283{left:343.520000pt;}
.x2_c00283{left:444.122533pt;}
.x5_c00283{left:608.122533pt;}
.x4_c00283{left:692.122533pt;}
.x3_c00283{left:696.762533pt;}
.x1_c00283{left:1642.621867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51b4125f0391c3f14afdca2b.woff')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00284;src:url('chunks/assets/font_569dfe20f681f23344f38169.woff')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00284;src:url('chunks/assets/font_99657b4e0b8832a4ed823a04.woff')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00284;src:url('chunks/assets/font_08173905aeea94b3113fb664.woff')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00284;src:url('chunks/assets/font_8a317ee1e06d8e5624c52d69.woff')format("woff");}.ff5_c00284{font-family:ff5_c00284;line-height:1.114258;font-style: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;}
.ls9_c00284{letter-spacing:-16.608960px;}
.ls11_c00284{letter-spacing:-0.224640px;}
.ls8_c00284{letter-spacing:0.000000px;}
.ls10_c00284{letter-spacing:0.224640px;}
.lsf_c00284{letter-spacing:9.460800px;}
.lsb_c00284{letter-spacing:10.091520px;}
.lsc_c00284{letter-spacing:11.773440px;}
.ls3_c00284{letter-spacing:14.716800px;}
.lse_c00284{letter-spacing:18.080640px;}
.lsd_c00284{letter-spacing:18.711360px;}
.lsa_c00284{letter-spacing:19.552320px;}
.ls5_c00284{letter-spacing:28.172160px;}
.ls4_c00284{letter-spacing:28.802880px;}
.ls6_c00284{letter-spacing:66.856320px;}
.ls7_c00284{letter-spacing:67.697280px;}
.ls0_c00284{letter-spacing:104.976000px;}
.ls2_c00284{letter-spacing:123.831360px;}
.ls1_c00284{letter-spacing:124.462080px;}
.sc__c00284{text-shadow:none;}
.sc1_c00284{text-shadow:-0.015em 0 rgb(15,81,131),0 0.015em rgb(15,81,131),0.015em 0 rgb(15,81,131),0 -0.015em  rgb(15,81,131);}
.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;}
.sc1_c00284{-webkit-text-stroke:0.015em rgb(15,81,131);text-shadow:none;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00284{word-spacing:-229.792320px;}
.ws6_c00284{word-spacing:-228.951360px;}
.ws8_c00284{word-spacing:-228.320640px;}
.ws5_c00284{word-spacing:-222.013440px;}
.wsc_c00284{word-spacing:-220.331520px;}
.wsa_c00284{word-spacing:-219.700800px;}
.ws0_c00284{word-spacing:-210.240000px;}
.ws1_c00284{word-spacing:-193.631040px;}
.wsb_c00284{word-spacing:-158.436864px;}
.ws3_c00284{word-spacing:-158.289696px;}
.ws7_c00284{word-spacing:-157.595904px;}
.ws9_c00284{word-spacing:-157.574880px;}
.ws4_c00284{word-spacing:-62.651520px;}
.wse_c00284{word-spacing:-0.224640px;}
.wsd_c00284{word-spacing:0.000000px;}
.wsf_c00284{word-spacing:0.224640px;}
._12_c00284{margin-left:-122.191488px;}
._5_c00284{margin-left:-121.056192px;}
._8_c00284{margin-left:-51.025248px;}
._1b_c00284{margin-left:-35.404416px;}
._1f_c00284{margin-left:-31.367808px;}
._17_c00284{margin-left:-27.856800px;}
._24_c00284{margin-left:-23.504832px;}
._6_c00284{margin-left:-19.131840px;}
._15_c00284{margin-left:-17.954496px;}
._14_c00284{margin-left:-16.693056px;}
._1e_c00284{margin-left:-15.116256px;}
._18_c00284{margin-left:-13.938912px;}
._0_c00284{margin-left:-11.142720px;}
._13_c00284{margin-left:-10.070496px;}
._b_c00284{margin-left:-8.640864px;}
._1d_c00284{margin-left:-6.895872px;}
._9_c00284{margin-left:-5.613408px;}
._a_c00284{margin-left:-4.183776px;}
._7_c00284{margin-left:-1.660896px;}
._1a_c00284{width:1.219392px;}
._19_c00284{width:3.574080px;}
._11_c00284{width:6.349248px;}
._1c_c00284{width:7.568640px;}
._25_c00284{width:9.187488px;}
._20_c00284{width:10.238688px;}
._16_c00284{width:13.308192px;}
._1_c00284{width:15.158304px;}
._d_c00284{width:17.744256px;}
._e_c00284{width:19.321056px;}
._3_c00284{width:20.456352px;}
._22_c00284{width:24.408864px;}
._2_c00284{width:26.700480px;}
._10_c00284{width:28.424448px;}
._4_c00284{width:31.262688px;}
._f_c00284{width:42.048000px;}
._23_c00284{width:65.973312px;}
._21_c00284{width:67.760352px;}
._c_c00284{width:124.882560px;}
.fc1_c00284{color:rgb(0,0,0);}
.fc0_c00284{color:rgb(15,81,131);}
.fs2_c00284{font-size:112.320000px;}
.fs0_c00284{font-size:210.240000px;}
.fs1_c00284{font-size:360.000000px;}
.y0_c00284{bottom:0.000000px;}
.y8_c00284{bottom:328.730970px;}
.y7_c00284{bottom:367.790250px;}
.y6_c00284{bottom:406.681050px;}
.y4_c00284{bottom:624.050550px;}
.y3_c00284{bottom:697.476870px;}
.y2_c00284{bottom:770.903190px;}
.y1_c00284{bottom:844.539750px;}
.y5_c00284{bottom:1013.625000px;}
.h4_c00284{height:101.515781px;}
.h2_c00284{height:184.473281px;}
.h1_c00284{height:188.476875px;}
.h3_c00284{height:322.734375px;}
.h0_c00284{height:1215.000000px;}
.w0_c00284{width:2160.000000px;}
.x0_c00284{left:0.000000px;}
.x3_c00284{left:121.500000px;}
.x1_c00284{left:166.140000px;}
.x2_c00284{left:210.622320px;}
.x4_c00284{left:1088.678700px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls9_c00284{letter-spacing:-14.763520pt;}
.ls11_c00284{letter-spacing:-0.199680pt;}
.ls8_c00284{letter-spacing:0.000000pt;}
.ls10_c00284{letter-spacing:0.199680pt;}
.lsf_c00284{letter-spacing:8.409600pt;}
.lsb_c00284{letter-spacing:8.970240pt;}
.lsc_c00284{letter-spacing:10.465280pt;}
.ls3_c00284{letter-spacing:13.081600pt;}
.lse_c00284{letter-spacing:16.071680pt;}
.lsd_c00284{letter-spacing:16.632320pt;}
.lsa_c00284{letter-spacing:17.379840pt;}
.ls5_c00284{letter-spacing:25.041920pt;}
.ls4_c00284{letter-spacing:25.602560pt;}
.ls6_c00284{letter-spacing:59.427840pt;}
.ls7_c00284{letter-spacing:60.175360pt;}
.ls0_c00284{letter-spacing:93.312000pt;}
.ls2_c00284{letter-spacing:110.072320pt;}
.ls1_c00284{letter-spacing:110.632960pt;}
.ws2_c00284{word-spacing:-204.259840pt;}
.ws6_c00284{word-spacing:-203.512320pt;}
.ws8_c00284{word-spacing:-202.951680pt;}
.ws5_c00284{word-spacing:-197.345280pt;}
.wsc_c00284{word-spacing:-195.850240pt;}
.wsa_c00284{word-spacing:-195.289600pt;}
.ws0_c00284{word-spacing:-186.880000pt;}
.ws1_c00284{word-spacing:-172.116480pt;}
.wsb_c00284{word-spacing:-140.832768pt;}
.ws3_c00284{word-spacing:-140.701952pt;}
.ws7_c00284{word-spacing:-140.085248pt;}
.ws9_c00284{word-spacing:-140.066560pt;}
.ws4_c00284{word-spacing:-55.690240pt;}
.wse_c00284{word-spacing:-0.199680pt;}
.wsd_c00284{word-spacing:0.000000pt;}
.wsf_c00284{word-spacing:0.199680pt;}
._12_c00284{margin-left:-108.614656pt;}
._5_c00284{margin-left:-107.605504pt;}
._8_c00284{margin-left:-45.355776pt;}
._1b_c00284{margin-left:-31.470592pt;}
._1f_c00284{margin-left:-27.882496pt;}
._17_c00284{margin-left:-24.761600pt;}
._24_c00284{margin-left:-20.893184pt;}
._6_c00284{margin-left:-17.006080pt;}
._15_c00284{margin-left:-15.959552pt;}
._14_c00284{margin-left:-14.838272pt;}
._1e_c00284{margin-left:-13.436672pt;}
._18_c00284{margin-left:-12.390144pt;}
._0_c00284{margin-left:-9.904640pt;}
._13_c00284{margin-left:-8.951552pt;}
._b_c00284{margin-left:-7.680768pt;}
._1d_c00284{margin-left:-6.129664pt;}
._9_c00284{margin-left:-4.989696pt;}
._a_c00284{margin-left:-3.718912pt;}
._7_c00284{margin-left:-1.476352pt;}
._1a_c00284{width:1.083904pt;}
._19_c00284{width:3.176960pt;}
._11_c00284{width:5.643776pt;}
._1c_c00284{width:6.727680pt;}
._25_c00284{width:8.166656pt;}
._20_c00284{width:9.101056pt;}
._16_c00284{width:11.829504pt;}
._1_c00284{width:13.474048pt;}
._d_c00284{width:15.772672pt;}
._e_c00284{width:17.174272pt;}
._3_c00284{width:18.183424pt;}
._22_c00284{width:21.696768pt;}
._2_c00284{width:23.733760pt;}
._10_c00284{width:25.266176pt;}
._4_c00284{width:27.789056pt;}
._f_c00284{width:37.376000pt;}
._23_c00284{width:58.642944pt;}
._21_c00284{width:60.231424pt;}
._c_c00284{width:111.006720pt;}
.fs2_c00284{font-size:99.840000pt;}
.fs0_c00284{font-size:186.880000pt;}
.fs1_c00284{font-size:320.000000pt;}
.y0_c00284{bottom:0.000000pt;}
.y8_c00284{bottom:292.205307pt;}
.y7_c00284{bottom:326.924667pt;}
.y6_c00284{bottom:361.494267pt;}
.y4_c00284{bottom:554.711600pt;}
.y3_c00284{bottom:619.979440pt;}
.y2_c00284{bottom:685.247280pt;}
.y1_c00284{bottom:750.702000pt;}
.y5_c00284{bottom:901.000000pt;}
.h4_c00284{height:90.236250pt;}
.h2_c00284{height:163.976250pt;}
.h1_c00284{height:167.535000pt;}
.h3_c00284{height:286.875000pt;}
.h0_c00284{height:1080.000000pt;}
.w0_c00284{width:1920.000000pt;}
.x0_c00284{left:0.000000pt;}
.x3_c00284{left:108.000000pt;}
.x1_c00284{left:147.680000pt;}
.x2_c00284{left:187.219840pt;}
.x4_c00284{left:967.714400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8d96e0f11ee81ed80989aff.woff')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00285;src:url('chunks/assets/font_16ba46ea19aeac273169fa59.woff')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00285{letter-spacing:0.000000px;}
.ls0_c00285{letter-spacing:36.581760px;}
.ls1_c00285{letter-spacing:39.525120px;}
.ls2_c00285{letter-spacing:65.384640px;}
.sc__c00285{text-shadow:none;}
.sc1_c00285{text-shadow:-0.015em 0 rgb(15,81,131),0 0.015em rgb(15,81,131),0.015em 0 rgb(15,81,131),0 -0.015em  rgb(15,81,131);}
.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;}
.sc1_c00285{-webkit-text-stroke:0.015em rgb(15,81,131);text-shadow:none;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00285{word-spacing:-58.446720px;}
.ws1_c00285{word-spacing:-8.409600px;}
.ws2_c00285{word-spacing:0.000000px;}
._d_c00285{margin-left:-20.603520px;}
._a_c00285{margin-left:-18.290880px;}
._9_c00285{margin-left:-17.239680px;}
._3_c00285{margin-left:-14.086080px;}
._e_c00285{margin-left:-12.193920px;}
._1_c00285{margin-left:-7.989120px;}
._4_c00285{margin-left:-3.994560px;}
._8_c00285{width:3.574080px;}
._b_c00285{width:9.250560px;}
._7_c00285{width:10.512000px;}
._5_c00285{width:12.824640px;}
._6_c00285{width:19.972800px;}
._f_c00285{width:25.649280px;}
._2_c00285{width:36.581760px;}
._c_c00285{width:39.525120px;}
._10_c00285{width:65.384640px;}
._0_c00285{width:104.976000px;}
.fc0_c00285{color:rgb(15,81,131);}
.fs0_c00285{font-size:210.240000px;}
.fs1_c00285{font-size:360.000000px;}
.y0_c00285{bottom:0.000000px;}
.y6_c00285{bottom:274.050660px;}
.y5_c00285{bottom:347.476980px;}
.y4_c00285{bottom:420.903300px;}
.y3_c00285{bottom:567.960420px;}
.y2_c00285{bottom:641.386740px;}
.y1_c00285{bottom:715.023300px;}
.y8_c00285{bottom:887.625000px;}
.y7_c00285{bottom:1013.625000px;}
.h1_c00285{height:188.476875px;}
.h2_c00285{height:322.734375px;}
.h0_c00285{height:1215.000000px;}
.w0_c00285{width:2160.000000px;}
.x0_c00285{left:0.000000px;}
.x3_c00285{left:121.500000px;}
.x1_c00285{left:166.140000px;}
.x2_c00285{left:210.885120px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls3_c00285{letter-spacing:0.000000pt;}
.ls0_c00285{letter-spacing:32.517120pt;}
.ls1_c00285{letter-spacing:35.133440pt;}
.ls2_c00285{letter-spacing:58.119680pt;}
.ws0_c00285{word-spacing:-51.952640pt;}
.ws1_c00285{word-spacing:-7.475200pt;}
.ws2_c00285{word-spacing:0.000000pt;}
._d_c00285{margin-left:-18.314240pt;}
._a_c00285{margin-left:-16.258560pt;}
._9_c00285{margin-left:-15.324160pt;}
._3_c00285{margin-left:-12.520960pt;}
._e_c00285{margin-left:-10.839040pt;}
._1_c00285{margin-left:-7.101440pt;}
._4_c00285{margin-left:-3.550720pt;}
._8_c00285{width:3.176960pt;}
._b_c00285{width:8.222720pt;}
._7_c00285{width:9.344000pt;}
._5_c00285{width:11.399680pt;}
._6_c00285{width:17.753600pt;}
._f_c00285{width:22.799360pt;}
._2_c00285{width:32.517120pt;}
._c_c00285{width:35.133440pt;}
._10_c00285{width:58.119680pt;}
._0_c00285{width:93.312000pt;}
.fs0_c00285{font-size:186.880000pt;}
.fs1_c00285{font-size:320.000000pt;}
.y0_c00285{bottom:0.000000pt;}
.y6_c00285{bottom:243.600587pt;}
.y5_c00285{bottom:308.868427pt;}
.y4_c00285{bottom:374.136267pt;}
.y3_c00285{bottom:504.853707pt;}
.y2_c00285{bottom:570.121547pt;}
.y1_c00285{bottom:635.576267pt;}
.y8_c00285{bottom:789.000000pt;}
.y7_c00285{bottom:901.000000pt;}
.h1_c00285{height:167.535000pt;}
.h2_c00285{height:286.875000pt;}
.h0_c00285{height:1080.000000pt;}
.w0_c00285{width:1920.000000pt;}
.x0_c00285{left:0.000000pt;}
.x3_c00285{left:108.000000pt;}
.x1_c00285{left:147.680000pt;}
.x2_c00285{left:187.453440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f389a76b2d4f12b0b60f210.woff')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00286;src:url('chunks/assets/font_a4d0b171f9d397dc16f1d58d.woff')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00286;src:url('chunks/assets/font_056e0062eb71da67066f0a24.woff')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00286;src:url('chunks/assets/font_6a9e52af4875cfca46c72575.woff')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls3_c00286{letter-spacing:-16.608960px;}
.ls1_c00286{letter-spacing:0.000000px;}
.ls4_c00286{letter-spacing:5.378400px;}
.ls2_c00286{letter-spacing:10.091520px;}
.ls0_c00286{letter-spacing:104.976000px;}
.sc__c00286{text-shadow:none;}
.sc1_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00286{text-shadow:-0.015em 0 rgb(15,81,131),0 0.015em rgb(15,81,131),0.015em 0 rgb(15,81,131),0 -0.015em  rgb(15,81,131);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc1_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00286{-webkit-text-stroke:0.015em rgb(15,81,131);text-shadow:none;}
}
.ws1_c00286{word-spacing:-62.651520px;}
.ws0_c00286{word-spacing:-58.446720px;}
.ws5_c00286{word-spacing:-5.378400px;}
.ws2_c00286{word-spacing:-1.345536px;}
.ws3_c00286{word-spacing:-0.756864px;}
.ws4_c00286{word-spacing:0.000000px;}
._7_c00286{margin-left:-10.764288px;}
._3_c00286{margin-left:-8.619840px;}
._0_c00286{margin-left:-7.148160px;}
._f_c00286{margin-left:-5.998176px;}
._d_c00286{margin-left:-4.553712px;}
._10_c00286{margin-left:-3.093552px;}
._e_c00286{margin-left:-1.944216px;}
._4_c00286{width:1.723968px;}
._2_c00286{width:3.363840px;}
._6_c00286{width:5.298048px;}
._5_c00286{width:8.493696px;}
._1_c00286{width:10.512000px;}
._b_c00286{width:18.080640px;}
._c_c00286{width:19.321056px;}
._a_c00286{width:26.700480px;}
._9_c00286{width:36.056160px;}
._8_c00286{width:42.447456px;}
.fc1_c00286{color:rgb(215,161,101);}
.fc0_c00286{color:rgb(15,81,131);}
.fs2_c00286{font-size:59.760000px;}
.fs1_c00286{font-size:210.240000px;}
.fs0_c00286{font-size:360.000000px;}
.y0_c00286{bottom:0.000000px;}
.y3_c00286{bottom:825.066150px;}
.y2_c00286{bottom:888.677550px;}
.y1_c00286{bottom:1013.625000px;}
.h3_c00286{height:52.435898px;}
.h2_c00286{height:188.476875px;}
.h1_c00286{height:322.734375px;}
.h0_c00286{height:1215.000000px;}
.w0_c00286{width:2160.000000px;}
.x0_c00286{left:0.000000px;}
.x1_c00286{left:121.500000px;}
.x2_c00286{left:166.140000px;}
.x3_c00286{left:1941.277800px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls3_c00286{letter-spacing:-14.763520pt;}
.ls1_c00286{letter-spacing:0.000000pt;}
.ls4_c00286{letter-spacing:4.780800pt;}
.ls2_c00286{letter-spacing:8.970240pt;}
.ls0_c00286{letter-spacing:93.312000pt;}
.ws1_c00286{word-spacing:-55.690240pt;}
.ws0_c00286{word-spacing:-51.952640pt;}
.ws5_c00286{word-spacing:-4.780800pt;}
.ws2_c00286{word-spacing:-1.196032pt;}
.ws3_c00286{word-spacing:-0.672768pt;}
.ws4_c00286{word-spacing:0.000000pt;}
._7_c00286{margin-left:-9.568256pt;}
._3_c00286{margin-left:-7.662080pt;}
._0_c00286{margin-left:-6.353920pt;}
._f_c00286{margin-left:-5.331712pt;}
._d_c00286{margin-left:-4.047744pt;}
._10_c00286{margin-left:-2.749824pt;}
._e_c00286{margin-left:-1.728192pt;}
._4_c00286{width:1.532416pt;}
._2_c00286{width:2.990080pt;}
._6_c00286{width:4.709376pt;}
._5_c00286{width:7.549952pt;}
._1_c00286{width:9.344000pt;}
._b_c00286{width:16.071680pt;}
._c_c00286{width:17.174272pt;}
._a_c00286{width:23.733760pt;}
._9_c00286{width:32.049920pt;}
._8_c00286{width:37.731072pt;}
.fs2_c00286{font-size:53.120000pt;}
.fs1_c00286{font-size:186.880000pt;}
.fs0_c00286{font-size:320.000000pt;}
.y0_c00286{bottom:0.000000pt;}
.y3_c00286{bottom:733.392133pt;}
.y2_c00286{bottom:789.935600pt;}
.y1_c00286{bottom:901.000000pt;}
.h3_c00286{height:46.609688pt;}
.h2_c00286{height:167.535000pt;}
.h1_c00286{height:286.875000pt;}
.h0_c00286{height:1080.000000pt;}
.w0_c00286{width:1920.000000pt;}
.x0_c00286{left:0.000000pt;}
.x1_c00286{left:108.000000pt;}
.x2_c00286{left:147.680000pt;}
.x3_c00286{left:1725.580267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67aeb49f28d3110e44f1ad02.woff')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00287;src:url('chunks/assets/font_bddc925a28fb3d6c148516c1.woff')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00287;src:url('chunks/assets/font_8282f2e947188428dec755d8.woff')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00287;src:url('chunks/assets/font_be068a086fd71961d63ef718.woff')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls8_c00287{letter-spacing:-22.285440px;}
.ls6_c00287{letter-spacing:-16.608960px;}
.ls4_c00287{letter-spacing:0.000000px;}
.ls7_c00287{letter-spacing:1.261440px;}
.ls5_c00287{letter-spacing:10.091520px;}
.ls1_c00287{letter-spacing:92.715840px;}
.ls0_c00287{letter-spacing:93.556800px;}
.ls3_c00287{letter-spacing:162.095040px;}
.ls2_c00287{letter-spacing:285.716160px;}
.sc__c00287{text-shadow:none;}
.sc1_c00287{text-shadow:-0.015em 0 rgb(15,81,131),0 0.015em rgb(15,81,131),0.015em 0 rgb(15,81,131),0 -0.015em  rgb(15,81,131);}
.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;}
.sc1_c00287{-webkit-text-stroke:0.015em rgb(15,81,131);text-shadow:none;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00287{word-spacing:-220.331520px;}
.ws3_c00287{word-spacing:-211.501440px;}
.ws2_c00287{word-spacing:-159.025536px;}
.ws4_c00287{word-spacing:-150.300576px;}
.ws0_c00287{word-spacing:-58.446720px;}
.ws5_c00287{word-spacing:0.000000px;}
._8_c00287{margin-left:-19.762560px;}
._3_c00287{margin-left:-17.660160px;}
._6_c00287{margin-left:-10.301760px;}
._a_c00287{margin-left:-7.968096px;}
._9_c00287{margin-left:-2.312640px;}
._1_c00287{width:5.676480px;}
._5_c00287{width:8.199360px;}
._4_c00287{width:10.091520px;}
._f_c00287{width:13.392288px;}
._b_c00287{width:15.368544px;}
._10_c00287{width:16.608960px;}
._c_c00287{width:19.867680px;}
._e_c00287{width:23.084352px;}
._11_c00287{width:24.198624px;}
._d_c00287{width:31.998528px;}
._13_c00287{width:39.441024px;}
._12_c00287{width:41.732640px;}
._2_c00287{width:93.556800px;}
._0_c00287{width:104.976000px;}
._7_c00287{width:285.085440px;}
.fc0_c00287{color:rgb(15,81,131);}
.fs0_c00287{font-size:210.240000px;}
.fs1_c00287{font-size:360.000000px;}
.y0_c00287{bottom:0.000000px;}
.y4_c00287{bottom:624.050550px;}
.y3_c00287{bottom:697.476870px;}
.y2_c00287{bottom:770.903190px;}
.y1_c00287{bottom:844.539750px;}
.y5_c00287{bottom:1013.625000px;}
.h2_c00287{height:184.473281px;}
.h1_c00287{height:188.476875px;}
.h3_c00287{height:322.734375px;}
.h0_c00287{height:1215.000000px;}
.w0_c00287{width:2160.000000px;}
.x0_c00287{left:0.000000px;}
.x3_c00287{left:121.500000px;}
.x1_c00287{left:166.140000px;}
.x2_c00287{left:210.832560px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls8_c00287{letter-spacing:-19.809280pt;}
.ls6_c00287{letter-spacing:-14.763520pt;}
.ls4_c00287{letter-spacing:0.000000pt;}
.ls7_c00287{letter-spacing:1.121280pt;}
.ls5_c00287{letter-spacing:8.970240pt;}
.ls1_c00287{letter-spacing:82.414080pt;}
.ls0_c00287{letter-spacing:83.161600pt;}
.ls3_c00287{letter-spacing:144.084480pt;}
.ls2_c00287{letter-spacing:253.969920pt;}
.ws1_c00287{word-spacing:-195.850240pt;}
.ws3_c00287{word-spacing:-188.001280pt;}
.ws2_c00287{word-spacing:-141.356032pt;}
.ws4_c00287{word-spacing:-133.600512pt;}
.ws0_c00287{word-spacing:-51.952640pt;}
.ws5_c00287{word-spacing:0.000000pt;}
._8_c00287{margin-left:-17.566720pt;}
._3_c00287{margin-left:-15.697920pt;}
._6_c00287{margin-left:-9.157120pt;}
._a_c00287{margin-left:-7.082752pt;}
._9_c00287{margin-left:-2.055680pt;}
._1_c00287{width:5.045760pt;}
._5_c00287{width:7.288320pt;}
._4_c00287{width:8.970240pt;}
._f_c00287{width:11.904256pt;}
._b_c00287{width:13.660928pt;}
._10_c00287{width:14.763520pt;}
._c_c00287{width:17.660160pt;}
._e_c00287{width:20.519424pt;}
._11_c00287{width:21.509888pt;}
._d_c00287{width:28.443136pt;}
._13_c00287{width:35.058688pt;}
._12_c00287{width:37.095680pt;}
._2_c00287{width:83.161600pt;}
._0_c00287{width:93.312000pt;}
._7_c00287{width:253.409280pt;}
.fs0_c00287{font-size:186.880000pt;}
.fs1_c00287{font-size:320.000000pt;}
.y0_c00287{bottom:0.000000pt;}
.y4_c00287{bottom:554.711600pt;}
.y3_c00287{bottom:619.979440pt;}
.y2_c00287{bottom:685.247280pt;}
.y1_c00287{bottom:750.702000pt;}
.y5_c00287{bottom:901.000000pt;}
.h2_c00287{height:163.976250pt;}
.h1_c00287{height:167.535000pt;}
.h3_c00287{height:286.875000pt;}
.h0_c00287{height:1080.000000pt;}
.w0_c00287{width:1920.000000pt;}
.x0_c00287{left:0.000000pt;}
.x3_c00287{left:108.000000pt;}
.x1_c00287{left:147.680000pt;}
.x2_c00287{left:187.406720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51b4125f0391c3f14afdca2b.woff')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00288;src:url('chunks/assets/font_75a320e8f2711e42ec7fb4aa.woff')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00288;src:url('chunks/assets/font_8a13e89ebe4b9b14d6c2e3be.woff')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_a35556efe4e760a7cbafb89b.woff')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.lsd_c00288{letter-spacing:-17.449920px;}
.lsb_c00288{letter-spacing:-16.608960px;}
.lsc_c00288{letter-spacing:-9.040320px;}
.lsa_c00288{letter-spacing:-2.102400px;}
.ls7_c00288{letter-spacing:0.000000px;}
.ls3_c00288{letter-spacing:2.943360px;}
.ls5_c00288{letter-spacing:3.574080px;}
.ls8_c00288{letter-spacing:10.091520px;}
.lsf_c00288{letter-spacing:14.716800px;}
.ls4_c00288{letter-spacing:15.347520px;}
.lse_c00288{letter-spacing:18.711360px;}
.ls9_c00288{letter-spacing:25.439040px;}
.ls0_c00288{letter-spacing:104.976000px;}
.ls1_c00288{letter-spacing:219.700800px;}
.ls2_c00288{letter-spacing:220.331520px;}
.ls6_c00288{letter-spacing:269.317440px;}
.sc__c00288{text-shadow:none;}
.sc1_c00288{text-shadow:-0.015em 0 rgb(15,81,131),0 0.015em rgb(15,81,131),0.015em 0 rgb(15,81,131),0 -0.015em  rgb(15,81,131);}
.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;}
.sc1_c00288{-webkit-text-stroke:0.015em rgb(15,81,131);text-shadow:none;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00288{word-spacing:-235.679040px;}
.wsb_c00288{word-spacing:-228.951360px;}
.wsc_c00288{word-spacing:-224.956800px;}
.ws6_c00288{word-spacing:-220.331520px;}
.ws3_c00288{word-spacing:-208.137600px;}
.ws4_c00288{word-spacing:-159.151680px;}
.ws8_c00288{word-spacing:-159.025536px;}
.ws7_c00288{word-spacing:-158.310720px;}
.wsa_c00288{word-spacing:-157.343616px;}
.ws1_c00288{word-spacing:-62.651520px;}
.ws0_c00288{word-spacing:-58.446720px;}
.ws5_c00288{word-spacing:-43.519680px;}
.ws9_c00288{word-spacing:-9.040320px;}
.wsd_c00288{word-spacing:0.000000px;}
._8_c00288{margin-left:-42.846912px;}
._1a_c00288{margin-left:-35.131104px;}
._1c_c00288{margin-left:-25.859520px;}
._4_c00288{margin-left:-22.537728px;}
._5_c00288{margin-left:-15.137280px;}
._13_c00288{margin-left:-12.803616px;}
._7_c00288{margin-left:-10.554048px;}
._17_c00288{margin-left:-8.767008px;}
._6_c00288{margin-left:-7.568640px;}
._2_c00288{margin-left:-6.244128px;}
._1b_c00288{margin-left:-4.057632px;}
._0_c00288{margin-left:-1.051200px;}
._15_c00288{width:1.766016px;}
._12_c00288{width:3.679200px;}
._e_c00288{width:4.835520px;}
._1_c00288{width:6.349248px;}
._19_c00288{width:7.442496px;}
._14_c00288{width:9.355680px;}
._c_c00288{width:11.458080px;}
._10_c00288{width:14.275296px;}
._3_c00288{width:15.368544px;}
._d_c00288{width:16.756128px;}
._a_c00288{width:20.098944px;}
._b_c00288{width:21.549600px;}
._11_c00288{width:26.322048px;}
._9_c00288{width:27.562464px;}
._18_c00288{width:32.944608px;}
._f_c00288{width:36.014112px;}
._16_c00288{width:41.459328px;}
.fc0_c00288{color:rgb(15,81,131);}
.fs0_c00288{font-size:210.240000px;}
.fs1_c00288{font-size:360.000000px;}
.y0_c00288{bottom:0.000000px;}
.y5_c00288{bottom:372.851340px;}
.y4_c00288{bottom:446.487900px;}
.y3_c00288{bottom:519.914220px;}
.y2_c00288{bottom:593.340540px;}
.y1_c00288{bottom:666.977100px;}
.y6_c00288{bottom:1013.625000px;}
.h2_c00288{height:184.473281px;}
.h1_c00288{height:188.476875px;}
.h3_c00288{height:322.734375px;}
.h0_c00288{height:1215.000000px;}
.w0_c00288{width:2160.000000px;}
.x0_c00288{left:0.000000px;}
.x3_c00288{left:121.500000px;}
.x1_c00288{left:162.702000px;}
.x2_c00288{left:207.342000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.lsd_c00288{letter-spacing:-15.511040pt;}
.lsb_c00288{letter-spacing:-14.763520pt;}
.lsc_c00288{letter-spacing:-8.035840pt;}
.lsa_c00288{letter-spacing:-1.868800pt;}
.ls7_c00288{letter-spacing:0.000000pt;}
.ls3_c00288{letter-spacing:2.616320pt;}
.ls5_c00288{letter-spacing:3.176960pt;}
.ls8_c00288{letter-spacing:8.970240pt;}
.lsf_c00288{letter-spacing:13.081600pt;}
.ls4_c00288{letter-spacing:13.642240pt;}
.lse_c00288{letter-spacing:16.632320pt;}
.ls9_c00288{letter-spacing:22.612480pt;}
.ls0_c00288{letter-spacing:93.312000pt;}
.ls1_c00288{letter-spacing:195.289600pt;}
.ls2_c00288{letter-spacing:195.850240pt;}
.ls6_c00288{letter-spacing:239.393280pt;}
.ws2_c00288{word-spacing:-209.492480pt;}
.wsb_c00288{word-spacing:-203.512320pt;}
.wsc_c00288{word-spacing:-199.961600pt;}
.ws6_c00288{word-spacing:-195.850240pt;}
.ws3_c00288{word-spacing:-185.011200pt;}
.ws4_c00288{word-spacing:-141.468160pt;}
.ws8_c00288{word-spacing:-141.356032pt;}
.ws7_c00288{word-spacing:-140.720640pt;}
.wsa_c00288{word-spacing:-139.860992pt;}
.ws1_c00288{word-spacing:-55.690240pt;}
.ws0_c00288{word-spacing:-51.952640pt;}
.ws5_c00288{word-spacing:-38.684160pt;}
.ws9_c00288{word-spacing:-8.035840pt;}
.wsd_c00288{word-spacing:0.000000pt;}
._8_c00288{margin-left:-38.086144pt;}
._1a_c00288{margin-left:-31.227648pt;}
._1c_c00288{margin-left:-22.986240pt;}
._4_c00288{margin-left:-20.033536pt;}
._5_c00288{margin-left:-13.455360pt;}
._13_c00288{margin-left:-11.380992pt;}
._7_c00288{margin-left:-9.381376pt;}
._17_c00288{margin-left:-7.792896pt;}
._6_c00288{margin-left:-6.727680pt;}
._2_c00288{margin-left:-5.550336pt;}
._1b_c00288{margin-left:-3.606784pt;}
._0_c00288{margin-left:-0.934400pt;}
._15_c00288{width:1.569792pt;}
._12_c00288{width:3.270400pt;}
._e_c00288{width:4.298240pt;}
._1_c00288{width:5.643776pt;}
._19_c00288{width:6.615552pt;}
._14_c00288{width:8.316160pt;}
._c_c00288{width:10.184960pt;}
._10_c00288{width:12.689152pt;}
._3_c00288{width:13.660928pt;}
._d_c00288{width:14.894336pt;}
._a_c00288{width:17.865728pt;}
._b_c00288{width:19.155200pt;}
._11_c00288{width:23.397376pt;}
._9_c00288{width:24.499968pt;}
._18_c00288{width:29.284096pt;}
._f_c00288{width:32.012544pt;}
._16_c00288{width:36.852736pt;}
.fs0_c00288{font-size:186.880000pt;}
.fs1_c00288{font-size:320.000000pt;}
.y0_c00288{bottom:0.000000pt;}
.y5_c00288{bottom:331.423413pt;}
.y4_c00288{bottom:396.878133pt;}
.y3_c00288{bottom:462.145973pt;}
.y2_c00288{bottom:527.413813pt;}
.y1_c00288{bottom:592.868533pt;}
.y6_c00288{bottom:901.000000pt;}
.h2_c00288{height:163.976250pt;}
.h1_c00288{height:167.535000pt;}
.h3_c00288{height:286.875000pt;}
.h0_c00288{height:1080.000000pt;}
.w0_c00288{width:1920.000000pt;}
.x0_c00288{left:0.000000pt;}
.x3_c00288{left:108.000000pt;}
.x1_c00288{left:144.624000pt;}
.x2_c00288{left:184.304000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bbdb0817da171364cb3eac30.woff')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00289;src:url('chunks/assets/font_2f47eda81f56ead71507d59b.woff')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc1_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00289{text-shadow:-0.015em 0 rgb(15,81,131),0 0.015em rgb(15,81,131),0.015em 0 rgb(15,81,131),0 -0.015em  rgb(15,81,131);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc1_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00289{-webkit-text-stroke:0.015em rgb(15,81,131);text-shadow:none;}
}
.ws0_c00289{word-spacing:-58.446720px;}
.ws1_c00289{word-spacing:0.000000px;}
._8_c00289{margin-left:-32.166720px;}
._6_c00289{margin-left:-15.768000px;}
._2_c00289{margin-left:-14.506560px;}
._5_c00289{margin-left:-13.034880px;}
._3_c00289{margin-left:-11.983680px;}
._1_c00289{margin-left:-7.358400px;}
._7_c00289{width:5.045760px;}
._4_c00289{width:6.727680px;}
._0_c00289{width:104.976000px;}
.fc0_c00289{color:rgb(15,81,131);}
.fs1_c00289{font-size:210.240000px;}
.fs0_c00289{font-size:360.000000px;}
.y0_c00289{bottom:0.000000px;}
.y2_c00289{bottom:888.677550px;}
.y1_c00289{bottom:1013.625000px;}
.h2_c00289{height:188.476875px;}
.h1_c00289{height:322.734375px;}
.h0_c00289{height:1215.000000px;}
.w0_c00289{width:2160.000000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:121.500000px;}
.x2_c00289{left:166.140000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws0_c00289{word-spacing:-51.952640pt;}
.ws1_c00289{word-spacing:0.000000pt;}
._8_c00289{margin-left:-28.592640pt;}
._6_c00289{margin-left:-14.016000pt;}
._2_c00289{margin-left:-12.894720pt;}
._5_c00289{margin-left:-11.586560pt;}
._3_c00289{margin-left:-10.652160pt;}
._1_c00289{margin-left:-6.540800pt;}
._7_c00289{width:4.485120pt;}
._4_c00289{width:5.980160pt;}
._0_c00289{width:93.312000pt;}
.fs1_c00289{font-size:186.880000pt;}
.fs0_c00289{font-size:320.000000pt;}
.y0_c00289{bottom:0.000000pt;}
.y2_c00289{bottom:789.935600pt;}
.y1_c00289{bottom:901.000000pt;}
.h2_c00289{height:167.535000pt;}
.h1_c00289{height:286.875000pt;}
.h0_c00289{height:1080.000000pt;}
.w0_c00289{width:1920.000000pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:108.000000pt;}
.x2_c00289{left:147.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1b7d9db5893d72a78befc23b.woff')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00290;src:url('chunks/assets/font_010172d3a21d2741005e6f8f.woff')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00290{letter-spacing:0.000000px;}
.ls1_c00290{letter-spacing:47.304000px;}
.ls0_c00290{letter-spacing:104.976000px;}
.sc__c00290{text-shadow:none;}
.sc1_c00290{text-shadow:-0.015em 0 rgb(15,81,131),0 0.015em rgb(15,81,131),0.015em 0 rgb(15,81,131),0 -0.015em  rgb(15,81,131);}
.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;}
.sc1_c00290{-webkit-text-stroke:0.015em rgb(15,81,131);text-shadow:none;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00290{word-spacing:-58.446720px;}
.ws1_c00290{word-spacing:0.000000px;}
._6_c00290{margin-left:-46.463040px;}
._9_c00290{margin-left:-17.239680px;}
._b_c00290{margin-left:-15.978240px;}
._d_c00290{margin-left:-14.506560px;}
._4_c00290{margin-left:-11.563200px;}
._c_c00290{margin-left:-7.568640px;}
._3_c00290{width:2.733120px;}
._1_c00290{width:4.204800px;}
._0_c00290{width:5.676480px;}
._5_c00290{width:7.358400px;}
._e_c00290{width:13.875840px;}
._a_c00290{width:16.188480px;}
._8_c00290{width:25.859520px;}
._7_c00290{width:27.331200px;}
._2_c00290{width:47.304000px;}
.fc0_c00290{color:rgb(15,81,131);}
.fs0_c00290{font-size:210.240000px;}
.fs1_c00290{font-size:360.000000px;}
.y0_c00290{bottom:0.000000px;}
.y2_c00290{bottom:815.040990px;}
.y1_c00290{bottom:888.677550px;}
.y3_c00290{bottom:1013.625000px;}
.h1_c00290{height:188.476875px;}
.h2_c00290{height:322.734375px;}
.h0_c00290{height:1215.000000px;}
.w0_c00290{width:2160.000000px;}
.x0_c00290{left:0.000000px;}
.x3_c00290{left:121.500000px;}
.x1_c00290{left:166.140000px;}
.x2_c00290{left:210.622320px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls2_c00290{letter-spacing:0.000000pt;}
.ls1_c00290{letter-spacing:42.048000pt;}
.ls0_c00290{letter-spacing:93.312000pt;}
.ws0_c00290{word-spacing:-51.952640pt;}
.ws1_c00290{word-spacing:0.000000pt;}
._6_c00290{margin-left:-41.300480pt;}
._9_c00290{margin-left:-15.324160pt;}
._b_c00290{margin-left:-14.202880pt;}
._d_c00290{margin-left:-12.894720pt;}
._4_c00290{margin-left:-10.278400pt;}
._c_c00290{margin-left:-6.727680pt;}
._3_c00290{width:2.429440pt;}
._1_c00290{width:3.737600pt;}
._0_c00290{width:5.045760pt;}
._5_c00290{width:6.540800pt;}
._e_c00290{width:12.334080pt;}
._a_c00290{width:14.389760pt;}
._8_c00290{width:22.986240pt;}
._7_c00290{width:24.294400pt;}
._2_c00290{width:42.048000pt;}
.fs0_c00290{font-size:186.880000pt;}
.fs1_c00290{font-size:320.000000pt;}
.y0_c00290{bottom:0.000000pt;}
.y2_c00290{bottom:724.480880pt;}
.y1_c00290{bottom:789.935600pt;}
.y3_c00290{bottom:901.000000pt;}
.h1_c00290{height:167.535000pt;}
.h2_c00290{height:286.875000pt;}
.h0_c00290{height:1080.000000pt;}
.w0_c00290{width:1920.000000pt;}
.x0_c00290{left:0.000000pt;}
.x3_c00290{left:108.000000pt;}
.x1_c00290{left:147.680000pt;}
.x2_c00290{left:187.219840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51b4125f0391c3f14afdca2b.woff')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_b639d6c6a741a188de05ca94.woff')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_8282f2e947188428dec755d8.woff')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00291;src:url('chunks/assets/font_583a8330465dc980d5d14cf5.woff')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls7_c00291{letter-spacing:-1.471680px;}
.ls6_c00291{letter-spacing:0.000000px;}
.lsa_c00291{letter-spacing:2.733120px;}
.ls9_c00291{letter-spacing:10.091520px;}
.ls3_c00291{letter-spacing:15.347520px;}
.ls8_c00291{letter-spacing:18.711360px;}
.ls2_c00291{letter-spacing:68.328000px;}
.ls5_c00291{letter-spacing:69.126912px;}
.ls4_c00291{letter-spacing:69.168960px;}
.ls1_c00291{letter-spacing:69.799680px;}
.ls0_c00291{letter-spacing:104.976000px;}
.sc__c00291{text-shadow:none;}
.sc1_c00291{text-shadow:-0.015em 0 rgb(15,81,131),0 0.015em rgb(15,81,131),0.015em 0 rgb(15,81,131),0 -0.015em  rgb(15,81,131);}
.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;}
.sc1_c00291{-webkit-text-stroke:0.015em rgb(15,81,131);text-shadow:none;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00291{word-spacing:-228.951360px;}
.ws3_c00291{word-spacing:-220.331520px;}
.ws4_c00291{word-spacing:-212.973120px;}
.ws1_c00291{word-spacing:-208.768320px;}
.ws0_c00291{word-spacing:-58.446720px;}
.ws5_c00291{word-spacing:0.000000px;}
._b_c00291{margin-left:-35.383392px;}
._10_c00291{margin-left:-27.499392px;}
._11_c00291{margin-left:-20.645568px;}
._14_c00291{margin-left:-19.573344px;}
._7_c00291{margin-left:-16.714080px;}
._8_c00291{margin-left:-8.745984px;}
._a_c00291{margin-left:-7.673760px;}
._0_c00291{margin-left:-5.256000px;}
._6_c00291{margin-left:-4.057632px;}
._c_c00291{width:1.114272px;}
._1_c00291{width:3.637152px;}
._9_c00291{width:6.012864px;}
._e_c00291{width:7.905024px;}
._d_c00291{width:9.334656px;}
._2_c00291{width:13.287168px;}
._f_c00291{width:14.632704px;}
._12_c00291{width:15.810048px;}
._5_c00291{width:17.176608px;}
._4_c00291{width:20.056896px;}
._13_c00291{width:22.811040px;}
._3_c00291{width:26.931744px;}
.fc0_c00291{color:rgb(15,81,131);}
.fs0_c00291{font-size:210.240000px;}
.fs1_c00291{font-size:360.000000px;}
.y0_c00291{bottom:0.000000px;}
.y2_c00291{bottom:770.903190px;}
.y1_c00291{bottom:844.539750px;}
.y3_c00291{bottom:1013.625000px;}
.h2_c00291{height:184.473281px;}
.h1_c00291{height:188.476875px;}
.h3_c00291{height:322.734375px;}
.h0_c00291{height:1215.000000px;}
.w0_c00291{width:2160.000000px;}
.x0_c00291{left:0.000000px;}
.x3_c00291{left:121.500000px;}
.x1_c00291{left:166.140000px;}
.x2_c00291{left:210.727440px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls7_c00291{letter-spacing:-1.308160pt;}
.ls6_c00291{letter-spacing:0.000000pt;}
.lsa_c00291{letter-spacing:2.429440pt;}
.ls9_c00291{letter-spacing:8.970240pt;}
.ls3_c00291{letter-spacing:13.642240pt;}
.ls8_c00291{letter-spacing:16.632320pt;}
.ls2_c00291{letter-spacing:60.736000pt;}
.ls5_c00291{letter-spacing:61.446144pt;}
.ls4_c00291{letter-spacing:61.483520pt;}
.ls1_c00291{letter-spacing:62.044160pt;}
.ls0_c00291{letter-spacing:93.312000pt;}
.ws2_c00291{word-spacing:-203.512320pt;}
.ws3_c00291{word-spacing:-195.850240pt;}
.ws4_c00291{word-spacing:-189.309440pt;}
.ws1_c00291{word-spacing:-185.571840pt;}
.ws0_c00291{word-spacing:-51.952640pt;}
.ws5_c00291{word-spacing:0.000000pt;}
._b_c00291{margin-left:-31.451904pt;}
._10_c00291{margin-left:-24.443904pt;}
._11_c00291{margin-left:-18.351616pt;}
._14_c00291{margin-left:-17.398528pt;}
._7_c00291{margin-left:-14.856960pt;}
._8_c00291{margin-left:-7.774208pt;}
._a_c00291{margin-left:-6.821120pt;}
._0_c00291{margin-left:-4.672000pt;}
._6_c00291{margin-left:-3.606784pt;}
._c_c00291{width:0.990464pt;}
._1_c00291{width:3.233024pt;}
._9_c00291{width:5.344768pt;}
._e_c00291{width:7.026688pt;}
._d_c00291{width:8.297472pt;}
._2_c00291{width:11.810816pt;}
._f_c00291{width:13.006848pt;}
._12_c00291{width:14.053376pt;}
._5_c00291{width:15.268096pt;}
._4_c00291{width:17.828352pt;}
._13_c00291{width:20.276480pt;}
._3_c00291{width:23.939328pt;}
.fs0_c00291{font-size:186.880000pt;}
.fs1_c00291{font-size:320.000000pt;}
.y0_c00291{bottom:0.000000pt;}
.y2_c00291{bottom:685.247280pt;}
.y1_c00291{bottom:750.702000pt;}
.y3_c00291{bottom:901.000000pt;}
.h2_c00291{height:163.976250pt;}
.h1_c00291{height:167.535000pt;}
.h3_c00291{height:286.875000pt;}
.h0_c00291{height:1080.000000pt;}
.w0_c00291{width:1920.000000pt;}
.x0_c00291{left:0.000000pt;}
.x3_c00291{left:108.000000pt;}
.x1_c00291{left:147.680000pt;}
.x2_c00291{left:187.313280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7cb1ef761ea9e4bbdfb0a10f.woff')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00292{letter-spacing:0.000000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 rgb(15,81,131),0 0.015em rgb(15,81,131),0.015em 0 rgb(15,81,131),0 -0.015em  rgb(15,81,131);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em rgb(15,81,131);text-shadow:none;}
}
.ws0_c00292{word-spacing:0.000000px;}
.fc0_c00292{color:rgb(15,81,131);}
.fs0_c00292{font-size:360.000000px;}
.y0_c00292{bottom:0.000000px;}
.y1_c00292{bottom:586.598400px;}
.h1_c00292{height:322.734375px;}
.h0_c00292{height:1215.000000px;}
.w0_c00292{width:2160.000000px;}
.x0_c00292{left:0.000000px;}
.x1_c00292{left:582.120000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls0_c00292{letter-spacing:0.000000pt;}
.ws0_c00292{word-spacing:0.000000pt;}
.fs0_c00292{font-size:320.000000pt;}
.y0_c00292{bottom:0.000000pt;}
.y1_c00292{bottom:521.420800pt;}
.h1_c00292{height:286.875000pt;}
.h0_c00292{height:1080.000000pt;}
.w0_c00292{width:1920.000000pt;}
.x0_c00292{left:0.000000pt;}
.x1_c00292{left:517.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0ef705f113210a21bf9e992e.woff')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.167000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00293;src:url('chunks/assets/font_5700eedd776ecedc0249e5fe.woff')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.122000;font-style: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:-31.247999px;}
.ws1_c00293{word-spacing:0.000000px;}
._1_c00293{margin-left:-25.596445px;}
._3_c00293{margin-left:-23.847796px;}
._0_c00293{margin-left:-13.881258px;}
._2_c00293{margin-left:-9.278072px;}
._4_c00293{margin-left:-5.898868px;}
._5_c00293{margin-left:-3.295359px;}
._6_c00293{margin-left:-2.163553px;}
._7_c00293{margin-left:-1.156842px;}
.fc0_c00293{color:rgb(0,0,0);}
.fs1_c00293{font-size:125.999995px;}
.fs3_c00293{font-size:137.969994px;}
.fs2_c00293{font-size:155.969994px;}
.fs4_c00293{font-size:268.109998px;}
.fs0_c00293{font-size:282.014979px;}
.y0_c00293{bottom:0.000000px;}
.y1_c00293{bottom:0.000010px;}
.y3_c00293{bottom:36.461338px;}
.y6_c00293{bottom:156.657917px;}
.y5_c00293{bottom:349.289553px;}
.y4_c00293{bottom:389.789552px;}
.y7_c00293{bottom:647.446790px;}
.y2_c00293{bottom:725.834853px;}
.h4_c00293{height:114.533995px;}
.h6_c00293{height:125.414725px;}
.h5_c00293{height:141.776724px;}
.h7_c00293{height:243.711988px;}
.h3_c00293{height:324.881256px;}
.h2_c00293{height:1214.999949px;}
.h0_c00293{height:1214.999989px;}
.h1_c00293{height:1215.000000px;}
.w1_c00293{width:2159.999910px;}
.w0_c00293{width:2160.000000px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:285.027089px;}
.x6_c00293{left:310.824873px;}
.x4_c00293{left:829.053253px;}
.x3_c00293{left:853.609887px;}
.x5_c00293{left:875.056144px;}
.x2_c00293{left:882.509269px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws0_c00293{word-spacing:-27.775999pt;}
.ws1_c00293{word-spacing:0.000000pt;}
._1_c00293{margin-left:-22.752395pt;}
._3_c00293{margin-left:-21.198041pt;}
._0_c00293{margin-left:-12.338896pt;}
._2_c00293{margin-left:-8.247175pt;}
._4_c00293{margin-left:-5.243439pt;}
._5_c00293{margin-left:-2.929208pt;}
._6_c00293{margin-left:-1.923158pt;}
._7_c00293{margin-left:-1.028304pt;}
.fs1_c00293{font-size:111.999995pt;}
.fs3_c00293{font-size:122.639995pt;}
.fs2_c00293{font-size:138.639994pt;}
.fs4_c00293{font-size:238.319998pt;}
.fs0_c00293{font-size:250.679982pt;}
.y0_c00293{bottom:0.000000pt;}
.y1_c00293{bottom:0.000009pt;}
.y3_c00293{bottom:32.410079pt;}
.y6_c00293{bottom:139.251482pt;}
.y5_c00293{bottom:310.479603pt;}
.y4_c00293{bottom:346.479602pt;}
.y7_c00293{bottom:575.508258pt;}
.y2_c00293{bottom:645.186536pt;}
.h4_c00293{height:101.807996pt;}
.h6_c00293{height:111.479755pt;}
.h5_c00293{height:126.023755pt;}
.h7_c00293{height:216.632878pt;}
.h3_c00293{height:288.783339pt;}
.h2_c00293{height:1079.999955pt;}
.h0_c00293{height:1079.999991pt;}
.h1_c00293{height:1080.000000pt;}
.w1_c00293{width:1919.999920pt;}
.w0_c00293{width:1920.000000pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:253.357412pt;}
.x6_c00293{left:276.288776pt;}
.x4_c00293{left:736.936225pt;}
.x3_c00293{left:758.764344pt;}
.x5_c00293{left:777.827684pt;}
.x2_c00293{left:784.452683pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c7f345ec52de9caa3377549.woff')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:0.939100;font-style: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;}
.fc1_c00294{color:transparent;}
.fc0_c00294{color:rgb(6,52,10);}
.fs0_c00294{font-size:215.999991px;}
.fs1_c00294{font-size:929.969961px;}
.y0_c00294{bottom:0.000000px;}
.y1_c00294{bottom:0.000010px;}
.y8_c00294{bottom:58.787854px;}
.y3_c00294{bottom:299.827248px;}
.y2_c00294{bottom:356.077245px;}
.y5_c00294{bottom:436.030823px;}
.y7_c00294{bottom:446.305784px;}
.y4_c00294{bottom:761.155809px;}
.y6_c00294{bottom:771.430770px;}
.h3_c00294{height:197.855992px;}
.h4_c00294{height:851.852485px;}
.h2_c00294{height:1214.999949px;}
.h0_c00294{height:1214.999989px;}
.h1_c00294{height:1215.000000px;}
.w1_c00294{width:2159.999910px;}
.w0_c00294{width:2160.000000px;}
.x0_c00294{left:0.000000px;}
.x4_c00294{left:34.102124px;}
.x3_c00294{left:800.609979px;}
.x2_c00294{left:810.884954px;}
.x1_c00294{left:814.575818px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls0_c00294{letter-spacing:0.000000pt;}
.ws0_c00294{word-spacing:0.000000pt;}
.fs0_c00294{font-size:191.999992pt;}
.fs1_c00294{font-size:826.639966pt;}
.y0_c00294{bottom:0.000000pt;}
.y1_c00294{bottom:0.000009pt;}
.y8_c00294{bottom:52.255870pt;}
.y3_c00294{bottom:266.513109pt;}
.y2_c00294{bottom:316.513107pt;}
.y5_c00294{bottom:387.582953pt;}
.y7_c00294{bottom:396.716252pt;}
.y4_c00294{bottom:676.582941pt;}
.y6_c00294{bottom:685.716240pt;}
.h3_c00294{height:175.871993pt;}
.h4_c00294{height:757.202208pt;}
.h2_c00294{height:1079.999955pt;}
.h0_c00294{height:1079.999991pt;}
.h1_c00294{height:1080.000000pt;}
.w1_c00294{width:1919.999920pt;}
.w0_c00294{width:1920.000000pt;}
.x0_c00294{left:0.000000pt;}
.x4_c00294{left:30.312999pt;}
.x3_c00294{left:711.653314pt;}
.x2_c00294{left:720.786626pt;}
.x1_c00294{left:724.067394pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d1963123a8b3d0c892f052db.woff')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.165000;font-style:normal;font-weight:normal;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_ae40661371dcd1a981d22336.woff')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:0.939100;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00295;src:url('chunks/assets/font_12adf94b6db8d4faa821885f.woff')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:0.728100;font-style: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);}
.v3_c00295{vertical-align:-47.992468px;}
.v1_c00295{vertical-align:-38.585974px;}
.v0_c00295{vertical-align:0.000000px;}
.v2_c00295{vertical-align:47.992468px;}
.ls3_c00295{letter-spacing:0.000000px;}
.ls1_c00295{letter-spacing:22.072219px;}
.ls0_c00295{letter-spacing:42.418417px;}
.ls2_c00295{letter-spacing:42.418486px;}
.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:-64.885857px;}
.ws1_c00295{word-spacing:0.000000px;}
._1_c00295{margin-left:-55.928507px;}
._0_c00295{margin-left:-22.089678px;}
._2_c00295{width:55.853048px;}
.fc2_c00295{color:rgb(0,0,0);}
.fc3_c00295{color:transparent;}
.fc1_c00295{color:rgb(6,52,10);}
.fc0_c00295{color:rgb(25,18,12);}
.fs0_c00295{font-size:191.969992px;}
.fs2_c00295{font-size:215.999991px;}
.fs1_c00295{font-size:575.999976px;}
.y0_c00295{bottom:0.000000px;}
.y1_c00295{bottom:0.000010px;}
.yf_c00295{bottom:28.820303px;}
.y10_c00295{bottom:58.787854px;}
.ye_c00295{bottom:85.070300px;}
.ya_c00295{bottom:231.301351px;}
.yb_c00295{bottom:240.947845px;}
.y9_c00295{bottom:297.676348px;}
.y8_c00295{bottom:364.051346px;}
.y7_c00295{bottom:430.426343px;}
.y6_c00295{bottom:496.801340px;}
.y5_c00295{bottom:563.176337px;}
.y4_c00295{bottom:629.551335px;}
.y2_c00295{bottom:695.926332px;}
.y3_c00295{bottom:705.572825px;}
.yc_c00295{bottom:842.659705px;}
.yd_c00295{bottom:849.023666px;}
.h3_c00295{height:173.732843px;}
.h7_c00295{height:197.855992px;}
.h4_c00295{height:221.725311px;}
.h6_c00295{height:406.079983px;}
.h5_c00295{height:527.615978px;}
.h2_c00295{height:1214.999949px;}
.h0_c00295{height:1214.999989px;}
.h1_c00295{height:1215.000000px;}
.w1_c00295{width:2159.999910px;}
.w0_c00295{width:2160.000000px;}
.x0_c00295{left:0.000000px;}
.x7_c00295{left:34.102124px;}
.x1_c00295{left:589.658267px;}
.x2_c00295{left:763.280388px;}
.x3_c00295{left:1013.730791px;}
.x5_c00295{left:1047.653740px;}
.x4_c00295{left:1054.017712px;}
.x6_c00295{left:1275.149827px;}
@media print{
.v3_c00295{vertical-align:-42.659971pt;}
.v1_c00295{vertical-align:-34.298644pt;}
.v0_c00295{vertical-align:0.000000pt;}
.v2_c00295{vertical-align:42.659971pt;}
.ls3_c00295{letter-spacing:0.000000pt;}
.ls1_c00295{letter-spacing:19.619750pt;}
.ls0_c00295{letter-spacing:37.705260pt;}
.ls2_c00295{letter-spacing:37.705321pt;}
.ws0_c00295{word-spacing:-57.676318pt;}
.ws1_c00295{word-spacing:0.000000pt;}
._1_c00295{margin-left:-49.714229pt;}
._0_c00295{margin-left:-19.635270pt;}
._2_c00295{width:49.647154pt;}
.fs0_c00295{font-size:170.639993pt;}
.fs2_c00295{font-size:191.999992pt;}
.fs1_c00295{font-size:511.999979pt;}
.y0_c00295{bottom:0.000000pt;}
.y1_c00295{bottom:0.000009pt;}
.yf_c00295{bottom:25.618047pt;}
.y10_c00295{bottom:52.255870pt;}
.ye_c00295{bottom:75.618045pt;}
.ya_c00295{bottom:205.601201pt;}
.yb_c00295{bottom:214.175862pt;}
.y9_c00295{bottom:264.601199pt;}
.y8_c00295{bottom:323.601196pt;}
.y7_c00295{bottom:382.601194pt;}
.y6_c00295{bottom:441.601191pt;}
.y5_c00295{bottom:500.601189pt;}
.y4_c00295{bottom:559.601186pt;}
.y2_c00295{bottom:618.601184pt;}
.y3_c00295{bottom:627.175845pt;}
.yc_c00295{bottom:749.030849pt;}
.yd_c00295{bottom:754.687703pt;}
.h3_c00295{height:154.429194pt;}
.h7_c00295{height:175.871993pt;}
.h4_c00295{height:197.089165pt;}
.h6_c00295{height:360.959985pt;}
.h5_c00295{height:468.991980pt;}
.h2_c00295{height:1079.999955pt;}
.h0_c00295{height:1079.999991pt;}
.h1_c00295{height:1080.000000pt;}
.w1_c00295{width:1919.999920pt;}
.w0_c00295{width:1920.000000pt;}
.x0_c00295{left:0.000000pt;}
.x7_c00295{left:30.312999pt;}
.x1_c00295{left:524.140682pt;}
.x2_c00295{left:678.471456pt;}
.x3_c00295{left:901.094037pt;}
.x5_c00295{left:931.247769pt;}
.x4_c00295{left:936.904633pt;}
.x6_c00295{left:1133.466513pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa7f42b07873a82d7ad1f423.woff')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:0.954000;font-style:normal;font-weight:normal;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_5f09e9ed5db3f923b2a77fb2.woff')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:0.939100;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00296;src:url('chunks/assets/font_fa7f42b07873a82d7ad1f423.woff')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:0.954000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00296;src:url('chunks/assets/font_58f5ef4e465f2cde3f9b5ed7.woff')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:0.723869;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00296;src:url('chunks/assets/font_61bbaa6118a7ab8ee9ed447c.woff')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:1.021000;font-style: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);}
.v3_c00296{vertical-align:-47.992468px;}
.v1_c00296{vertical-align:-38.585974px;}
.v0_c00296{vertical-align:0.000000px;}
.v2_c00296{vertical-align:47.992468px;}
.ls4_c00296{letter-spacing:0.000000px;}
.ls0_c00296{letter-spacing:0.000049px;}
.ls2_c00296{letter-spacing:22.072081px;}
.ls1_c00296{letter-spacing:42.418417px;}
.ls3_c00296{letter-spacing:42.418486px;}
.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:-64.885857px;}
.ws1_c00296{word-spacing:0.000000px;}
._0_c00296{margin-left:-56.051365px;}
._2_c00296{margin-left:-22.241551px;}
._1_c00296{width:55.853117px;}
.fc1_c00296{color:rgb(0,0,0);}
.fc3_c00296{color:transparent;}
.fc2_c00296{color:rgb(25,18,12);}
.fc0_c00296{color:rgb(6,52,10);}
.fs1_c00296{font-size:191.969992px;}
.fs2_c00296{font-size:215.999991px;}
.fs0_c00296{font-size:575.999976px;}
.y0_c00296{bottom:0.000000px;}
.y1_c00296{bottom:0.000010px;}
.y10_c00296{bottom:28.820303px;}
.y11_c00296{bottom:58.787854px;}
.yf_c00296{bottom:85.070300px;}
.yd_c00296{bottom:233.231167px;}
.ye_c00296{bottom:242.877661px;}
.yb_c00296{bottom:299.606164px;}
.yc_c00296{bottom:309.252658px;}
.ya_c00296{bottom:365.981162px;}
.y8_c00296{bottom:432.356159px;}
.y9_c00296{bottom:442.002652px;}
.y6_c00296{bottom:498.731156px;}
.y7_c00296{bottom:508.377650px;}
.y5_c00296{bottom:565.106153px;}
.y4_c00296{bottom:631.481150px;}
.y2_c00296{bottom:834.612395px;}
.y3_c00296{bottom:840.976356px;}
.h4_c00296{height:146.089164px;}
.h5_c00296{height:155.495658px;}
.h6_c00296{height:197.855992px;}
.h3_c00296{height:543.743977px;}
.h2_c00296{height:1214.999949px;}
.h0_c00296{height:1214.999989px;}
.h1_c00296{height:1215.000000px;}
.w1_c00296{width:2159.999910px;}
.w0_c00296{width:2160.000000px;}
.x0_c00296{left:0.000000px;}
.xa_c00296{left:34.102124px;}
.x2_c00296{left:374.180741px;}
.x1_c00296{left:380.544680px;}
.x3_c00296{left:392.307302px;}
.x4_c00296{left:465.634069px;}
.x5_c00296{left:477.295199px;}
.x7_c00296{left:547.645907px;}
.x6_c00296{left:673.950859px;}
.x8_c00296{left:1129.118964px;}
.x9_c00296{left:1275.149827px;}
@media print{
.v3_c00296{vertical-align:-42.659971pt;}
.v1_c00296{vertical-align:-34.298644pt;}
.v0_c00296{vertical-align:0.000000pt;}
.v2_c00296{vertical-align:42.659971pt;}
.ls4_c00296{letter-spacing:0.000000pt;}
.ls0_c00296{letter-spacing:0.000044pt;}
.ls2_c00296{letter-spacing:19.619628pt;}
.ls1_c00296{letter-spacing:37.705260pt;}
.ls3_c00296{letter-spacing:37.705321pt;}
.ws0_c00296{word-spacing:-57.676318pt;}
.ws1_c00296{word-spacing:0.000000pt;}
._0_c00296{margin-left:-49.823435pt;}
._2_c00296{margin-left:-19.770268pt;}
._1_c00296{width:49.647215pt;}
.fs1_c00296{font-size:170.639993pt;}
.fs2_c00296{font-size:191.999992pt;}
.fs0_c00296{font-size:511.999979pt;}
.y0_c00296{bottom:0.000000pt;}
.y1_c00296{bottom:0.000009pt;}
.y10_c00296{bottom:25.618047pt;}
.y11_c00296{bottom:52.255870pt;}
.yf_c00296{bottom:75.618045pt;}
.yd_c00296{bottom:207.316593pt;}
.ye_c00296{bottom:215.891254pt;}
.yb_c00296{bottom:266.316591pt;}
.yc_c00296{bottom:274.891251pt;}
.ya_c00296{bottom:325.316588pt;}
.y8_c00296{bottom:384.316586pt;}
.y9_c00296{bottom:392.891247pt;}
.y6_c00296{bottom:443.316583pt;}
.y7_c00296{bottom:451.891244pt;}
.y5_c00296{bottom:502.316581pt;}
.y4_c00296{bottom:561.316578pt;}
.y2_c00296{bottom:741.877684pt;}
.y3_c00296{bottom:747.534538pt;}
.h4_c00296{height:129.857035pt;}
.h5_c00296{height:138.218362pt;}
.h6_c00296{height:175.871993pt;}
.h3_c00296{height:483.327980pt;}
.h2_c00296{height:1079.999955pt;}
.h0_c00296{height:1079.999991pt;}
.h1_c00296{height:1080.000000pt;}
.w1_c00296{width:1919.999920pt;}
.w0_c00296{width:1920.000000pt;}
.x0_c00296{left:0.000000pt;}
.xa_c00296{left:30.312999pt;}
.x2_c00296{left:332.605103pt;}
.x1_c00296{left:338.261938pt;}
.x3_c00296{left:348.717601pt;}
.x4_c00296{left:413.896950pt;}
.x5_c00296{left:424.262399pt;}
.x7_c00296{left:486.796362pt;}
.x6_c00296{left:599.067431pt;}
.x8_c00296{left:1003.661301pt;}
.x9_c00296{left:1133.466513pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa7f42b07873a82d7ad1f423.woff')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:0.954000;font-style:normal;font-weight:normal;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_8ded7aaab1ea160f6163f235.woff')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:0.939100;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00297;src:url('chunks/assets/font_fa7f42b07873a82d7ad1f423.woff')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:0.954000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00297;src:url('chunks/assets/font_f59d88ab0332fd6f556d9748.woff')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:0.931571;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00297;src:url('chunks/assets/font_11e708180f8b0cf907d4ab99.woff')format("woff");}.ff5_c00297{font-family:ff5_c00297;line-height:1.067000;font-style: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);}
.v1_c00297{vertical-align:-38.585974px;}
.v0_c00297{vertical-align:0.000000px;}
.ls2_c00297{letter-spacing:0.000000px;}
.ls0_c00297{letter-spacing:0.000049px;}
.ls1_c00297{letter-spacing:42.418486px;}
.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:-64.885857px;}
.ws1_c00297{word-spacing:0.000000px;}
.fc1_c00297{color:rgb(0,0,0);}
.fc3_c00297{color:transparent;}
.fc2_c00297{color:rgb(25,18,12);}
.fc0_c00297{color:rgb(6,52,10);}
.fs1_c00297{font-size:191.969992px;}
.fs2_c00297{font-size:215.999991px;}
.fs0_c00297{font-size:575.999976px;}
.y0_c00297{bottom:0.000000px;}
.y1_c00297{bottom:0.000010px;}
.ya_c00297{bottom:28.820303px;}
.yb_c00297{bottom:58.787854px;}
.y9_c00297{bottom:85.070300px;}
.y7_c00297{bottom:426.095622px;}
.y8_c00297{bottom:435.742116px;}
.y6_c00297{bottom:492.470619px;}
.y5_c00297{bottom:558.845617px;}
.y4_c00297{bottom:625.220614px;}
.y2_c00297{bottom:828.213165px;}
.y3_c00297{bottom:834.577129px;}
.h4_c00297{height:154.919784px;}
.h5_c00297{height:197.855992px;}
.h3_c00297{height:543.743977px;}
.h2_c00297{height:1214.999949px;}
.h0_c00297{height:1214.999989px;}
.h1_c00297{height:1215.000000px;}
.w1_c00297{width:2159.999910px;}
.w0_c00297{width:2160.000000px;}
.x0_c00297{left:0.000000px;}
.x5_c00297{left:34.102124px;}
.x2_c00297{left:504.367669px;}
.x1_c00297{left:510.731608px;}
.x4_c00297{left:1275.149827px;}
.x3_c00297{left:1294.398269px;}
@media print{
.v1_c00297{vertical-align:-34.298644pt;}
.v0_c00297{vertical-align:0.000000pt;}
.ls2_c00297{letter-spacing:0.000000pt;}
.ls0_c00297{letter-spacing:0.000044pt;}
.ls1_c00297{letter-spacing:37.705321pt;}
.ws0_c00297{word-spacing:-57.676318pt;}
.ws1_c00297{word-spacing:0.000000pt;}
.fs1_c00297{font-size:170.639993pt;}
.fs2_c00297{font-size:191.999992pt;}
.fs0_c00297{font-size:511.999979pt;}
.y0_c00297{bottom:0.000000pt;}
.y1_c00297{bottom:0.000009pt;}
.ya_c00297{bottom:25.618047pt;}
.yb_c00297{bottom:52.255870pt;}
.y9_c00297{bottom:75.618045pt;}
.y7_c00297{bottom:378.751664pt;}
.y8_c00297{bottom:387.326325pt;}
.y6_c00297{bottom:437.751662pt;}
.y5_c00297{bottom:496.751659pt;}
.y4_c00297{bottom:555.751657pt;}
.y2_c00297{bottom:736.189480pt;}
.y3_c00297{bottom:741.846337pt;}
.h4_c00297{height:137.706474pt;}
.h5_c00297{height:175.871993pt;}
.h3_c00297{height:483.327980pt;}
.h2_c00297{height:1079.999955pt;}
.h0_c00297{height:1079.999991pt;}
.h1_c00297{height:1080.000000pt;}
.w1_c00297{width:1919.999920pt;}
.w0_c00297{width:1920.000000pt;}
.x0_c00297{left:0.000000pt;}
.x5_c00297{left:30.312999pt;}
.x2_c00297{left:448.326817pt;}
.x1_c00297{left:453.983651pt;}
.x4_c00297{left:1133.466513pt;}
.x3_c00297{left:1150.576239pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_84360d4b73f72da3d3402a37.woff')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:0.939100;font-style:normal;font-weight:normal;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_30f2a4e7304f68ba05031914.woff')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:0.776000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00298;src:url('chunks/assets/font_f8c3aea021c75873cc2cfd54.woff')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:0.935671;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00298;src:url('chunks/assets/font_30f2a4e7304f68ba05031914.woff')format("woff");}.ff4_c00298{font-family:ff4_c00298;line-height:0.776000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00298;src:url('chunks/assets/font_ee787258907d22e132ca5133.woff')format("woff");}.ff5_c00298{font-family:ff5_c00298;line-height:1.021000;font-style: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.000000px;}
.ls0_c00298{letter-spacing:0.000067px;}
.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:-64.885857px;}
.ws1_c00298{word-spacing:0.000000px;}
.fc1_c00298{color:rgb(0,0,0);}
.fc3_c00298{color:transparent;}
.fc2_c00298{color:rgb(25,18,12);}
.fc0_c00298{color:rgb(6,52,10);}
.fs1_c00298{font-size:191.969992px;}
.fs2_c00298{font-size:215.999991px;}
.fs0_c00298{font-size:575.999976px;}
.y0_c00298{bottom:0.000000px;}
.y1_c00298{bottom:0.000010px;}
.y9_c00298{bottom:58.787854px;}
.y8_c00298{bottom:365.981162px;}
.y7_c00298{bottom:432.356159px;}
.y6_c00298{bottom:498.731156px;}
.y5_c00298{bottom:565.106153px;}
.y4_c00298{bottom:631.481150px;}
.y2_c00298{bottom:834.612395px;}
.y3_c00298{bottom:840.976356px;}
.h5_c00298{height:146.089164px;}
.h6_c00298{height:197.855992px;}
.h4_c00298{height:525.641121px;}
.h3_c00298{height:527.615978px;}
.h2_c00298{height:1214.999949px;}
.h0_c00298{height:1214.999989px;}
.h1_c00298{height:1215.000000px;}
.w1_c00298{width:2159.999910px;}
.w0_c00298{width:2160.000000px;}
.x0_c00298{left:0.000000px;}
.x4_c00298{left:34.102124px;}
.x3_c00298{left:265.032036px;}
.x2_c00298{left:267.544634px;}
.x1_c00298{left:273.908595px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls1_c00298{letter-spacing:0.000000pt;}
.ls0_c00298{letter-spacing:0.000060pt;}
.ws0_c00298{word-spacing:-57.676318pt;}
.ws1_c00298{word-spacing:0.000000pt;}
.fs1_c00298{font-size:170.639993pt;}
.fs2_c00298{font-size:191.999992pt;}
.fs0_c00298{font-size:511.999979pt;}
.y0_c00298{bottom:0.000000pt;}
.y1_c00298{bottom:0.000009pt;}
.y9_c00298{bottom:52.255870pt;}
.y8_c00298{bottom:325.316588pt;}
.y7_c00298{bottom:384.316586pt;}
.y6_c00298{bottom:443.316583pt;}
.y5_c00298{bottom:502.316581pt;}
.y4_c00298{bottom:561.316578pt;}
.y2_c00298{bottom:741.877684pt;}
.y3_c00298{bottom:747.534538pt;}
.h5_c00298{height:129.857035pt;}
.h6_c00298{height:175.871993pt;}
.h4_c00298{height:467.236552pt;}
.h3_c00298{height:468.991980pt;}
.h2_c00298{height:1079.999955pt;}
.h0_c00298{height:1079.999991pt;}
.h1_c00298{height:1080.000000pt;}
.w1_c00298{width:1919.999920pt;}
.w0_c00298{width:1920.000000pt;}
.x0_c00298{left:0.000000pt;}
.x4_c00298{left:30.312999pt;}
.x3_c00298{left:235.584032pt;}
.x2_c00298{left:237.817452pt;}
.x1_c00298{left:243.474307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_863cc21e632dd84a8f44f490.woff')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:0.993652;font-style: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;}
._1_c00299{margin-left:-5.520572px;}
._0_c00299{margin-left:-3.427676px;}
._2_c00299{margin-left:-1.173327px;}
.fc1_c00299{color:transparent;}
.fc0_c00299{color:rgb(0,0,0);}
.fs0_c00299{font-size:239.776124px;}
.y0_c00299{bottom:0.000000px;}
.y3_c00299{bottom:18.278206px;}
.y2_c00299{bottom:102.146240px;}
.y1_c00299{bottom:768.239978px;}
.h2_c00299{height:165.599993px;}
.h3_c00299{height:183.461516px;}
.h0_c00299{height:1214.999989px;}
.h1_c00299{height:1215.000000px;}
.w1_c00299{width:482.039980px;}
.w0_c00299{width:2160.000000px;}
.x0_c00299{left:0.000000px;}
.x2_c00299{left:60.533802px;}
.x1_c00299{left:289.079988px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws0_c00299{word-spacing:0.000000pt;}
._1_c00299{margin-left:-4.907175pt;}
._0_c00299{margin-left:-3.046823pt;}
._2_c00299{margin-left:-1.042957pt;}
.fs0_c00299{font-size:213.134332pt;}
.y0_c00299{bottom:0.000000pt;}
.y3_c00299{bottom:16.247294pt;}
.y2_c00299{bottom:90.796658pt;}
.y1_c00299{bottom:682.879981pt;}
.h2_c00299{height:147.199994pt;}
.h3_c00299{height:163.076903pt;}
.h0_c00299{height:1079.999991pt;}
.h1_c00299{height:1080.000000pt;}
.w1_c00299{width:428.479982pt;}
.w0_c00299{width:1920.000000pt;}
.x0_c00299{left:0.000000pt;}
.x2_c00299{left:53.807824pt;}
.x1_c00299{left:256.959989pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2be08e8ebe8db09af70ad80f.woff')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:0.939100;font-style:normal;font-weight:normal;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_4f69734e029728d15663cce4.woff')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00300;src:url('chunks/assets/font_29955b0340d4f911508b37ac.woff')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.021000;font-style: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);}
.v3_c00300{vertical-align:-98.827556px;}
.v1_c00300{vertical-align:-28.800040px;}
.v2_c00300{vertical-align:-26.396987px;}
.v0_c00300{vertical-align:0.000000px;}
.ls2_c00300{letter-spacing:0.000000px;}
.ls1_c00300{letter-spacing:45.660689px;}
.ls0_c00300{letter-spacing:49.824163px;}
.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:-86.399996px;}
.ws2_c00300{word-spacing:-44.610928px;}
.ws1_c00300{word-spacing:-6.767810px;}
.ws3_c00300{word-spacing:0.000000px;}
._0_c00300{margin-left:-41.903285px;}
._3_c00300{margin-left:-38.109841px;}
._4_c00300{width:38.139448px;}
._6_c00300{width:41.928132px;}
._5_c00300{width:87.528937px;}
._2_c00300{width:98.222311px;}
._1_c00300{width:137.050613px;}
._7_c00300{width:473.098107px;}
.fc1_c00300{color:rgb(0,0,0);}
.fc3_c00300{color:transparent;}
.fc2_c00300{color:rgb(25,18,12);}
.fc0_c00300{color:rgb(6,52,10);}
.fs3_c00300{font-size:119.969995px;}
.fs2_c00300{font-size:131.984995px;}
.fs1_c00300{font-size:143.999994px;}
.fs4_c00300{font-size:215.999991px;}
.fs0_c00300{font-size:575.999976px;}
.y0_c00300{bottom:0.000000px;}
.y1_c00300{bottom:0.000010px;}
.y1c_c00300{bottom:28.820303px;}
.y1d_c00300{bottom:58.787854px;}
.y1b_c00300{bottom:109.777189px;}
.y1a_c00300{bottom:155.902188px;}
.y19_c00300{bottom:202.027186px;}
.y17_c00300{bottom:248.152184px;}
.y18_c00300{bottom:254.751430px;}
.y16_c00300{bottom:294.277182px;}
.y15_c00300{bottom:340.402180px;}
.y14_c00300{bottom:386.527178px;}
.y13_c00300{bottom:432.652176px;}
.y12_c00300{bottom:476.527174px;}
.ya_c00300{bottom:508.852246px;}
.yb_c00300{bottom:516.088253px;}
.y11_c00300{bottom:518.152172px;}
.y8_c00300{bottom:558.352244px;}
.yf_c00300{bottom:562.027171px;}
.y9_c00300{bottom:565.552254px;}
.y10_c00300{bottom:568.626417px;}
.y6_c00300{bottom:607.852242px;}
.ye_c00300{bottom:608.152169px;}
.y7_c00300{bottom:615.052252px;}
.yd_c00300{bottom:654.277167px;}
.y4_c00300{bottom:657.352240px;}
.y5_c00300{bottom:664.552250px;}
.yc_c00300{bottom:700.402165px;}
.y2_c00300{bottom:834.612395px;}
.y3_c00300{bottom:840.976356px;}
.h7_c00300{height:91.297166px;}
.h6_c00300{height:100.440581px;}
.h5_c00300{height:109.583995px;}
.h8_c00300{height:197.855992px;}
.h4_c00300{height:402.623983px;}
.h3_c00300{height:527.615978px;}
.h2_c00300{height:1214.999949px;}
.h0_c00300{height:1214.999989px;}
.h1_c00300{height:1215.000000px;}
.w1_c00300{width:2159.999910px;}
.w0_c00300{width:2160.000000px;}
.x0_c00300{left:0.000000px;}
.xa_c00300{left:34.102124px;}
.x2_c00300{left:267.544634px;}
.x1_c00300{left:273.908595px;}
.x3_c00300{left:302.230533px;}
.x4_c00300{left:315.838542px;}
.x5_c00300{left:492.202867px;}
.x8_c00300{left:1023.554222px;}
.x6_c00300{left:1028.651878px;}
.x7_c00300{left:1041.124450px;}
.x9_c00300{left:1275.149827px;}
@media print{
.v3_c00300{vertical-align:-87.846716pt;}
.v1_c00300{vertical-align:-25.600036pt;}
.v2_c00300{vertical-align:-23.463988pt;}
.v0_c00300{vertical-align:0.000000pt;}
.ls2_c00300{letter-spacing:0.000000pt;}
.ls1_c00300{letter-spacing:40.587279pt;}
.ls0_c00300{letter-spacing:44.288145pt;}
.ws0_c00300{word-spacing:-76.799997pt;}
.ws2_c00300{word-spacing:-39.654158pt;}
.ws1_c00300{word-spacing:-6.015831pt;}
.ws3_c00300{word-spacing:0.000000pt;}
._0_c00300{margin-left:-37.247365pt;}
._3_c00300{margin-left:-33.875414pt;}
._4_c00300{width:33.901732pt;}
._6_c00300{width:37.269450pt;}
._5_c00300{width:77.803500pt;}
._2_c00300{width:87.308721pt;}
._1_c00300{width:121.822767pt;}
._7_c00300{width:420.531650pt;}
.fs3_c00300{font-size:106.639996pt;}
.fs2_c00300{font-size:117.319995pt;}
.fs1_c00300{font-size:127.999995pt;}
.fs4_c00300{font-size:191.999992pt;}
.fs0_c00300{font-size:511.999979pt;}
.y0_c00300{bottom:0.000000pt;}
.y1_c00300{bottom:0.000009pt;}
.y1c_c00300{bottom:25.618047pt;}
.y1d_c00300{bottom:52.255870pt;}
.y1b_c00300{bottom:97.579724pt;}
.y1a_c00300{bottom:138.579722pt;}
.y19_c00300{bottom:179.579721pt;}
.y17_c00300{bottom:220.579719pt;}
.y18_c00300{bottom:226.445716pt;}
.y16_c00300{bottom:261.579717pt;}
.y15_c00300{bottom:302.579715pt;}
.y14_c00300{bottom:343.579714pt;}
.y13_c00300{bottom:384.579712pt;}
.y12_c00300{bottom:423.579710pt;}
.ya_c00300{bottom:452.313108pt;}
.yb_c00300{bottom:458.745114pt;}
.y11_c00300{bottom:460.579709pt;}
.y8_c00300{bottom:496.313106pt;}
.yf_c00300{bottom:499.579707pt;}
.y9_c00300{bottom:502.713115pt;}
.y10_c00300{bottom:505.445704pt;}
.y6_c00300{bottom:540.313104pt;}
.ye_c00300{bottom:540.579705pt;}
.y7_c00300{bottom:546.713113pt;}
.yd_c00300{bottom:581.579704pt;}
.y4_c00300{bottom:584.313102pt;}
.y5_c00300{bottom:590.713111pt;}
.yc_c00300{bottom:622.579702pt;}
.y2_c00300{bottom:741.877684pt;}
.y3_c00300{bottom:747.534538pt;}
.h7_c00300{height:81.153037pt;}
.h6_c00300{height:89.280516pt;}
.h5_c00300{height:97.407996pt;}
.h8_c00300{height:175.871993pt;}
.h4_c00300{height:357.887985pt;}
.h3_c00300{height:468.991980pt;}
.h2_c00300{height:1079.999955pt;}
.h0_c00300{height:1079.999991pt;}
.h1_c00300{height:1080.000000pt;}
.w1_c00300{width:1919.999920pt;}
.w0_c00300{width:1920.000000pt;}
.x0_c00300{left:0.000000pt;}
.xa_c00300{left:30.312999pt;}
.x2_c00300{left:237.817452pt;}
.x1_c00300{left:243.474307pt;}
.x3_c00300{left:268.649363pt;}
.x4_c00300{left:280.745370pt;}
.x5_c00300{left:437.513660pt;}
.x8_c00300{left:909.825975pt;}
.x6_c00300{left:914.357225pt;}
.x7_c00300{left:925.443955pt;}
.x9_c00300{left:1133.466513pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5debb1247683aa7772f58a6.woff')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:0.939100;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00301;src:url('chunks/assets/font_e813bfe46d6cf272bc36feb3.woff')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:0.932238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00301;src:url('chunks/assets/font_59b7e7be8a4dc6c56115df09.woff')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.021000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00301{vertical-align:-47.992468px;}
.v3_c00301{vertical-align:-38.585974px;}
.v0_c00301{vertical-align:0.000000px;}
.v1_c00301{vertical-align:47.992468px;}
.ls3_c00301{letter-spacing:0.000000px;}
.ls0_c00301{letter-spacing:22.091991px;}
.ls1_c00301{letter-spacing:22.114508px;}
.ls2_c00301{letter-spacing:42.452334px;}
.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;}
}
.ws1_c00301{word-spacing:-236.159990px;}
.ws0_c00301{word-spacing:-86.399996px;}
.ws2_c00301{word-spacing:-9.032810px;}
.ws3_c00301{word-spacing:0.000000px;}
._0_c00301{margin-left:-55.943202px;}
._2_c00301{margin-left:-22.115461px;}
._1_c00301{width:55.853048px;}
.fc1_c00301{color:rgb(0,0,0);}
.fc3_c00301{color:transparent;}
.fc2_c00301{color:rgb(25,18,12);}
.fc0_c00301{color:rgb(6,52,10);}
.fs1_c00301{font-size:191.969992px;}
.fs2_c00301{font-size:215.999991px;}
.fs0_c00301{font-size:575.999976px;}
.y0_c00301{bottom:0.000000px;}
.y1_c00301{bottom:0.000010px;}
.ya_c00301{bottom:28.820303px;}
.yb_c00301{bottom:58.787854px;}
.y9_c00301{bottom:85.070300px;}
.y7_c00301{bottom:444.405261px;}
.y8_c00301{bottom:454.051755px;}
.y6_c00301{bottom:510.780258px;}
.y5_c00301{bottom:577.155256px;}
.y4_c00301{bottom:643.530253px;}
.y2_c00301{bottom:831.302785px;}
.y3_c00301{bottom:837.666746px;}
.h5_c00301{height:146.089164px;}
.h6_c00301{height:194.081632px;}
.h7_c00301{height:197.855992px;}
.h4_c00301{height:525.641121px;}
.h3_c00301{height:527.615978px;}
.h2_c00301{height:1214.999949px;}
.h0_c00301{height:1214.999989px;}
.h1_c00301{height:1215.000000px;}
.w1_c00301{width:2159.999910px;}
.w0_c00301{width:2160.000000px;}
.x0_c00301{left:0.000000px;}
.x6_c00301{left:34.102124px;}
.x3_c00301{left:593.626220px;}
.x4_c00301{left:846.860782px;}
.x5_c00301{left:1275.149827px;}
.x2_c00301{left:1392.323414px;}
.x1_c00301{left:1398.687386px;}
@media print{
.v2_c00301{vertical-align:-42.659971pt;}
.v3_c00301{vertical-align:-34.298644pt;}
.v0_c00301{vertical-align:0.000000pt;}
.v1_c00301{vertical-align:42.659971pt;}
.ls3_c00301{letter-spacing:0.000000pt;}
.ls0_c00301{letter-spacing:19.637325pt;}
.ls1_c00301{letter-spacing:19.657341pt;}
.ls2_c00301{letter-spacing:37.735408pt;}
.ws1_c00301{word-spacing:-209.919991pt;}
.ws0_c00301{word-spacing:-76.799997pt;}
.ws2_c00301{word-spacing:-8.029164pt;}
.ws3_c00301{word-spacing:0.000000pt;}
._0_c00301{margin-left:-49.727291pt;}
._2_c00301{margin-left:-19.658188pt;}
._1_c00301{width:49.647154pt;}
.fs1_c00301{font-size:170.639993pt;}
.fs2_c00301{font-size:191.999992pt;}
.fs0_c00301{font-size:511.999979pt;}
.y0_c00301{bottom:0.000000pt;}
.y1_c00301{bottom:0.000009pt;}
.ya_c00301{bottom:25.618047pt;}
.yb_c00301{bottom:52.255870pt;}
.y9_c00301{bottom:75.618045pt;}
.y7_c00301{bottom:395.026899pt;}
.y8_c00301{bottom:403.601560pt;}
.y6_c00301{bottom:454.026896pt;}
.y5_c00301{bottom:513.026894pt;}
.y4_c00301{bottom:572.026891pt;}
.y2_c00301{bottom:738.935809pt;}
.y3_c00301{bottom:744.592663pt;}
.h5_c00301{height:129.857035pt;}
.h6_c00301{height:172.517006pt;}
.h7_c00301{height:175.871993pt;}
.h4_c00301{height:467.236552pt;}
.h3_c00301{height:468.991980pt;}
.h2_c00301{height:1079.999955pt;}
.h0_c00301{height:1079.999991pt;}
.h1_c00301{height:1080.000000pt;}
.w1_c00301{width:1919.999920pt;}
.w0_c00301{width:1920.000000pt;}
.x0_c00301{left:0.000000pt;}
.x6_c00301{left:30.312999pt;}
.x3_c00301{left:527.667751pt;}
.x4_c00301{left:752.765139pt;}
.x5_c00301{left:1133.466513pt;}
.x2_c00301{left:1237.620812pt;}
.x1_c00301{left:1243.277676pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_559628f88253d24911c08baf.woff')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:0.939100;font-style:normal;font-weight:normal;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_bf4b25bb4ae128671a5745cd.woff')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:0.933238;font-style: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;}
.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:-86.399996px;}
.ws1_c00302{word-spacing:0.000000px;}
.fc1_c00302{color:rgb(0,0,0);}
.fc2_c00302{color:transparent;}
.fc0_c00302{color:rgb(6,52,10);}
.fs1_c00302{font-size:215.999991px;}
.fs0_c00302{font-size:575.999976px;}
.y0_c00302{bottom:0.000000px;}
.y1_c00302{bottom:0.000010px;}
.y5_c00302{bottom:28.820303px;}
.y6_c00302{bottom:58.787854px;}
.y4_c00302{bottom:85.070300px;}
.y2_c00302{bottom:834.612395px;}
.y3_c00302{bottom:840.976356px;}
.h5_c00302{height:197.855992px;}
.h4_c00302{height:525.641121px;}
.h3_c00302{height:527.615978px;}
.h2_c00302{height:1214.999949px;}
.h0_c00302{height:1214.999989px;}
.h1_c00302{height:1215.000000px;}
.w1_c00302{width:2159.999910px;}
.w0_c00302{width:2160.000000px;}
.x0_c00302{left:0.000000px;}
.x4_c00302{left:34.102124px;}
.x2_c00302{left:267.544634px;}
.x1_c00302{left:273.908595px;}
.x3_c00302{left:1275.149827px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls0_c00302{letter-spacing:0.000000pt;}
.ws0_c00302{word-spacing:-76.799997pt;}
.ws1_c00302{word-spacing:0.000000pt;}
.fs1_c00302{font-size:191.999992pt;}
.fs0_c00302{font-size:511.999979pt;}
.y0_c00302{bottom:0.000000pt;}
.y1_c00302{bottom:0.000009pt;}
.y5_c00302{bottom:25.618047pt;}
.y6_c00302{bottom:52.255870pt;}
.y4_c00302{bottom:75.618045pt;}
.y2_c00302{bottom:741.877684pt;}
.y3_c00302{bottom:747.534538pt;}
.h5_c00302{height:175.871993pt;}
.h4_c00302{height:467.236552pt;}
.h3_c00302{height:468.991980pt;}
.h2_c00302{height:1079.999955pt;}
.h0_c00302{height:1079.999991pt;}
.h1_c00302{height:1080.000000pt;}
.w1_c00302{width:1919.999920pt;}
.w0_c00302{width:1920.000000pt;}
.x0_c00302{left:0.000000pt;}
.x4_c00302{left:30.312999pt;}
.x2_c00302{left:237.817452pt;}
.x1_c00302{left:243.474307pt;}
.x3_c00302{left:1133.466513pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_565c082db95944c6d07a0992.woff')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:0.944000;font-style:normal;font-weight:normal;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_615cbf9305f18bed7783c8c6.woff')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:0.939100;font-style: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:-557.981977px;}
.ws1_c00303{word-spacing:-139.495494px;}
.ws2_c00303{word-spacing:0.000000px;}
.fc1_c00303{color:transparent;}
.fc0_c00303{color:rgb(6,52,10);}
.fs1_c00303{font-size:215.999991px;}
.fs0_c00303{font-size:929.969961px;}
.y0_c00303{bottom:0.000000px;}
.y1_c00303{bottom:0.000010px;}
.y5_c00303{bottom:28.820303px;}
.y6_c00303{bottom:58.787854px;}
.y4_c00303{bottom:85.070300px;}
.y2_c00303{bottom:522.655819px;}
.y3_c00303{bottom:532.930759px;}
.h4_c00303{height:197.855992px;}
.h3_c00303{height:877.891643px;}
.h2_c00303{height:1214.999949px;}
.h0_c00303{height:1214.999989px;}
.h1_c00303{height:1215.000000px;}
.w1_c00303{width:2159.999910px;}
.w0_c00303{width:2160.000000px;}
.x0_c00303{left:0.000000px;}
.x4_c00303{left:34.102124px;}
.x2_c00303{left:744.653741px;}
.x1_c00303{left:754.928681px;}
.x3_c00303{left:1275.149827px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ws0_c00303{word-spacing:-495.983979pt;}
.ws1_c00303{word-spacing:-123.995995pt;}
.ws2_c00303{word-spacing:0.000000pt;}
.fs1_c00303{font-size:191.999992pt;}
.fs0_c00303{font-size:826.639966pt;}
.y0_c00303{bottom:0.000000pt;}
.y1_c00303{bottom:0.000009pt;}
.y5_c00303{bottom:25.618047pt;}
.y6_c00303{bottom:52.255870pt;}
.y4_c00303{bottom:75.618045pt;}
.y2_c00303{bottom:464.582950pt;}
.y3_c00303{bottom:473.716230pt;}
.h4_c00303{height:175.871993pt;}
.h3_c00303{height:780.348127pt;}
.h2_c00303{height:1079.999955pt;}
.h0_c00303{height:1079.999991pt;}
.h1_c00303{height:1080.000000pt;}
.w1_c00303{width:1919.999920pt;}
.w0_c00303{width:1920.000000pt;}
.x0_c00303{left:0.000000pt;}
.x4_c00303{left:30.312999pt;}
.x2_c00303{left:661.914436pt;}
.x1_c00303{left:671.047716pt;}
.x3_c00303{left:1133.466513pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08e208ff1a8465571788d359.woff')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:0.969727;font-style: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;}
.ls2_c00304{letter-spacing:-0.720000px;}
.ls0_c00304{letter-spacing:-0.480000px;}
.ls1_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;}
}
.ws1_c00304{word-spacing:0.000000px;}
.ws0_c00304{word-spacing:0.480000px;}
.ws2_c00304{word-spacing:0.720000px;}
._5_c00304{margin-left:-7.224000px;}
._0_c00304{margin-left:-5.736000px;}
._4_c00304{margin-left:-2.976000px;}
._3_c00304{margin-left:-1.200000px;}
._2_c00304{width:1.656000px;}
._6_c00304{width:2.760000px;}
._1_c00304{width:4.776000px;}
.fc0_c00304{color:rgb(35,31,32);}
.fs0_c00304{font-size:240.000000px;}
.y0_c00304{bottom:0.000000px;}
.y5_c00304{bottom:421.690200px;}
.y4_c00304{bottom:493.690200px;}
.y3_c00304{bottom:565.690200px;}
.y2_c00304{bottom:637.690200px;}
.y1_c00304{bottom:709.690200px;}
.h2_c00304{height:181.171875px;}
.h0_c00304{height:892.914000px;}
.h1_c00304{height:893.250000px;}
.w0_c00304{width:1262.835000px;}
.w1_c00304{width:1263.000000px;}
.x0_c00304{left:0.000000px;}
.x1_c00304{left:170.078700px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls2_c00304{letter-spacing:-0.640000pt;}
.ls0_c00304{letter-spacing:-0.426667pt;}
.ls1_c00304{letter-spacing:0.000000pt;}
.ws1_c00304{word-spacing:0.000000pt;}
.ws0_c00304{word-spacing:0.426667pt;}
.ws2_c00304{word-spacing:0.640000pt;}
._5_c00304{margin-left:-6.421333pt;}
._0_c00304{margin-left:-5.098667pt;}
._4_c00304{margin-left:-2.645333pt;}
._3_c00304{margin-left:-1.066667pt;}
._2_c00304{width:1.472000pt;}
._6_c00304{width:2.453333pt;}
._1_c00304{width:4.245333pt;}
.fs0_c00304{font-size:213.333333pt;}
.y0_c00304{bottom:0.000000pt;}
.y5_c00304{bottom:374.835733pt;}
.y4_c00304{bottom:438.835733pt;}
.y3_c00304{bottom:502.835733pt;}
.y2_c00304{bottom:566.835733pt;}
.y1_c00304{bottom:630.835733pt;}
.h2_c00304{height:161.041667pt;}
.h0_c00304{height:793.701333pt;}
.h1_c00304{height:794.000000pt;}
.w0_c00304{width:1122.520000pt;}
.w1_c00304{width:1122.666667pt;}
.x0_c00304{left:0.000000pt;}
.x1_c00304{left:151.181067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00305{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
}
.y0_c00305{bottom:0.000000px;}
.h0_c00305{height:892.914000px;}
.h1_c00305{height:893.250000px;}
.w0_c00305{width:1262.835000px;}
.w1_c00305{width:1263.000000px;}
.x0_c00305{left:0.000000px;}
@media print{
.y0_c00305{bottom:0.000000pt;}
.h0_c00305{height:793.701333pt;}
.h1_c00305{height:794.000000pt;}
.w0_c00305{width:1122.520000pt;}
.w1_c00305{width:1122.666667pt;}
.x0_c00305{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_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_709fd56e94eb0b0871eab3f2.woff')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.128418;font-style: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;}
._d_c00306{margin-left:-19.812000px;}
._b_c00306{margin-left:-11.858400px;}
._3_c00306{margin-left:-7.106400px;}
._4_c00306{margin-left:-5.023200px;}
._2_c00306{margin-left:-3.544800px;}
._0_c00306{margin-left:-2.234400px;}
._8_c00306{margin-left:-1.105200px;}
._5_c00306{width:1.528800px;}
._9_c00306{width:2.574000px;}
._1_c00306{width:3.746400px;}
._c_c00306{width:5.650800px;}
._6_c00306{width:52.884000px;}
._7_c00306{width:70.824000px;}
._a_c00306{width:212.316000px;}
.fc0_c00306{color:rgb(35,31,32);}
.fs1_c00306{font-size:156.000000px;}
.fs0_c00306{font-size:168.000000px;}
.y0_c00306{bottom:0.000000px;}
.yb_c00306{bottom:141.453150px;}
.ya_c00306{bottom:201.435150px;}
.y9_c00306{bottom:261.417150px;}
.y8_c00306{bottom:321.399150px;}
.y7_c00306{bottom:381.381150px;}
.y6_c00306{bottom:441.363150px;}
.y5_c00306{bottom:501.345150px;}
.y4_c00306{bottom:561.327150px;}
.y3_c00306{bottom:621.309150px;}
.y2_c00306{bottom:718.509150px;}
.y1_c00306{bottom:768.909150px;}
.h3_c00306{height:142.441406px;}
.h2_c00306{height:153.398438px;}
.h0_c00306{height:892.914000px;}
.h1_c00306{height:893.250000px;}
.w0_c00306{width:1262.835000px;}
.w1_c00306{width:1263.000000px;}
.x0_c00306{left:0.000000px;}
.x1_c00306{left:170.078700px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls0_c00306{letter-spacing:0.000000pt;}
.ws0_c00306{word-spacing:0.000000pt;}
._d_c00306{margin-left:-17.610667pt;}
._b_c00306{margin-left:-10.540800pt;}
._3_c00306{margin-left:-6.316800pt;}
._4_c00306{margin-left:-4.465067pt;}
._2_c00306{margin-left:-3.150933pt;}
._0_c00306{margin-left:-1.986133pt;}
._8_c00306{margin-left:-0.982400pt;}
._5_c00306{width:1.358933pt;}
._9_c00306{width:2.288000pt;}
._1_c00306{width:3.330133pt;}
._c_c00306{width:5.022933pt;}
._6_c00306{width:47.008000pt;}
._7_c00306{width:62.954667pt;}
._a_c00306{width:188.725333pt;}
.fs1_c00306{font-size:138.666667pt;}
.fs0_c00306{font-size:149.333333pt;}
.y0_c00306{bottom:0.000000pt;}
.yb_c00306{bottom:125.736133pt;}
.ya_c00306{bottom:179.053467pt;}
.y9_c00306{bottom:232.370800pt;}
.y8_c00306{bottom:285.688133pt;}
.y7_c00306{bottom:339.005467pt;}
.y6_c00306{bottom:392.322800pt;}
.y5_c00306{bottom:445.640133pt;}
.y4_c00306{bottom:498.957467pt;}
.y3_c00306{bottom:552.274800pt;}
.y2_c00306{bottom:638.674800pt;}
.y1_c00306{bottom:683.474800pt;}
.h3_c00306{height:126.614583pt;}
.h2_c00306{height:136.354167pt;}
.h0_c00306{height:793.701333pt;}
.h1_c00306{height:794.000000pt;}
.w0_c00306{width:1122.520000pt;}
.w1_c00306{width:1122.666667pt;}
.x0_c00306{left:0.000000pt;}
.x1_c00306{left:151.181067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0fb6895d1780c36345b9a1d2.woff')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.128418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls0_c00307{letter-spacing:0.000000px;}
.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:-38.880000px;}
.ws1_c00307{word-spacing:0.000000px;}
._0_c00307{margin-left:-9.126000px;}
._7_c00307{margin-left:-6.692400px;}
._2_c00307{margin-left:-4.524000px;}
._6_c00307{margin-left:-2.745600px;}
._5_c00307{margin-left:-1.482000px;}
._4_c00307{width:1.154400px;}
._3_c00307{width:2.620800px;}
._8_c00307{width:4.383600px;}
._1_c00307{width:40.872000px;}
.fc0_c00307{color:rgb(35,31,32);}
.fs1_c00307{font-size:156.000000px;}
.fs0_c00307{font-size:180.000000px;}
.y0_c00307{bottom:0.000000px;}
.y6_c00307{bottom:346.194900px;}
.y5_c00307{bottom:406.176900px;}
.y4_c00307{bottom:586.161900px;}
.y3_c00307{bottom:646.143900px;}
.y2_c00307{bottom:706.125900px;}
.y1_c00307{bottom:766.125900px;}
.h3_c00307{height:142.441406px;}
.h2_c00307{height:164.355469px;}
.h0_c00307{height:892.914000px;}
.h1_c00307{height:893.250000px;}
.w0_c00307{width:1262.835000px;}
.w1_c00307{width:1263.000000px;}
.x0_c00307{left:0.000000px;}
.x1_c00307{left:170.078700px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ws0_c00307{word-spacing:-34.560000pt;}
.ws1_c00307{word-spacing:0.000000pt;}
._0_c00307{margin-left:-8.112000pt;}
._7_c00307{margin-left:-5.948800pt;}
._2_c00307{margin-left:-4.021333pt;}
._6_c00307{margin-left:-2.440533pt;}
._5_c00307{margin-left:-1.317333pt;}
._4_c00307{width:1.026133pt;}
._3_c00307{width:2.329600pt;}
._8_c00307{width:3.896533pt;}
._1_c00307{width:36.330667pt;}
.fs1_c00307{font-size:138.666667pt;}
.fs0_c00307{font-size:160.000000pt;}
.y0_c00307{bottom:0.000000pt;}
.y6_c00307{bottom:307.728800pt;}
.y5_c00307{bottom:361.046133pt;}
.y4_c00307{bottom:521.032800pt;}
.y3_c00307{bottom:574.350133pt;}
.y2_c00307{bottom:627.667467pt;}
.y1_c00307{bottom:681.000800pt;}
.h3_c00307{height:126.614583pt;}
.h2_c00307{height:146.093750pt;}
.h0_c00307{height:793.701333pt;}
.h1_c00307{height:794.000000pt;}
.w0_c00307{width:1122.520000pt;}
.w1_c00307{width:1122.666667pt;}
.x0_c00307{left:0.000000pt;}
.x1_c00307{left:151.181067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00308{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
}
.y0_c00308{bottom:0.000000px;}
.h0_c00308{height:892.914000px;}
.h1_c00308{height:893.250000px;}
.w0_c00308{width:1262.835000px;}
.w1_c00308{width:1263.000000px;}
.x0_c00308{left:0.000000px;}
@media print{
.y0_c00308{bottom:0.000000pt;}
.h0_c00308{height:793.701333pt;}
.h1_c00308{height:794.000000pt;}
.w0_c00308{width:1122.520000pt;}
.w1_c00308{width:1122.666667pt;}
.x0_c00308{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_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;}
.sc__c00309{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
}
.y0_c00309{bottom:0.000000px;}
.h0_c00309{height:892.914000px;}
.h1_c00309{height:893.250000px;}
.w0_c00309{width:1262.835000px;}
.w1_c00309{width:1263.000000px;}
.x0_c00309{left:0.000000px;}
@media print{
.y0_c00309{bottom:0.000000pt;}
.h0_c00309{height:793.701333pt;}
.h1_c00309{height:794.000000pt;}
.w0_c00309{width:1122.520000pt;}
.w1_c00309{width:1122.666667pt;}
.x0_c00309{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_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;}
.sc__c00310{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
}
.y0_c00310{bottom:0.000000px;}
.h0_c00310{height:892.914000px;}
.h1_c00310{height:893.250000px;}
.w0_c00310{width:1262.835000px;}
.w1_c00310{width:1263.000000px;}
.x0_c00310{left:0.000000px;}
@media print{
.y0_c00310{bottom:0.000000pt;}
.h0_c00310{height:793.701333pt;}
.h1_c00310{height:794.000000pt;}
.w0_c00310{width:1122.520000pt;}
.w1_c00310{width:1122.666667pt;}
.x0_c00310{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_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_84c8347b8da4518fdc5a557a.woff')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00311;src:url('chunks/assets/font_ecc474681b2cdd633942dc18.woff')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00311;src:url('chunks/assets/font_62feeb6802d50ecf1b7f80f6.woff')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00311;src:url('chunks/assets/font_e156a2bd0795bd1834c1c2ac.woff')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00311;src:url('chunks/assets/font_b6d238d4baa9469a4a726cfa.woff')format("woff");}.ff5_c00311{font-family:ff5_c00311;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00311;src:url('chunks/assets/font_7081f701bb778e7dd7515729.woff')format("woff");}.ff6_c00311{font-family:ff6_c00311;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls2_c00311{letter-spacing:-6.840000px;}
.ls1_c00311{letter-spacing:-6.600000px;}
.ls0_c00311{letter-spacing:0.000000px;}
.sc__c00311{text-shadow:none;}
.sc1_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00311{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc1_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00311{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
}
.ws0_c00311{word-spacing:-527.904000px;}
.ws4_c00311{word-spacing:-198.000000px;}
.ws1_c00311{word-spacing:-139.894560px;}
.ws2_c00311{word-spacing:-38.160000px;}
.ws3_c00311{word-spacing:-34.744320px;}
.ws5_c00311{word-spacing:-33.787440px;}
.ws6_c00311{word-spacing:0.000000px;}
._4_c00311{margin-left:-42.347040px;}
._0_c00311{margin-left:-40.120704px;}
._3_c00311{margin-left:-38.536992px;}
._1_c00311{margin-left:-36.425376px;}
._8_c00311{margin-left:-8.406000px;}
._6_c00311{margin-left:-6.768000px;}
._5_c00311{margin-left:-4.752000px;}
._7_c00311{margin-left:-3.565440px;}
._9_c00311{margin-left:-1.722000px;}
._a_c00311{width:35.352000px;}
._2_c00311{width:59.030496px;}
.fc0_c00311{color:rgb(35,66,34);}
.fs5_c00311{font-size:120.240000px;}
.fs1_c00311{font-size:144.000000px;}
.fs2_c00311{font-size:149.760000px;}
.fs3_c00311{font-size:149.904000px;}
.fs4_c00311{font-size:198.000000px;}
.fs0_c00311{font-size:527.904000px;}
.y0_c00311{bottom:0.000000px;}
.y9_c00311{bottom:39.240000px;}
.y8_c00311{bottom:78.300000px;}
.y6_c00311{bottom:105.588000px;}
.y7_c00311{bottom:117.180000px;}
.y1_c00311{bottom:203.970000px;}
.y5_c00311{bottom:949.140000px;}
.y4_c00311{bottom:1001.730000px;}
.y3_c00311{bottom:1054.110000px;}
.y2_c00311{bottom:1110.570000px;}
.h6_c00311{height:114.774545px;}
.h2_c00311{height:138.784091px;}
.h3_c00311{height:142.952727px;}
.h4_c00311{height:143.090182px;}
.h5_c00311{height:190.828125px;}
.h1_c00311{height:508.782477px;}
.h0_c00311{height:1215.000000px;}
.w1_c00311{width:2159.999968px;}
.w0_c00311{width:2160.000000px;}
.x0_c00311{left:0.000000px;}
.x3_c00311{left:17.999968px;}
.x2_c00311{left:67.499968px;}
.x1_c00311{left:504.029968px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls2_c00311{letter-spacing:-6.080000pt;}
.ls1_c00311{letter-spacing:-5.866667pt;}
.ls0_c00311{letter-spacing:0.000000pt;}
.ws0_c00311{word-spacing:-469.248000pt;}
.ws4_c00311{word-spacing:-176.000000pt;}
.ws1_c00311{word-spacing:-124.350720pt;}
.ws2_c00311{word-spacing:-33.920000pt;}
.ws3_c00311{word-spacing:-30.883840pt;}
.ws5_c00311{word-spacing:-30.033280pt;}
.ws6_c00311{word-spacing:0.000000pt;}
._4_c00311{margin-left:-37.641813pt;}
._0_c00311{margin-left:-35.662848pt;}
._3_c00311{margin-left:-34.255104pt;}
._1_c00311{margin-left:-32.378112pt;}
._8_c00311{margin-left:-7.472000pt;}
._6_c00311{margin-left:-6.016000pt;}
._5_c00311{margin-left:-4.224000pt;}
._7_c00311{margin-left:-3.169280pt;}
._9_c00311{margin-left:-1.530667pt;}
._a_c00311{width:31.424000pt;}
._2_c00311{width:52.471552pt;}
.fs5_c00311{font-size:106.880000pt;}
.fs1_c00311{font-size:128.000000pt;}
.fs2_c00311{font-size:133.120000pt;}
.fs3_c00311{font-size:133.248000pt;}
.fs4_c00311{font-size:176.000000pt;}
.fs0_c00311{font-size:469.248000pt;}
.y0_c00311{bottom:0.000000pt;}
.y9_c00311{bottom:34.880000pt;}
.y8_c00311{bottom:69.600000pt;}
.y6_c00311{bottom:93.856000pt;}
.y7_c00311{bottom:104.160000pt;}
.y1_c00311{bottom:181.306667pt;}
.y5_c00311{bottom:843.680000pt;}
.y4_c00311{bottom:890.426667pt;}
.y3_c00311{bottom:936.986667pt;}
.y2_c00311{bottom:987.173333pt;}
.h6_c00311{height:102.021818pt;}
.h2_c00311{height:123.363636pt;}
.h3_c00311{height:127.069091pt;}
.h4_c00311{height:127.191273pt;}
.h5_c00311{height:169.625000pt;}
.h1_c00311{height:452.251091pt;}
.h0_c00311{height:1080.000000pt;}
.w1_c00311{width:1919.999971pt;}
.w0_c00311{width:1920.000000pt;}
.x0_c00311{left:0.000000pt;}
.x3_c00311{left:15.999971pt;}
.x2_c00311{left:59.999971pt;}
.x1_c00311{left:448.026638pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0391b64ee489d35748ada380.woff')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00312;src:url('chunks/assets/font_76dc15cb70de41bde02e676f.woff')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00312;src:url('chunks/assets/font_3748d6a9a1845d4412cfd3d2.woff')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00312;src:url('chunks/assets/font_e283d45d4b8ab0bd305d10dd.woff')format("woff");}.ff5_c00312{font-family:ff5_c00312;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00312;src:url('chunks/assets/font_43d2ef61ba3d67eb63d734b9.woff')format("woff");}.ff6_c00312{font-family:ff6_c00312;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00312;src:url('chunks/assets/font_f867ede476a8d537f47b30d1.woff')format("woff");}.ff7_c00312{font-family:ff7_c00312;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls4_c00312{letter-spacing:-6.060000px;}
.ls3_c00312{letter-spacing:-5.916000px;}
.ls2_c00312{letter-spacing:0.000000px;}
.ls0_c00312{letter-spacing:122.133600px;}
.ls1_c00312{letter-spacing:122.184000px;}
.sc__c00312{text-shadow:none;}
.sc1_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00312{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc1_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00312{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
}
.ws0_c00312{word-spacing:-154.166400px;}
.ws4_c00312{word-spacing:-39.686400px;}
.ws6_c00312{word-spacing:-34.744320px;}
.ws1_c00312{word-spacing:-31.966560px;}
.ws2_c00312{word-spacing:-0.062640px;}
.ws7_c00312{word-spacing:0.000000px;}
.ws5_c00312{word-spacing:3.894240px;}
.ws3_c00312{word-spacing:1508.183040px;}
._9_c00312{margin-left:-3998.718144px;}
._0_c00312{margin-left:-44.224704px;}
._2_c00312{margin-left:-41.897088px;}
._1_c00312{margin-left:-40.733280px;}
._3_c00312{margin-left:-38.987568px;}
._4_c00312{margin-left:-36.078048px;}
._b_c00312{margin-left:-7.188480px;}
._a_c00312{margin-left:-5.541120px;}
._c_c00312{margin-left:-4.193280px;}
._5_c00312{margin-left:-1.025136px;}
._6_c00312{width:1.139040px;}
._8_c00312{width:2.278080px;}
._7_c00312{width:3.754080px;}
._d_c00312{width:1664.720160px;}
.fc0_c00312{color:rgb(35,66,34);}
.fs3_c00312{font-size:113.760000px;}
.fs2_c00312{font-size:113.904000px;}
.fs4_c00312{font-size:120.240000px;}
.fs5_c00312{font-size:149.760000px;}
.fs6_c00312{font-size:149.904000px;}
.fs1_c00312{font-size:581.760000px;}
.fs0_c00312{font-size:581.904000px;}
.y0_c00312{bottom:0.000000px;}
.y6_c00312{bottom:75.924000px;}
.yb_c00312{bottom:133.668000px;}
.ya_c00312{bottom:174.210000px;}
.y10_c00312{bottom:177.225000px;}
.yf_c00312{bottom:233.565000px;}
.y16_c00312{bottom:233.970000px;}
.y9_c00312{bottom:246.600000px;}
.ye_c00312{bottom:274.065000px;}
.y15_c00312{bottom:274.470000px;}
.y8_c00312{bottom:305.460000px;}
.y14_c00312{bottom:314.970000px;}
.yd_c00312{bottom:332.670000px;}
.y5_c00312{bottom:361.515000px;}
.yc_c00312{bottom:373.170000px;}
.y4_c00312{bottom:402.015000px;}
.y3_c00312{bottom:442.545000px;}
.y7_c00312{bottom:546.915000px;}
.y2_c00312{bottom:805.290000px;}
.y1_c00312{bottom:979.380000px;}
.y13_c00312{bottom:1021.110000px;}
.y12_c00312{bottom:1073.670000px;}
.y11_c00312{bottom:1126.080000px;}
.h4_c00312{height:108.589091px;}
.h3_c00312{height:108.726545px;}
.h5_c00312{height:114.774545px;}
.h8_c00312{height:142.952727px;}
.h7_c00312{height:143.090182px;}
.h6_c00312{height:144.335455px;}
.h2_c00312{height:560.687727px;}
.h1_c00312{height:560.826511px;}
.h0_c00312{height:1215.000000px;}
.w1_c00312{width:2159.999968px;}
.w0_c00312{width:2160.000000px;}
.x0_c00312{left:0.000000px;}
.xd_c00312{left:29.339968px;}
.x6_c00312{left:67.499968px;}
.x8_c00312{left:479.489968px;}
.x9_c00312{left:482.834968px;}
.x5_c00312{left:519.989968px;}
.xa_c00312{left:523.334968px;}
.x7_c00312{left:581.249968px;}
.x4_c00312{left:1063.184968px;}
.xb_c00312{left:1064.189968px;}
.xc_c00312{left:1104.689968px;}
.x1_c00312{left:1161.104968px;}
.x2_c00312{left:1648.649968px;}
.xe_c00312{left:1657.049968px;}
.x3_c00312{left:1689.149968px;}
.xf_c00312{left:1697.549968px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls4_c00312{letter-spacing:-5.386667pt;}
.ls3_c00312{letter-spacing:-5.258667pt;}
.ls2_c00312{letter-spacing:0.000000pt;}
.ls0_c00312{letter-spacing:108.563200pt;}
.ls1_c00312{letter-spacing:108.608000pt;}
.ws0_c00312{word-spacing:-137.036800pt;}
.ws4_c00312{word-spacing:-35.276800pt;}
.ws6_c00312{word-spacing:-30.883840pt;}
.ws1_c00312{word-spacing:-28.414720pt;}
.ws2_c00312{word-spacing:-0.055680pt;}
.ws7_c00312{word-spacing:0.000000pt;}
.ws5_c00312{word-spacing:3.461547pt;}
.ws3_c00312{word-spacing:1340.607147pt;}
._9_c00312{margin-left:-3554.416128pt;}
._0_c00312{margin-left:-39.310848pt;}
._2_c00312{margin-left:-37.241856pt;}
._1_c00312{margin-left:-36.207360pt;}
._3_c00312{margin-left:-34.655616pt;}
._4_c00312{margin-left:-32.069376pt;}
._b_c00312{margin-left:-6.389760pt;}
._a_c00312{margin-left:-4.925440pt;}
._c_c00312{margin-left:-3.727360pt;}
._5_c00312{margin-left:-0.911232pt;}
._6_c00312{width:1.012480pt;}
._8_c00312{width:2.024960pt;}
._7_c00312{width:3.336960pt;}
._d_c00312{width:1479.751253pt;}
.fs3_c00312{font-size:101.120000pt;}
.fs2_c00312{font-size:101.248000pt;}
.fs4_c00312{font-size:106.880000pt;}
.fs5_c00312{font-size:133.120000pt;}
.fs6_c00312{font-size:133.248000pt;}
.fs1_c00312{font-size:517.120000pt;}
.fs0_c00312{font-size:517.248000pt;}
.y0_c00312{bottom:0.000000pt;}
.y6_c00312{bottom:67.488000pt;}
.yb_c00312{bottom:118.816000pt;}
.ya_c00312{bottom:154.853333pt;}
.y10_c00312{bottom:157.533333pt;}
.yf_c00312{bottom:207.613333pt;}
.y16_c00312{bottom:207.973333pt;}
.y9_c00312{bottom:219.200000pt;}
.ye_c00312{bottom:243.613333pt;}
.y15_c00312{bottom:243.973333pt;}
.y8_c00312{bottom:271.520000pt;}
.y14_c00312{bottom:279.973333pt;}
.yd_c00312{bottom:295.706667pt;}
.y5_c00312{bottom:321.346667pt;}
.yc_c00312{bottom:331.706667pt;}
.y4_c00312{bottom:357.346667pt;}
.y3_c00312{bottom:393.373333pt;}
.y7_c00312{bottom:486.146667pt;}
.y2_c00312{bottom:715.813333pt;}
.y1_c00312{bottom:870.560000pt;}
.y13_c00312{bottom:907.653333pt;}
.y12_c00312{bottom:954.373333pt;}
.y11_c00312{bottom:1000.960000pt;}
.h4_c00312{height:96.523636pt;}
.h3_c00312{height:96.645818pt;}
.h5_c00312{height:102.021818pt;}
.h8_c00312{height:127.069091pt;}
.h7_c00312{height:127.191273pt;}
.h6_c00312{height:128.298182pt;}
.h2_c00312{height:498.389091pt;}
.h1_c00312{height:498.512455pt;}
.h0_c00312{height:1080.000000pt;}
.w1_c00312{width:1919.999971pt;}
.w0_c00312{width:1920.000000pt;}
.x0_c00312{left:0.000000pt;}
.xd_c00312{left:26.079971pt;}
.x6_c00312{left:59.999971pt;}
.x8_c00312{left:426.213305pt;}
.x9_c00312{left:429.186638pt;}
.x5_c00312{left:462.213305pt;}
.xa_c00312{left:465.186638pt;}
.x7_c00312{left:516.666638pt;}
.x4_c00312{left:945.053305pt;}
.xb_c00312{left:945.946638pt;}
.xc_c00312{left:981.946638pt;}
.x1_c00312{left:1032.093305pt;}
.x2_c00312{left:1465.466638pt;}
.xe_c00312{left:1472.933305pt;}
.x3_c00312{left:1501.466638pt;}
.xf_c00312{left:1508.933305pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_90f82d18a71c57d9a647cb01.woff')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00313;src:url('chunks/assets/font_d48fc0084a8df3f1d3409107.woff')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00313;src:url('chunks/assets/font_5a23410a467478cc1f626a7a.woff')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00313;src:url('chunks/assets/font_374950d4069c01c6e63ee097.woff')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00313;src:url('chunks/assets/font_600ff13b54b988adb84cbae8.woff')format("woff");}.ff5_c00313{font-family:ff5_c00313;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00313;src:url('chunks/assets/font_9a92848ebeb8c3ac96cd1c3b.woff')format("woff");}.ff6_c00313{font-family:ff6_c00313;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00313;src:url('chunks/assets/font_061af44fd6b0805a541dc414.woff')format("woff");}.ff7_c00313{font-family:ff7_c00313;line-height:1.181818;font-style: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;}
.v3_c00313{vertical-align:10.800000px;}
.v1_c00313{vertical-align:36.540000px;}
.v2_c00313{vertical-align:57.060000px;}
.ls4_c00313{letter-spacing:0.000000px;}
.ls5_c00313{letter-spacing:0.063000px;}
.ls2_c00313{letter-spacing:0.144000px;}
.ls3_c00313{letter-spacing:39.600000px;}
.ls1_c00313{letter-spacing:48.702816px;}
.ls0_c00313{letter-spacing:48.816000px;}
.sc__c00313{text-shadow:none;}
.sc1_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00313{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc1_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00313{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
}
.ws11_c00313{word-spacing:-50.981760px;}
.ws0_c00313{word-spacing:-50.943600px;}
.ws7_c00313{word-spacing:-40.504464px;}
.ws3_c00313{word-spacing:-40.464000px;}
.wsc_c00313{word-spacing:-34.744320px;}
.ws5_c00313{word-spacing:-1.530432px;}
.wsd_c00313{word-spacing:-0.864000px;}
.wsf_c00313{word-spacing:-0.144000px;}
.ws13_c00313{word-spacing:0.000000px;}
.wsb_c00313{word-spacing:0.180000px;}
.ws8_c00313{word-spacing:0.259200px;}
.ws1_c00313{word-spacing:0.576000px;}
.wse_c00313{word-spacing:0.840000px;}
.ws9_c00313{word-spacing:0.909504px;}
.ws6_c00313{word-spacing:1.016640px;}
.ws4_c00313{word-spacing:1.129392px;}
.ws2_c00313{word-spacing:1.296000px;}
.wsa_c00313{word-spacing:2.016000px;}
.ws10_c00313{word-spacing:1255.078320px;}
.ws12_c00313{word-spacing:1275.512640px;}
._0_c00313{margin-left:-36.873216px;}
._1_c00313{margin-left:-35.720928px;}
._2_c00313{margin-left:-34.568640px;}
._3_c00313{margin-left:-32.264064px;}
._5_c00313{margin-left:-5.891760px;}
._9_c00313{margin-left:-4.647024px;}
._a_c00313{margin-left:-3.597696px;}
._8_c00313{margin-left:-1.152000px;}
._e_c00313{width:1.956960px;}
._6_c00313{width:21.471120px;}
._7_c00313{width:39.444960px;}
._c_c00313{width:40.728000px;}
._d_c00313{width:42.048000px;}
._4_c00313{width:83.744064px;}
._b_c00313{width:1301.840640px;}
.fc0_c00313{color:rgb(35,66,34);}
.fs2_c00313{font-size:120.240000px;}
.fs4_c00313{font-size:144.000000px;}
.fs5_c00313{font-size:144.144000px;}
.fs7_c00313{font-size:149.760000px;}
.fs6_c00313{font-size:149.904000px;}
.fs3_c00313{font-size:192.240000px;}
.fs8_c00313{font-size:192.384000px;}
.fs1_c00313{font-size:576.000000px;}
.fs0_c00313{font-size:576.144000px;}
.y0_c00313{bottom:0.000000px;}
.y3_c00313{bottom:75.924000px;}
.y15_c00313{bottom:79.236000px;}
.y14_c00313{bottom:219.030000px;}
.y11_c00313{bottom:222.630000px;}
.y13_c00313{bottom:259.530000px;}
.y12_c00313{bottom:300.030000px;}
.y10_c00313{bottom:306.435000px;}
.yf_c00313{bottom:386.250000px;}
.ye_c00313{bottom:412.485000px;}
.yd_c00313{bottom:493.710000px;}
.y9_c00313{bottom:560.415000px;}
.y5_c00313{bottom:584.280000px;}
.y8_c00313{bottom:600.945000px;}
.y7_c00313{bottom:656.430000px;}
.y4_c00313{bottom:678.495000px;}
.y6_c00313{bottom:696.930000px;}
.y2_c00313{bottom:866.490000px;}
.y1_c00313{bottom:1016.460000px;}
.yc_c00313{bottom:1030.110000px;}
.yb_c00313{bottom:1082.670000px;}
.ya_c00313{bottom:1135.080000px;}
.h3_c00313{height:114.774545px;}
.h5_c00313{height:137.454545px;}
.h6_c00313{height:137.592000px;}
.h8_c00313{height:142.952727px;}
.h7_c00313{height:143.090182px;}
.h4_c00313{height:185.276761px;}
.ha_c00313{height:185.415545px;}
.h9_c00313{height:194.514545px;}
.h2_c00313{height:555.136364px;}
.h1_c00313{height:555.275148px;}
.h0_c00313{height:1215.000000px;}
.w1_c00313{width:2159.999968px;}
.w0_c00313{width:2160.000000px;}
.x0_c00313{left:0.000000px;}
.x7_c00313{left:37.151968px;}
.x2_c00313{left:67.499968px;}
.x1_c00313{left:432.029968px;}
.x3_c00313{left:634.859968px;}
.x8_c00313{left:636.764968px;}
.x4_c00313{left:638.639968px;}
.x6_c00313{left:1078.844968px;}
.x5_c00313{left:1080.104968px;}
.xa_c00313{left:1119.344968px;}
.x9_c00313{left:1120.604968px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.v3_c00313{vertical-align:9.600000pt;}
.v1_c00313{vertical-align:32.480000pt;}
.v2_c00313{vertical-align:50.720000pt;}
.ls4_c00313{letter-spacing:0.000000pt;}
.ls5_c00313{letter-spacing:0.056000pt;}
.ls2_c00313{letter-spacing:0.128000pt;}
.ls3_c00313{letter-spacing:35.200000pt;}
.ls1_c00313{letter-spacing:43.291392pt;}
.ls0_c00313{letter-spacing:43.392000pt;}
.ws11_c00313{word-spacing:-45.317120pt;}
.ws0_c00313{word-spacing:-45.283200pt;}
.ws7_c00313{word-spacing:-36.003968pt;}
.ws3_c00313{word-spacing:-35.968000pt;}
.wsc_c00313{word-spacing:-30.883840pt;}
.ws5_c00313{word-spacing:-1.360384pt;}
.wsd_c00313{word-spacing:-0.768000pt;}
.wsf_c00313{word-spacing:-0.128000pt;}
.ws13_c00313{word-spacing:0.000000pt;}
.wsb_c00313{word-spacing:0.160000pt;}
.ws8_c00313{word-spacing:0.230400pt;}
.ws1_c00313{word-spacing:0.512000pt;}
.wse_c00313{word-spacing:0.746667pt;}
.ws9_c00313{word-spacing:0.808448pt;}
.ws6_c00313{word-spacing:0.903680pt;}
.ws4_c00313{word-spacing:1.003904pt;}
.ws2_c00313{word-spacing:1.152000pt;}
.wsa_c00313{word-spacing:1.792000pt;}
.ws10_c00313{word-spacing:1115.625173pt;}
.ws12_c00313{word-spacing:1133.789013pt;}
._0_c00313{margin-left:-32.776192pt;}
._1_c00313{margin-left:-31.751936pt;}
._2_c00313{margin-left:-30.727680pt;}
._3_c00313{margin-left:-28.679168pt;}
._5_c00313{margin-left:-5.237120pt;}
._9_c00313{margin-left:-4.130688pt;}
._a_c00313{margin-left:-3.197952pt;}
._8_c00313{margin-left:-1.024000pt;}
._e_c00313{width:1.739520pt;}
._6_c00313{width:19.085440pt;}
._7_c00313{width:35.062187pt;}
._c_c00313{width:36.202667pt;}
._d_c00313{width:37.376000pt;}
._4_c00313{width:74.439168pt;}
._b_c00313{width:1157.191680pt;}
.fs2_c00313{font-size:106.880000pt;}
.fs4_c00313{font-size:128.000000pt;}
.fs5_c00313{font-size:128.128000pt;}
.fs7_c00313{font-size:133.120000pt;}
.fs6_c00313{font-size:133.248000pt;}
.fs3_c00313{font-size:170.880000pt;}
.fs8_c00313{font-size:171.008000pt;}
.fs1_c00313{font-size:512.000000pt;}
.fs0_c00313{font-size:512.128000pt;}
.y0_c00313{bottom:0.000000pt;}
.y3_c00313{bottom:67.488000pt;}
.y15_c00313{bottom:70.432000pt;}
.y14_c00313{bottom:194.693333pt;}
.y11_c00313{bottom:197.893333pt;}
.y13_c00313{bottom:230.693333pt;}
.y12_c00313{bottom:266.693333pt;}
.y10_c00313{bottom:272.386667pt;}
.yf_c00313{bottom:343.333333pt;}
.ye_c00313{bottom:366.653333pt;}
.yd_c00313{bottom:438.853333pt;}
.y9_c00313{bottom:498.146667pt;}
.y5_c00313{bottom:519.360000pt;}
.y8_c00313{bottom:534.173333pt;}
.y7_c00313{bottom:583.493333pt;}
.y4_c00313{bottom:603.106667pt;}
.y6_c00313{bottom:619.493333pt;}
.y2_c00313{bottom:770.213333pt;}
.y1_c00313{bottom:903.520000pt;}
.yc_c00313{bottom:915.653333pt;}
.yb_c00313{bottom:962.373333pt;}
.ya_c00313{bottom:1008.960000pt;}
.h3_c00313{height:102.021818pt;}
.h5_c00313{height:122.181818pt;}
.h6_c00313{height:122.304000pt;}
.h8_c00313{height:127.069091pt;}
.h7_c00313{height:127.191273pt;}
.h4_c00313{height:164.690455pt;}
.ha_c00313{height:164.813818pt;}
.h9_c00313{height:172.901818pt;}
.h2_c00313{height:493.454545pt;}
.h1_c00313{height:493.577909pt;}
.h0_c00313{height:1080.000000pt;}
.w1_c00313{width:1919.999971pt;}
.w0_c00313{width:1920.000000pt;}
.x0_c00313{left:0.000000pt;}
.x7_c00313{left:33.023971pt;}
.x2_c00313{left:59.999971pt;}
.x1_c00313{left:384.026638pt;}
.x3_c00313{left:564.319971pt;}
.x8_c00313{left:566.013305pt;}
.x4_c00313{left:567.679971pt;}
.x6_c00313{left:958.973305pt;}
.x5_c00313{left:960.093305pt;}
.xa_c00313{left:994.973305pt;}
.x9_c00313{left:996.093305pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d39f876ec71f848ef00a17d.woff')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_2f485f504c5b2a9e6f8a9798.woff')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00314;src:url('chunks/assets/font_5b41223f3ce011bfee4de881.woff')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00314;src:url('chunks/assets/font_374950d4069c01c6e63ee097.woff')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00314;src:url('chunks/assets/font_69b6878e8e14525e258e2459.woff')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00314;src:url('chunks/assets/font_e8a8a26980d5ac8a19755621.woff')format("woff");}.ff6_c00314{font-family:ff6_c00314;line-height:1.181818;font-style: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;}
.ls3_c00314{letter-spacing:0.000000px;}
.ls2_c00314{letter-spacing:32.630400px;}
.ls1_c00314{letter-spacing:72.471456px;}
.ls0_c00314{letter-spacing:72.584640px;}
.sc__c00314{text-shadow:none;}
.sc1_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00314{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc1_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00314{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
}
.ws0_c00314{word-spacing:-184.503600px;}
.ws3_c00314{word-spacing:-34.744320px;}
.ws1_c00314{word-spacing:-31.966560px;}
.ws4_c00314{word-spacing:0.000000px;}
.ws2_c00314{word-spacing:0.702720px;}
._1_c00314{margin-left:-42.477960px;}
._2_c00314{margin-left:-41.078160px;}
._3_c00314{margin-left:-38.952840px;}
._0_c00314{margin-left:-37.603440px;}
._4_c00314{margin-left:-5.891760px;}
._e_c00314{margin-left:-4.796928px;}
._9_c00314{margin-left:-3.299040px;}
._7_c00314{margin-left:-2.275200px;}
._6_c00314{margin-left:-1.023840px;}
._a_c00314{width:1.137600px;}
._c_c00314{width:2.621232px;}
._b_c00314{width:4.550400px;}
._5_c00314{width:21.469680px;}
._8_c00314{width:30.960000px;}
._d_c00314{width:33.316848px;}
.fc0_c00314{color:rgb(35,66,34);}
.fs3_c00314{font-size:113.760000px;}
.fs4_c00314{font-size:113.904000px;}
.fs2_c00314{font-size:120.240000px;}
.fs6_c00314{font-size:149.760000px;}
.fs5_c00314{font-size:149.904000px;}
.fs1_c00314{font-size:696.240000px;}
.fs0_c00314{font-size:696.360000px;}
.y0_c00314{bottom:0.000000px;}
.y3_c00314{bottom:75.924000px;}
.y10_c00314{bottom:632.340000px;}
.yf_c00314{bottom:672.840000px;}
.ye_c00314{bottom:713.340000px;}
.yd_c00314{bottom:753.870000px;}
.y2_c00314{bottom:789.585000px;}
.yc_c00314{bottom:794.370000px;}
.yb_c00314{bottom:834.870000px;}
.ya_c00314{bottom:875.370000px;}
.y9_c00314{bottom:915.870000px;}
.y8_c00314{bottom:956.370000px;}
.y1_c00314{bottom:963.690000px;}
.y7_c00314{bottom:996.915000px;}
.y13_c00314{bottom:1021.110000px;}
.y6_c00314{bottom:1037.415000px;}
.y12_c00314{bottom:1073.670000px;}
.y5_c00314{bottom:1118.415000px;}
.y11_c00314{bottom:1126.080000px;}
.y4_c00314{bottom:1158.915000px;}
.h4_c00314{height:108.589091px;}
.h5_c00314{height:108.726545px;}
.h3_c00314{height:114.774545px;}
.h7_c00314{height:142.952727px;}
.h6_c00314{height:143.090182px;}
.h2_c00314{height:671.021080px;}
.h1_c00314{height:671.136733px;}
.h0_c00314{height:1215.000000px;}
.w1_c00314{width:2159.999968px;}
.w0_c00314{width:2160.000000px;}
.x0_c00314{left:0.000000px;}
.x5_c00314{left:29.339968px;}
.x2_c00314{left:67.499968px;}
.x1_c00314{left:412.409968px;}
.x3_c00314{left:1359.104968px;}
.x4_c00314{left:1399.604968px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls3_c00314{letter-spacing:0.000000pt;}
.ls2_c00314{letter-spacing:29.004800pt;}
.ls1_c00314{letter-spacing:64.419072pt;}
.ls0_c00314{letter-spacing:64.519680pt;}
.ws0_c00314{word-spacing:-164.003200pt;}
.ws3_c00314{word-spacing:-30.883840pt;}
.ws1_c00314{word-spacing:-28.414720pt;}
.ws4_c00314{word-spacing:0.000000pt;}
.ws2_c00314{word-spacing:0.624640pt;}
._1_c00314{margin-left:-37.758187pt;}
._2_c00314{margin-left:-36.513920pt;}
._3_c00314{margin-left:-34.624747pt;}
._0_c00314{margin-left:-33.425280pt;}
._4_c00314{margin-left:-5.237120pt;}
._e_c00314{margin-left:-4.263936pt;}
._9_c00314{margin-left:-2.932480pt;}
._7_c00314{margin-left:-2.022400pt;}
._6_c00314{margin-left:-0.910080pt;}
._a_c00314{width:1.011200pt;}
._c_c00314{width:2.329984pt;}
._b_c00314{width:4.044800pt;}
._5_c00314{width:19.084160pt;}
._8_c00314{width:27.520000pt;}
._d_c00314{width:29.614976pt;}
.fs3_c00314{font-size:101.120000pt;}
.fs4_c00314{font-size:101.248000pt;}
.fs2_c00314{font-size:106.880000pt;}
.fs6_c00314{font-size:133.120000pt;}
.fs5_c00314{font-size:133.248000pt;}
.fs1_c00314{font-size:618.880000pt;}
.fs0_c00314{font-size:618.986667pt;}
.y0_c00314{bottom:0.000000pt;}
.y3_c00314{bottom:67.488000pt;}
.y10_c00314{bottom:562.080000pt;}
.yf_c00314{bottom:598.080000pt;}
.ye_c00314{bottom:634.080000pt;}
.yd_c00314{bottom:670.106667pt;}
.y2_c00314{bottom:701.853333pt;}
.yc_c00314{bottom:706.106667pt;}
.yb_c00314{bottom:742.106667pt;}
.ya_c00314{bottom:778.106667pt;}
.y9_c00314{bottom:814.106667pt;}
.y8_c00314{bottom:850.106667pt;}
.y1_c00314{bottom:856.613333pt;}
.y7_c00314{bottom:886.146667pt;}
.y13_c00314{bottom:907.653333pt;}
.y6_c00314{bottom:922.146667pt;}
.y12_c00314{bottom:954.373333pt;}
.y5_c00314{bottom:994.146667pt;}
.y11_c00314{bottom:1000.960000pt;}
.y4_c00314{bottom:1030.146667pt;}
.h4_c00314{height:96.523636pt;}
.h5_c00314{height:96.645818pt;}
.h3_c00314{height:102.021818pt;}
.h7_c00314{height:127.069091pt;}
.h6_c00314{height:127.191273pt;}
.h2_c00314{height:596.463182pt;}
.h1_c00314{height:596.565985pt;}
.h0_c00314{height:1080.000000pt;}
.w1_c00314{width:1919.999971pt;}
.w0_c00314{width:1920.000000pt;}
.x0_c00314{left:0.000000pt;}
.x5_c00314{left:26.079971pt;}
.x2_c00314{left:59.999971pt;}
.x1_c00314{left:366.586638pt;}
.x3_c00314{left:1208.093305pt;}
.x4_c00314{left:1244.093305pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02057320fecbf3f3711b51f0.woff')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.230469;font-style:normal;font-weight:normal;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_f91cb362cc3fd40e23e01ae9.woff')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00315;src:url('chunks/assets/font_3f11e913047ab543d4c2019a.woff')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00315;src:url('chunks/assets/font_4c8c23a4e2a54358b56f3f35.woff')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00315;src:url('chunks/assets/font_633aaac556f55b32037f5448.woff')format("woff");}.ff5_c00315{font-family:ff5_c00315;line-height:1.255682;font-style: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;}
.ls3_c00315{letter-spacing:-0.000006px;}
.ls1_c00315{letter-spacing:0.000000px;}
.ls2_c00315{letter-spacing:0.144000px;}
.ls0_c00315{letter-spacing:40.248000px;}
.sc__c00315{text-shadow:none;}
.sc1_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00315{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc1_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00315{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
}
.ws0_c00315{word-spacing:-184.503600px;}
.ws9_c00315{word-spacing:-47.140560px;}
.ws11_c00315{word-spacing:-40.504464px;}
.ws2_c00315{word-spacing:-40.464000px;}
.ws1_c00315{word-spacing:-34.744320px;}
.ws8_c00315{word-spacing:-5.753760px;}
.ws6_c00315{word-spacing:-1.152000px;}
.wsc_c00315{word-spacing:-0.720000px;}
.wsd_c00315{word-spacing:-0.719983px;}
.ws12_c00315{word-spacing:0.000000px;}
.wsb_c00315{word-spacing:0.120000px;}
.ws3_c00315{word-spacing:0.408000px;}
.ws10_c00315{word-spacing:0.473472px;}
.wsf_c00315{word-spacing:0.984000px;}
.wsa_c00315{word-spacing:1.152000px;}
.wse_c00315{word-spacing:1.416000px;}
.ws4_c00315{word-spacing:1.440000px;}
.ws7_c00315{word-spacing:1.992000px;}
.ws5_c00315{word-spacing:2.880000px;}
._0_c00315{margin-left:-42.470640px;}
._2_c00315{margin-left:-41.078160px;}
._1_c00315{margin-left:-37.596960px;}
._3_c00315{margin-left:-5.891760px;}
._5_c00315{margin-left:-4.492800px;}
._6_c00315{margin-left:-3.294720px;}
._8_c00315{margin-left:-1.296000px;}
._7_c00315{width:1.032000px;}
._a_c00315{width:2.736000px;}
._4_c00315{width:21.237840px;}
._9_c00315{width:43.344000px;}
.fc0_c00315{color:rgb(35,66,34);}
.fs1_c00315{font-size:120.240000px;}
.fs4_c00315{font-size:144.000000px;}
.fs6_c00315{font-size:144.144000px;}
.fs2_c00315{font-size:149.760000px;}
.fs3_c00315{font-size:149.904000px;}
.fs5_c00315{font-size:167.760000px;}
.fs0_c00315{font-size:696.240000px;}
.y0_c00315{bottom:0.000000px;}
.y2_c00315{bottom:75.924000px;}
.y1_c00315{bottom:235.650000px;}
.ye_c00315{bottom:569.490000px;}
.yd_c00315{bottom:634.290000px;}
.yc_c00315{bottom:699.090000px;}
.yb_c00315{bottom:763.890000px;}
.ya_c00315{bottom:828.720000px;}
.y9_c00315{bottom:893.520000px;}
.y8_c00315{bottom:961.020000px;}
.y5_c00315{bottom:1003.110000px;}
.y7_c00315{bottom:1033.920000px;}
.y4_c00315{bottom:1055.700000px;}
.y6_c00315{bottom:1098.750000px;}
.y3_c00315{bottom:1108.080000px;}
.h2_c00315{height:114.774545px;}
.h5_c00315{height:137.454545px;}
.h7_c00315{height:137.592000px;}
.h3_c00315{height:142.952727px;}
.h4_c00315{height:143.090182px;}
.h6_c00315{height:160.134545px;}
.h1_c00315{height:671.021080px;}
.h0_c00315{height:1215.000000px;}
.w1_c00315{width:2159.999968px;}
.w0_c00315{width:2160.000000px;}
.x0_c00315{left:0.000000px;}
.x3_c00315{left:37.151968px;}
.x2_c00315{left:67.499968px;}
.x1_c00315{left:407.729968px;}
.x4_c00315{left:1282.934968px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls3_c00315{letter-spacing:-0.000005pt;}
.ls1_c00315{letter-spacing:0.000000pt;}
.ls2_c00315{letter-spacing:0.128000pt;}
.ls0_c00315{letter-spacing:35.776000pt;}
.ws0_c00315{word-spacing:-164.003200pt;}
.ws9_c00315{word-spacing:-41.902720pt;}
.ws11_c00315{word-spacing:-36.003968pt;}
.ws2_c00315{word-spacing:-35.968000pt;}
.ws1_c00315{word-spacing:-30.883840pt;}
.ws8_c00315{word-spacing:-5.114453pt;}
.ws6_c00315{word-spacing:-1.024000pt;}
.wsc_c00315{word-spacing:-0.640000pt;}
.wsd_c00315{word-spacing:-0.639985pt;}
.ws12_c00315{word-spacing:0.000000pt;}
.wsb_c00315{word-spacing:0.106667pt;}
.ws3_c00315{word-spacing:0.362667pt;}
.ws10_c00315{word-spacing:0.420864pt;}
.wsf_c00315{word-spacing:0.874667pt;}
.wsa_c00315{word-spacing:1.024000pt;}
.wse_c00315{word-spacing:1.258667pt;}
.ws4_c00315{word-spacing:1.280000pt;}
.ws7_c00315{word-spacing:1.770667pt;}
.ws5_c00315{word-spacing:2.560000pt;}
._0_c00315{margin-left:-37.751680pt;}
._2_c00315{margin-left:-36.513920pt;}
._1_c00315{margin-left:-33.419520pt;}
._3_c00315{margin-left:-5.237120pt;}
._5_c00315{margin-left:-3.993600pt;}
._6_c00315{margin-left:-2.928640pt;}
._8_c00315{margin-left:-1.152000pt;}
._7_c00315{width:0.917333pt;}
._a_c00315{width:2.432000pt;}
._4_c00315{width:18.878080pt;}
._9_c00315{width:38.528000pt;}
.fs1_c00315{font-size:106.880000pt;}
.fs4_c00315{font-size:128.000000pt;}
.fs6_c00315{font-size:128.128000pt;}
.fs2_c00315{font-size:133.120000pt;}
.fs3_c00315{font-size:133.248000pt;}
.fs5_c00315{font-size:149.120000pt;}
.fs0_c00315{font-size:618.880000pt;}
.y0_c00315{bottom:0.000000pt;}
.y2_c00315{bottom:67.488000pt;}
.y1_c00315{bottom:209.466667pt;}
.ye_c00315{bottom:506.213333pt;}
.yd_c00315{bottom:563.813333pt;}
.yc_c00315{bottom:621.413333pt;}
.yb_c00315{bottom:679.013333pt;}
.ya_c00315{bottom:736.640000pt;}
.y9_c00315{bottom:794.240000pt;}
.y8_c00315{bottom:854.240000pt;}
.y5_c00315{bottom:891.653333pt;}
.y7_c00315{bottom:919.040000pt;}
.y4_c00315{bottom:938.400000pt;}
.y6_c00315{bottom:976.666667pt;}
.y3_c00315{bottom:984.960000pt;}
.h2_c00315{height:102.021818pt;}
.h5_c00315{height:122.181818pt;}
.h7_c00315{height:122.304000pt;}
.h3_c00315{height:127.069091pt;}
.h4_c00315{height:127.191273pt;}
.h6_c00315{height:142.341818pt;}
.h1_c00315{height:596.463182pt;}
.h0_c00315{height:1080.000000pt;}
.w1_c00315{width:1919.999971pt;}
.w0_c00315{width:1920.000000pt;}
.x0_c00315{left:0.000000pt;}
.x3_c00315{left:33.023971pt;}
.x2_c00315{left:59.999971pt;}
.x1_c00315{left:362.426638pt;}
.x4_c00315{left:1140.386638pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f12aa04a6b0af5ed268c7702.woff')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00316;src:url('chunks/assets/font_a2c512a286acd7083b9afbf1.woff')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00316;src:url('chunks/assets/font_de10e0591f20eb450b20f369.woff')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.255682;font-style: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;}
.ls1_c00316{letter-spacing:-6.120000px;}
.ls3_c00316{letter-spacing:-6.060000px;}
.ls2_c00316{letter-spacing:-5.916000px;}
.ls0_c00316{letter-spacing:0.000000px;}
.sc__c00316{text-shadow:none;}
.sc1_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00316{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc1_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00316{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
}
.ws0_c00316{word-spacing:-184.535400px;}
.ws1_c00316{word-spacing:-39.686400px;}
.ws2_c00316{word-spacing:-33.566400px;}
.ws3_c00316{word-spacing:-0.187200px;}
.ws4_c00316{word-spacing:0.000000px;}
._2_c00316{margin-left:-44.567040px;}
._0_c00316{margin-left:-42.477960px;}
._1_c00316{margin-left:-39.692520px;}
._4_c00316{margin-left:-6.888960px;}
._3_c00316{margin-left:-5.690880px;}
._5_c00316{margin-left:-4.492800px;}
.fc0_c00316{color:rgb(35,66,34);}
.fs2_c00316{font-size:120.240000px;}
.fs1_c00316{font-size:149.760000px;}
.fs0_c00316{font-size:696.360000px;}
.y0_c00316{bottom:0.000000px;}
.y3_c00316{bottom:75.924000px;}
.y4_c00316{bottom:480.705000px;}
.y2_c00316{bottom:835.350000px;}
.y1_c00316{bottom:994.470000px;}
.h3_c00316{height:114.774545px;}
.h2_c00316{height:144.335455px;}
.h1_c00316{height:671.136733px;}
.h0_c00316{height:1215.000000px;}
.w1_c00316{width:2159.999968px;}
.w0_c00316{width:2160.000000px;}
.x0_c00316{left:0.000000px;}
.x3_c00316{left:67.499968px;}
.x2_c00316{left:98.999968px;}
.x1_c00316{left:443.444968px;}
.x4_c00316{left:1720.589968px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls1_c00316{letter-spacing:-5.440000pt;}
.ls3_c00316{letter-spacing:-5.386667pt;}
.ls2_c00316{letter-spacing:-5.258667pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws0_c00316{word-spacing:-164.031467pt;}
.ws1_c00316{word-spacing:-35.276800pt;}
.ws2_c00316{word-spacing:-29.836800pt;}
.ws3_c00316{word-spacing:-0.166400pt;}
.ws4_c00316{word-spacing:0.000000pt;}
._2_c00316{margin-left:-39.615147pt;}
._0_c00316{margin-left:-37.758187pt;}
._1_c00316{margin-left:-35.282240pt;}
._4_c00316{margin-left:-6.123520pt;}
._3_c00316{margin-left:-5.058560pt;}
._5_c00316{margin-left:-3.993600pt;}
.fs2_c00316{font-size:106.880000pt;}
.fs1_c00316{font-size:133.120000pt;}
.fs0_c00316{font-size:618.986667pt;}
.y0_c00316{bottom:0.000000pt;}
.y3_c00316{bottom:67.488000pt;}
.y4_c00316{bottom:427.293333pt;}
.y2_c00316{bottom:742.533333pt;}
.y1_c00316{bottom:883.973333pt;}
.h3_c00316{height:102.021818pt;}
.h2_c00316{height:128.298182pt;}
.h1_c00316{height:596.565985pt;}
.h0_c00316{height:1080.000000pt;}
.w1_c00316{width:1919.999971pt;}
.w0_c00316{width:1920.000000pt;}
.x0_c00316{left:0.000000pt;}
.x3_c00316{left:59.999971pt;}
.x2_c00316{left:87.999971pt;}
.x1_c00316{left:394.173305pt;}
.x4_c00316{left:1529.413305pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75c8ae9fce3b263f3d262583.woff')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00317;src:url('chunks/assets/font_908837365b9167b625c366e1.woff')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00317;src:url('chunks/assets/font_432831d1694da8784b6b5ba0.woff')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.255682;font-style: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;}
.sc1_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00317{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc1_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00317{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
}
.ws0_c00317{word-spacing:-39.686400px;}
.ws1_c00317{word-spacing:0.000000px;}
._3_c00317{margin-left:-43.462440px;}
._2_c00317{margin-left:-42.082680px;}
._0_c00317{margin-left:-40.702920px;}
._1_c00317{margin-left:-37.253520px;}
._5_c00317{margin-left:-6.888960px;}
._4_c00317{margin-left:-5.541120px;}
._6_c00317{margin-left:-4.193280px;}
._7_c00317{width:21.662640px;}
.fc0_c00317{color:rgb(35,66,34);}
.fs2_c00317{font-size:120.240000px;}
.fs1_c00317{font-size:149.760000px;}
.fs0_c00317{font-size:689.880000px;}
.y0_c00317{bottom:0.000000px;}
.y4_c00317{bottom:75.924000px;}
.y7_c00317{bottom:321.690000px;}
.y6_c00317{bottom:374.250000px;}
.y5_c00317{bottom:426.675000px;}
.y3_c00317{bottom:684.690000px;}
.y2_c00317{bottom:737.070000px;}
.y1_c00317{bottom:990.075000px;}
.h3_c00317{height:114.774545px;}
.h2_c00317{height:144.335455px;}
.h1_c00317{height:664.891449px;}
.h0_c00317{height:1215.000000px;}
.w1_c00317{width:2159.999968px;}
.w0_c00317{width:2160.000000px;}
.x0_c00317{left:0.000000px;}
.x3_c00317{left:67.499968px;}
.x2_c00317{left:424.649968px;}
.x1_c00317{left:448.529968px;}
.x4_c00317{left:1449.149968px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ws0_c00317{word-spacing:-35.276800pt;}
.ws1_c00317{word-spacing:0.000000pt;}
._3_c00317{margin-left:-38.633280pt;}
._2_c00317{margin-left:-37.406827pt;}
._0_c00317{margin-left:-36.180373pt;}
._1_c00317{margin-left:-33.114240pt;}
._5_c00317{margin-left:-6.123520pt;}
._4_c00317{margin-left:-4.925440pt;}
._6_c00317{margin-left:-3.727360pt;}
._7_c00317{width:19.255680pt;}
.fs2_c00317{font-size:106.880000pt;}
.fs1_c00317{font-size:133.120000pt;}
.fs0_c00317{font-size:613.226667pt;}
.y0_c00317{bottom:0.000000pt;}
.y4_c00317{bottom:67.488000pt;}
.y7_c00317{bottom:285.946667pt;}
.y6_c00317{bottom:332.666667pt;}
.y5_c00317{bottom:379.266667pt;}
.y3_c00317{bottom:608.613333pt;}
.y2_c00317{bottom:655.173333pt;}
.y1_c00317{bottom:880.066667pt;}
.h3_c00317{height:102.021818pt;}
.h2_c00317{height:128.298182pt;}
.h1_c00317{height:591.014621pt;}
.h0_c00317{height:1080.000000pt;}
.w1_c00317{width:1919.999971pt;}
.w0_c00317{width:1920.000000pt;}
.x0_c00317{left:0.000000pt;}
.x3_c00317{left:59.999971pt;}
.x2_c00317{left:377.466638pt;}
.x1_c00317{left:398.693305pt;}
.x4_c00317{left:1288.133305pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45f97adf96d10b6b264cfc55.woff')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_dcaa7ad40db7e08708b9a800.woff')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00318;src:url('chunks/assets/font_462624e80ffa36c0edee485c.woff')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.255682;font-style: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;}
.sc1_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00318{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc1_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00318{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
}
.ws0_c00318{word-spacing:-182.818200px;}
.ws1_c00318{word-spacing:-39.686400px;}
.ws2_c00318{word-spacing:0.000000px;}
._4_c00318{margin-left:-46.221960px;}
._0_c00318{margin-left:-42.772560px;}
._3_c00318{margin-left:-40.702920px;}
._1_c00318{margin-left:-38.633280px;}
._2_c00318{margin-left:-37.253520px;}
._6_c00318{margin-left:-6.888960px;}
._5_c00318{margin-left:-5.541120px;}
._7_c00318{margin-left:-4.492800px;}
._8_c00318{width:22.011840px;}
.fc0_c00318{color:rgb(35,66,34);}
.fs2_c00318{font-size:120.240000px;}
.fs1_c00318{font-size:149.760000px;}
.fs0_c00318{font-size:689.880000px;}
.y0_c00318{bottom:0.000000px;}
.y4_c00318{bottom:75.924000px;}
.y8_c00318{bottom:269.130000px;}
.y7_c00318{bottom:321.690000px;}
.y6_c00318{bottom:374.250000px;}
.y5_c00318{bottom:426.675000px;}
.y3_c00318{bottom:684.690000px;}
.y2_c00318{bottom:737.070000px;}
.y1_c00318{bottom:990.075000px;}
.h3_c00318{height:114.774545px;}
.h2_c00318{height:144.335455px;}
.h1_c00318{height:664.891449px;}
.h0_c00318{height:1215.000000px;}
.w1_c00318{width:2159.999968px;}
.w0_c00318{width:2160.000000px;}
.x0_c00318{left:0.000000px;}
.x3_c00318{left:67.499968px;}
.x2_c00318{left:424.649968px;}
.x1_c00318{left:448.529968px;}
.x4_c00318{left:1449.149968px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls0_c00318{letter-spacing:0.000000pt;}
.ws0_c00318{word-spacing:-162.505067pt;}
.ws1_c00318{word-spacing:-35.276800pt;}
.ws2_c00318{word-spacing:0.000000pt;}
._4_c00318{margin-left:-41.086187pt;}
._0_c00318{margin-left:-38.020053pt;}
._3_c00318{margin-left:-36.180373pt;}
._1_c00318{margin-left:-34.340693pt;}
._2_c00318{margin-left:-33.114240pt;}
._6_c00318{margin-left:-6.123520pt;}
._5_c00318{margin-left:-4.925440pt;}
._7_c00318{margin-left:-3.993600pt;}
._8_c00318{width:19.566080pt;}
.fs2_c00318{font-size:106.880000pt;}
.fs1_c00318{font-size:133.120000pt;}
.fs0_c00318{font-size:613.226667pt;}
.y0_c00318{bottom:0.000000pt;}
.y4_c00318{bottom:67.488000pt;}
.y8_c00318{bottom:239.226667pt;}
.y7_c00318{bottom:285.946667pt;}
.y6_c00318{bottom:332.666667pt;}
.y5_c00318{bottom:379.266667pt;}
.y3_c00318{bottom:608.613333pt;}
.y2_c00318{bottom:655.173333pt;}
.y1_c00318{bottom:880.066667pt;}
.h3_c00318{height:102.021818pt;}
.h2_c00318{height:128.298182pt;}
.h1_c00318{height:591.014621pt;}
.h0_c00318{height:1080.000000pt;}
.w1_c00318{width:1919.999971pt;}
.w0_c00318{width:1920.000000pt;}
.x0_c00318{left:0.000000pt;}
.x3_c00318{left:59.999971pt;}
.x2_c00318{left:377.466638pt;}
.x1_c00318{left:398.693305pt;}
.x4_c00318{left:1288.133305pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8506c1c85de0cac33bcd94d8.woff')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00319;src:url('chunks/assets/font_0362f0cbf820b48bbd6fd7b1.woff')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.v1_c00319{vertical-align:132.624000px;}
.ls3_c00319{letter-spacing:-6.060000px;}
.ls2_c00319{letter-spacing:-5.916000px;}
.ls1_c00319{letter-spacing:0.000000px;}
.ls0_c00319{letter-spacing:5529.565920px;}
.sc__c00319{text-shadow:none;}
.sc1_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00319{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc1_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00319{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
}
.ws0_c00319{word-spacing:-0.187200px;}
.ws1_c00319{word-spacing:0.000000px;}
._0_c00319{margin-left:-37.924848px;}
._1_c00319{margin-left:-36.628272px;}
.fc0_c00319{color:rgb(35,66,34);}
.fs1_c00319{font-size:120.240000px;}
.fs2_c00319{font-size:324.000000px;}
.fs0_c00319{font-size:324.144000px;}
.y0_c00319{bottom:0.000000px;}
.y2_c00319{bottom:75.924000px;}
.y1_c00319{bottom:1007.925000px;}
.h1_c00319{height:312.402989px;}
.h2_c00319{height:444.888205px;}
.h0_c00319{height:1215.000000px;}
.w1_c00319{width:2159.999968px;}
.w0_c00319{width:2160.000000px;}
.x0_c00319{left:0.000000px;}
.x2_c00319{left:67.499968px;}
.x1_c00319{left:454.214968px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.v1_c00319{vertical-align:117.888000pt;}
.ls3_c00319{letter-spacing:-5.386667pt;}
.ls2_c00319{letter-spacing:-5.258667pt;}
.ls1_c00319{letter-spacing:0.000000pt;}
.ls0_c00319{letter-spacing:4915.169707pt;}
.ws0_c00319{word-spacing:-0.166400pt;}
.ws1_c00319{word-spacing:0.000000pt;}
._0_c00319{margin-left:-33.710976pt;}
._1_c00319{margin-left:-32.558464pt;}
.fs1_c00319{font-size:106.880000pt;}
.fs2_c00319{font-size:288.000000pt;}
.fs0_c00319{font-size:288.128000pt;}
.y0_c00319{bottom:0.000000pt;}
.y2_c00319{bottom:67.488000pt;}
.y1_c00319{bottom:895.933333pt;}
.h1_c00319{height:277.691545pt;}
.h2_c00319{height:395.456182pt;}
.h0_c00319{height:1080.000000pt;}
.w1_c00319{width:1919.999971pt;}
.w0_c00319{width:1920.000000pt;}
.x0_c00319{left:0.000000pt;}
.x2_c00319{left:59.999971pt;}
.x1_c00319{left:403.746638pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0888cfecdabe57e733d28254.woff')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00320;src:url('chunks/assets/font_8b48cb8d2cd3140dbf898839.woff')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00320;src:url('chunks/assets/font_20c9e28db4d7b814aa8d4a23.woff')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00320;src:url('chunks/assets/font_374950d4069c01c6e63ee097.woff')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00320;src:url('chunks/assets/font_220b768da24c4e4ca2bec7b8.woff')format("woff");}.ff5_c00320{font-family:ff5_c00320;line-height:1.255682;font-style: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;}
.ls3_c00320{letter-spacing:-5.916000px;}
.ls4_c00320{letter-spacing:-0.225000px;}
.ls2_c00320{letter-spacing:0.000000px;}
.ls0_c00320{letter-spacing:64.786176px;}
.ls1_c00320{letter-spacing:64.899360px;}
.sc__c00320{text-shadow:none;}
.sc1_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00320{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc1_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00320{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
}
.ws0_c00320{word-spacing:-111.236400px;}
.ws2_c00320{word-spacing:-54.019440px;}
.ws4_c00320{word-spacing:0.000000px;}
.ws3_c00320{word-spacing:0.417648px;}
.ws1_c00320{word-spacing:0.627840px;}
._3_c00320{margin-left:-46.656120px;}
._0_c00320{margin-left:-43.870680px;}
._1_c00320{margin-left:-41.781600px;}
._2_c00320{margin-left:-40.388880px;}
._4_c00320{margin-left:-36.907080px;}
._6_c00320{margin-left:-26.343360px;}
._5_c00320{margin-left:-24.867360px;}
._c_c00320{margin-left:-22.667040px;}
._b_c00320{margin-left:-6.991440px;}
._a_c00320{margin-left:-5.440800px;}
._7_c00320{margin-left:-1.137600px;}
._8_c00320{width:2.161440px;}
._9_c00320{width:52.495920px;}
.fc0_c00320{color:rgb(35,66,34);}
.fs2_c00320{font-size:113.760000px;}
.fs5_c00320{font-size:120.240000px;}
.fs4_c00320{font-size:192.240000px;}
.fs3_c00320{font-size:192.384000px;}
.fs1_c00320{font-size:419.760000px;}
.fs7_c00320{font-size:432.000000px;}
.fs6_c00320{font-size:432.144000px;}
.fs0_c00320{font-size:696.360000px;}
.y0_c00320{bottom:0.000000px;}
.y9_c00320{bottom:75.924000px;}
.y8_c00320{bottom:89.964000px;}
.y7_c00320{bottom:130.464000px;}
.y6_c00320{bottom:170.970000px;}
.y3_c00320{bottom:203.685000px;}
.y5_c00320{bottom:211.470000px;}
.y4_c00320{bottom:252.000000px;}
.y2_c00320{bottom:268.170000px;}
.ya_c00320{bottom:332.820000px;}
.yd_c00320{bottom:496.695000px;}
.yc_c00320{bottom:626.295000px;}
.yb_c00320{bottom:755.925000px;}
.y1_c00320{bottom:986.220000px;}
.h3_c00320{height:108.589091px;}
.h6_c00320{height:114.774545px;}
.h5_c00320{height:183.501818px;}
.h4_c00320{height:183.639273px;}
.h2_c00320{height:404.555625px;}
.h8_c00320{height:412.363636px;}
.h7_c00320{height:412.501091px;}
.h1_c00320{height:671.136733px;}
.h0_c00320{height:1215.000000px;}
.w1_c00320{width:2159.999968px;}
.w0_c00320{width:2160.000000px;}
.x0_c00320{left:0.000000px;}
.x5_c00320{left:67.499968px;}
.x1_c00320{left:496.289968px;}
.x6_c00320{left:727.634968px;}
.x4_c00320{left:743.069968px;}
.x2_c00320{left:1751.684968px;}
.x3_c00320{left:1786.604968px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls3_c00320{letter-spacing:-5.258667pt;}
.ls4_c00320{letter-spacing:-0.200000pt;}
.ls2_c00320{letter-spacing:0.000000pt;}
.ls0_c00320{letter-spacing:57.587712pt;}
.ls1_c00320{letter-spacing:57.688320pt;}
.ws0_c00320{word-spacing:-98.876800pt;}
.ws2_c00320{word-spacing:-48.017280pt;}
.ws4_c00320{word-spacing:0.000000pt;}
.ws3_c00320{word-spacing:0.371243pt;}
.ws1_c00320{word-spacing:0.558080pt;}
._3_c00320{margin-left:-41.472107pt;}
._0_c00320{margin-left:-38.996160pt;}
._1_c00320{margin-left:-37.139200pt;}
._2_c00320{margin-left:-35.901227pt;}
._4_c00320{margin-left:-32.806293pt;}
._6_c00320{margin-left:-23.416320pt;}
._5_c00320{margin-left:-22.104320pt;}
._c_c00320{margin-left:-20.148480pt;}
._b_c00320{margin-left:-6.214613pt;}
._a_c00320{margin-left:-4.836267pt;}
._7_c00320{margin-left:-1.011200pt;}
._8_c00320{width:1.921280pt;}
._9_c00320{width:46.663040pt;}
.fs2_c00320{font-size:101.120000pt;}
.fs5_c00320{font-size:106.880000pt;}
.fs4_c00320{font-size:170.880000pt;}
.fs3_c00320{font-size:171.008000pt;}
.fs1_c00320{font-size:373.120000pt;}
.fs7_c00320{font-size:384.000000pt;}
.fs6_c00320{font-size:384.128000pt;}
.fs0_c00320{font-size:618.986667pt;}
.y0_c00320{bottom:0.000000pt;}
.y9_c00320{bottom:67.488000pt;}
.y8_c00320{bottom:79.968000pt;}
.y7_c00320{bottom:115.968000pt;}
.y6_c00320{bottom:151.973333pt;}
.y3_c00320{bottom:181.053333pt;}
.y5_c00320{bottom:187.973333pt;}
.y4_c00320{bottom:224.000000pt;}
.y2_c00320{bottom:238.373333pt;}
.ya_c00320{bottom:295.840000pt;}
.yd_c00320{bottom:441.506667pt;}
.yc_c00320{bottom:556.706667pt;}
.yb_c00320{bottom:671.933333pt;}
.y1_c00320{bottom:876.640000pt;}
.h3_c00320{height:96.523636pt;}
.h6_c00320{height:102.021818pt;}
.h5_c00320{height:163.112727pt;}
.h4_c00320{height:163.234909pt;}
.h2_c00320{height:359.605000pt;}
.h8_c00320{height:366.545455pt;}
.h7_c00320{height:366.667636pt;}
.h1_c00320{height:596.565985pt;}
.h0_c00320{height:1080.000000pt;}
.w1_c00320{width:1919.999971pt;}
.w0_c00320{width:1920.000000pt;}
.x0_c00320{left:0.000000pt;}
.x5_c00320{left:59.999971pt;}
.x1_c00320{left:441.146638pt;}
.x6_c00320{left:646.786638pt;}
.x4_c00320{left:660.506638pt;}
.x2_c00320{left:1557.053305pt;}
.x3_c00320{left:1588.093305pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7dd9aa12cf92af4941b53b3.woff')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00321;src:url('chunks/assets/font_06ef8df62552f09d8bc656d5.woff')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00321;src:url('chunks/assets/font_f6b77f3e361f6d20ee5dbd2c.woff')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00321;src:url('chunks/assets/font_64289890e0abde83f8f1b967.woff')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00321;src:url('chunks/assets/font_45e2e0c727fa1a0087dbef45.woff')format("woff");}.ff5_c00321{font-family:ff5_c00321;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00321;src:url('chunks/assets/font_1a43fd313443277f84bcc587.woff')format("woff");}.ff6_c00321{font-family:ff6_c00321;line-height:1.181818;font-style: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;}
.ls3_c00321{letter-spacing:-5.916000px;}
.ls4_c00321{letter-spacing:-5.628000px;}
.ls2_c00321{letter-spacing:0.000000px;}
.ls1_c00321{letter-spacing:71.658000px;}
.ls0_c00321{letter-spacing:71.838000px;}
.sc__c00321{text-shadow:none;}
.sc1_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00321{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc1_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00321{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
}
.ws0_c00321{word-spacing:-45.522000px;}
.ws5_c00321{word-spacing:-34.744320px;}
.ws2_c00321{word-spacing:-4.320000px;}
.ws4_c00321{word-spacing:-0.795600px;}
.ws6_c00321{word-spacing:0.000000px;}
.ws3_c00321{word-spacing:1.007424px;}
.ws1_c00321{word-spacing:1.188000px;}
._0_c00321{margin-left:-43.174320px;}
._2_c00321{margin-left:-41.781600px;}
._3_c00321{margin-left:-40.388880px;}
._1_c00321{margin-left:-37.603440px;}
._8_c00321{margin-left:-6.421392px;}
._7_c00321{margin-left:-4.642560px;}
._6_c00321{margin-left:-2.754000px;}
._4_c00321{margin-left:-1.296000px;}
._5_c00321{width:1.134000px;}
.fc0_c00321{color:rgb(35,66,34);}
.fs3_c00321{font-size:120.240000px;}
.fs4_c00321{font-size:149.760000px;}
.fs5_c00321{font-size:149.904000px;}
.fs1_c00321{font-size:162.000000px;}
.fs2_c00321{font-size:162.144000px;}
.fs0_c00321{font-size:696.360000px;}
.y0_c00321{bottom:0.000000px;}
.ye_c00321{bottom:75.924000px;}
.yd_c00321{bottom:86.688000px;}
.yc_c00321{bottom:143.748000px;}
.yb_c00321{bottom:200.625000px;}
.ya_c00321{bottom:287.205000px;}
.y9_c00321{bottom:344.085000px;}
.y8_c00321{bottom:431.130000px;}
.y7_c00321{bottom:488.190000px;}
.y6_c00321{bottom:545.070000px;}
.y5_c00321{bottom:629.745000px;}
.y4_c00321{bottom:686.805000px;}
.y3_c00321{bottom:743.910000px;}
.y2_c00321{bottom:800.790000px;}
.y1_c00321{bottom:986.220000px;}
.y11_c00321{bottom:1003.110000px;}
.y10_c00321{bottom:1055.700000px;}
.yf_c00321{bottom:1108.080000px;}
.h4_c00321{height:114.774545px;}
.h5_c00321{height:142.952727px;}
.h6_c00321{height:143.090182px;}
.h2_c00321{height:154.636364px;}
.h3_c00321{height:154.773818px;}
.h1_c00321{height:671.136733px;}
.h0_c00321{height:1215.000000px;}
.w1_c00321{width:2159.999968px;}
.w0_c00321{width:2160.000000px;}
.x0_c00321{left:0.000000px;}
.x4_c00321{left:55.727968px;}
.x3_c00321{left:67.499968px;}
.x1_c00321{left:588.779968px;}
.x2_c00321{left:1156.709968px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls3_c00321{letter-spacing:-5.258667pt;}
.ls4_c00321{letter-spacing:-5.002667pt;}
.ls2_c00321{letter-spacing:0.000000pt;}
.ls1_c00321{letter-spacing:63.696000pt;}
.ls0_c00321{letter-spacing:63.856000pt;}
.ws0_c00321{word-spacing:-40.464000pt;}
.ws5_c00321{word-spacing:-30.883840pt;}
.ws2_c00321{word-spacing:-3.840000pt;}
.ws4_c00321{word-spacing:-0.707200pt;}
.ws6_c00321{word-spacing:0.000000pt;}
.ws3_c00321{word-spacing:0.895488pt;}
.ws1_c00321{word-spacing:1.056000pt;}
._0_c00321{margin-left:-38.377173pt;}
._2_c00321{margin-left:-37.139200pt;}
._3_c00321{margin-left:-35.901227pt;}
._1_c00321{margin-left:-33.425280pt;}
._8_c00321{margin-left:-5.707904pt;}
._7_c00321{margin-left:-4.126720pt;}
._6_c00321{margin-left:-2.448000pt;}
._4_c00321{margin-left:-1.152000pt;}
._5_c00321{width:1.008000pt;}
.fs3_c00321{font-size:106.880000pt;}
.fs4_c00321{font-size:133.120000pt;}
.fs5_c00321{font-size:133.248000pt;}
.fs1_c00321{font-size:144.000000pt;}
.fs2_c00321{font-size:144.128000pt;}
.fs0_c00321{font-size:618.986667pt;}
.y0_c00321{bottom:0.000000pt;}
.ye_c00321{bottom:67.488000pt;}
.yd_c00321{bottom:77.056000pt;}
.yc_c00321{bottom:127.776000pt;}
.yb_c00321{bottom:178.333333pt;}
.ya_c00321{bottom:255.293333pt;}
.y9_c00321{bottom:305.853333pt;}
.y8_c00321{bottom:383.226667pt;}
.y7_c00321{bottom:433.946667pt;}
.y6_c00321{bottom:484.506667pt;}
.y5_c00321{bottom:559.773333pt;}
.y4_c00321{bottom:610.493333pt;}
.y3_c00321{bottom:661.253333pt;}
.y2_c00321{bottom:711.813333pt;}
.y1_c00321{bottom:876.640000pt;}
.y11_c00321{bottom:891.653333pt;}
.y10_c00321{bottom:938.400000pt;}
.yf_c00321{bottom:984.960000pt;}
.h4_c00321{height:102.021818pt;}
.h5_c00321{height:127.069091pt;}
.h6_c00321{height:127.191273pt;}
.h2_c00321{height:137.454545pt;}
.h3_c00321{height:137.576727pt;}
.h1_c00321{height:596.565985pt;}
.h0_c00321{height:1080.000000pt;}
.w1_c00321{width:1919.999971pt;}
.w0_c00321{width:1920.000000pt;}
.x0_c00321{left:0.000000pt;}
.x4_c00321{left:49.535971pt;}
.x3_c00321{left:59.999971pt;}
.x1_c00321{left:523.359971pt;}
.x2_c00321{left:1028.186638pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c68fa9d8ef28713182081cb1.woff')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00322;src:url('chunks/assets/font_dfa6e173faca0b35d304feeb.woff')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00322;src:url('chunks/assets/font_23f769ea6a2e6e4371ffa7f9.woff')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00322;src:url('chunks/assets/font_4158f57ea0b716810cd15b7a.woff')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00322;src:url('chunks/assets/font_d4aed323f18c943391e939ad.woff')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00322;src:url('chunks/assets/font_51d911595a59f4687278f336.woff')format("woff");}.ff6_c00322{font-family:ff6_c00322;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.v1_c00322{vertical-align:71.880000px;}
.v2_c00322{vertical-align:95.040000px;}
.ls0_c00322{letter-spacing:0.000000px;}
.sc__c00322{text-shadow:none;}
.sc1_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00322{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc1_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00322{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
}
.ws0_c00322{word-spacing:-39.686400px;}
.ws2_c00322{word-spacing:-34.744320px;}
.ws3_c00322{word-spacing:0.000000px;}
.ws1_c00322{word-spacing:262.213440px;}
._2_c00322{margin-left:-43.870680px;}
._0_c00322{margin-left:-42.477960px;}
._4_c00322{margin-left:-41.085240px;}
._3_c00322{margin-left:-39.692520px;}
._1_c00322{margin-left:-37.603440px;}
._6_c00322{margin-left:-7.038720px;}
._5_c00322{margin-left:-5.690880px;}
._7_c00322{margin-left:-4.642560px;}
._c_c00322{margin-left:-3.594240px;}
._a_c00322{margin-left:-1.095840px;}
._9_c00322{width:1.706400px;}
._b_c00322{width:3.526560px;}
._8_c00322{width:287.768640px;}
.fc0_c00322{color:rgb(35,66,34);}
.fs2_c00322{font-size:113.760000px;}
.fs4_c00322{font-size:113.904000px;}
.fs3_c00322{font-size:120.240000px;}
.fs1_c00322{font-size:149.760000px;}
.fs5_c00322{font-size:149.904000px;}
.fs0_c00322{font-size:696.360000px;}
.y0_c00322{bottom:0.000000px;}
.y7_c00322{bottom:75.924000px;}
.y6_c00322{bottom:151.845000px;}
.y5_c00322{bottom:168.585000px;}
.y4_c00322{bottom:437.550000px;}
.y3_c00322{bottom:460.080000px;}
.ya_c00322{bottom:700.275000px;}
.y2_c00322{bottom:729.435000px;}
.y9_c00322{bottom:740.775000px;}
.y8_c00322{bottom:781.305000px;}
.y1_c00322{bottom:986.220000px;}
.yd_c00322{bottom:1003.110000px;}
.yc_c00322{bottom:1055.700000px;}
.yb_c00322{bottom:1108.080000px;}
.h4_c00322{height:108.589091px;}
.h7_c00322{height:108.726545px;}
.h6_c00322{height:114.774545px;}
.h8_c00322{height:142.952727px;}
.h9_c00322{height:143.090182px;}
.h2_c00322{height:144.335455px;}
.h3_c00322{height:180.469091px;}
.h5_c00322{height:203.629091px;}
.h1_c00322{height:671.136733px;}
.h0_c00322{height:1215.000000px;}
.w1_c00322{width:2159.999968px;}
.w0_c00322{width:2160.000000px;}
.x0_c00322{left:0.000000px;}
.x7_c00322{left:37.151968px;}
.x6_c00322{left:67.499968px;}
.x1_c00322{left:471.239968px;}
.x2_c00322{left:641.009968px;}
.x3_c00322{left:643.289968px;}
.x5_c00322{left:648.929968px;}
.x4_c00322{left:992.699968px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.v1_c00322{vertical-align:63.893333pt;}
.v2_c00322{vertical-align:84.480000pt;}
.ls0_c00322{letter-spacing:0.000000pt;}
.ws0_c00322{word-spacing:-35.276800pt;}
.ws2_c00322{word-spacing:-30.883840pt;}
.ws3_c00322{word-spacing:0.000000pt;}
.ws1_c00322{word-spacing:233.078613pt;}
._2_c00322{margin-left:-38.996160pt;}
._0_c00322{margin-left:-37.758187pt;}
._4_c00322{margin-left:-36.520213pt;}
._3_c00322{margin-left:-35.282240pt;}
._1_c00322{margin-left:-33.425280pt;}
._6_c00322{margin-left:-6.256640pt;}
._5_c00322{margin-left:-5.058560pt;}
._7_c00322{margin-left:-4.126720pt;}
._c_c00322{margin-left:-3.194880pt;}
._a_c00322{margin-left:-0.974080pt;}
._9_c00322{width:1.516800pt;}
._b_c00322{width:3.134720pt;}
._8_c00322{width:255.794347pt;}
.fs2_c00322{font-size:101.120000pt;}
.fs4_c00322{font-size:101.248000pt;}
.fs3_c00322{font-size:106.880000pt;}
.fs1_c00322{font-size:133.120000pt;}
.fs5_c00322{font-size:133.248000pt;}
.fs0_c00322{font-size:618.986667pt;}
.y0_c00322{bottom:0.000000pt;}
.y7_c00322{bottom:67.488000pt;}
.y6_c00322{bottom:134.973333pt;}
.y5_c00322{bottom:149.853333pt;}
.y4_c00322{bottom:388.933333pt;}
.y3_c00322{bottom:408.960000pt;}
.ya_c00322{bottom:622.466667pt;}
.y2_c00322{bottom:648.386667pt;}
.y9_c00322{bottom:658.466667pt;}
.y8_c00322{bottom:694.493333pt;}
.y1_c00322{bottom:876.640000pt;}
.yd_c00322{bottom:891.653333pt;}
.yc_c00322{bottom:938.400000pt;}
.yb_c00322{bottom:984.960000pt;}
.h4_c00322{height:96.523636pt;}
.h7_c00322{height:96.645818pt;}
.h6_c00322{height:102.021818pt;}
.h8_c00322{height:127.069091pt;}
.h9_c00322{height:127.191273pt;}
.h2_c00322{height:128.298182pt;}
.h3_c00322{height:160.416970pt;}
.h5_c00322{height:181.003636pt;}
.h1_c00322{height:596.565985pt;}
.h0_c00322{height:1080.000000pt;}
.w1_c00322{width:1919.999971pt;}
.w0_c00322{width:1920.000000pt;}
.x0_c00322{left:0.000000pt;}
.x7_c00322{left:33.023971pt;}
.x6_c00322{left:59.999971pt;}
.x1_c00322{left:418.879971pt;}
.x2_c00322{left:569.786638pt;}
.x3_c00322{left:571.813305pt;}
.x5_c00322{left:576.826638pt;}
.x4_c00322{left:882.399971pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a84106d126256375d839f158.woff')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00323;src:url('chunks/assets/font_e7c2b95ba8140450c242811c.woff')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00323;src:url('chunks/assets/font_32ea7c01b7da9b6697d41f48.woff')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00323;src:url('chunks/assets/font_6f46ff7f1c3bea9b255f1f09.woff')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00323;src:url('chunks/assets/font_8ac930a4fe534f92a6421c94.woff')format("woff");}.ff5_c00323{font-family:ff5_c00323;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00323;src:url('chunks/assets/font_00e5ae51da686baeff2b92f1.woff')format("woff");}.ff6_c00323{font-family:ff6_c00323;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00323;src:url('chunks/assets/font_020421eec25ba5f6ab51b0b4.woff')format("woff");}.ff7_c00323{font-family:ff7_c00323;line-height:1.181818;font-style: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:-5.916000px;}
.ls1_c00323{letter-spacing:-5.628000px;}
.ls3_c00323{letter-spacing:-0.396000px;}
.ls2_c00323{letter-spacing:0.000000px;}
.ls4_c00323{letter-spacing:0.108000px;}
.sc__c00323{text-shadow:none;}
.sc1_c00323{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
.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;}
.sc1_c00323{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00323{word-spacing:-184.535400px;}
.ws1_c00323{word-spacing:-36.633600px;}
.ws5_c00323{word-spacing:-34.744320px;}
.ws3_c00323{word-spacing:-24.408000px;}
.ws0_c00323{word-spacing:-1.082160px;}
.ws6_c00323{word-spacing:0.000000px;}
.ws2_c00323{word-spacing:0.275040px;}
._a_c00323{margin-left:-43.870680px;}
._9_c00323{margin-left:-42.477960px;}
._c_c00323{margin-left:-40.388880px;}
._b_c00323{margin-left:-38.299800px;}
._7_c00323{margin-left:-8.885760px;}
._3_c00323{margin-left:-7.603200px;}
._1_c00323{margin-left:-6.497280px;}
._0_c00323{margin-left:-4.700160px;}
._2_c00323{margin-left:-3.317760px;}
._8_c00323{margin-left:-2.268000px;}
._4_c00323{margin-left:-1.188000px;}
._5_c00323{width:1.404000px;}
._6_c00323{width:3.005760px;}
.fc1_c00323{color:rgb(0,0,0);}
.fc0_c00323{color:rgb(35,66,34);}
.fs2_c00323{font-size:108.000000px;}
.fs3_c00323{font-size:108.144000px;}
.fs0_c00323{font-size:120.240000px;}
.fs1_c00323{font-size:138.240000px;}
.fs5_c00323{font-size:149.760000px;}
.fs4_c00323{font-size:696.360000px;}
.y0_c00323{bottom:0.000000px;}
.y18_c00323{bottom:74.556000px;}
.y1_c00323{bottom:75.924000px;}
.y17_c00323{bottom:106.956000px;}
.y3_c00323{bottom:123.516000px;}
.y5_c00323{bottom:124.632000px;}
.y16_c00323{bottom:171.795000px;}
.y15_c00323{bottom:204.195000px;}
.y14_c00323{bottom:236.595000px;}
.y13_c00323{bottom:301.395000px;}
.y12_c00323{bottom:333.795000px;}
.y11_c00323{bottom:398.625000px;}
.y10_c00323{bottom:463.425000px;}
.yf_c00323{bottom:495.825000px;}
.ye_c00323{bottom:560.625000px;}
.yd_c00323{bottom:593.025000px;}
.yc_c00323{bottom:625.470000px;}
.y4_c00323{bottom:644.505000px;}
.y2_c00323{bottom:652.395000px;}
.yb_c00323{bottom:657.870000px;}
.ya_c00323{bottom:690.270000px;}
.y9_c00323{bottom:755.070000px;}
.y8_c00323{bottom:787.470000px;}
.y7_c00323{bottom:819.870000px;}
.y6_c00323{bottom:852.270000px;}
.y19_c00323{bottom:938.340000px;}
.y1c_c00323{bottom:1004.550000px;}
.y1b_c00323{bottom:1057.110000px;}
.y1a_c00323{bottom:1109.490000px;}
.h3_c00323{height:107.419922px;}
.h4_c00323{height:107.563148px;}
.h1_c00323{height:114.774545px;}
.h2_c00323{height:133.232727px;}
.h6_c00323{height:142.952727px;}
.h5_c00323{height:671.136733px;}
.h0_c00323{height:1215.000000px;}
.w1_c00323{width:2159.999968px;}
.w0_c00323{width:2160.000000px;}
.x0_c00323{left:0.000000px;}
.x8_c00323{left:39.707968px;}
.x1_c00323{left:67.499968px;}
.x7_c00323{left:423.029968px;}
.x6_c00323{left:452.159968px;}
.x3_c00323{left:1199.009968px;}
.x2_c00323{left:1252.109968px;}
.x4_c00323{left:1770.734968px;}
.x5_c00323{left:1798.634968px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:-5.258667pt;}
.ls1_c00323{letter-spacing:-5.002667pt;}
.ls3_c00323{letter-spacing:-0.352000pt;}
.ls2_c00323{letter-spacing:0.000000pt;}
.ls4_c00323{letter-spacing:0.096000pt;}
.ws4_c00323{word-spacing:-164.031467pt;}
.ws1_c00323{word-spacing:-32.563200pt;}
.ws5_c00323{word-spacing:-30.883840pt;}
.ws3_c00323{word-spacing:-21.696000pt;}
.ws0_c00323{word-spacing:-0.961920pt;}
.ws6_c00323{word-spacing:0.000000pt;}
.ws2_c00323{word-spacing:0.244480pt;}
._a_c00323{margin-left:-38.996160pt;}
._9_c00323{margin-left:-37.758187pt;}
._c_c00323{margin-left:-35.901227pt;}
._b_c00323{margin-left:-34.044267pt;}
._7_c00323{margin-left:-7.898453pt;}
._3_c00323{margin-left:-6.758400pt;}
._1_c00323{margin-left:-5.775360pt;}
._0_c00323{margin-left:-4.177920pt;}
._2_c00323{margin-left:-2.949120pt;}
._8_c00323{margin-left:-2.016000pt;}
._4_c00323{margin-left:-1.056000pt;}
._5_c00323{width:1.248000pt;}
._6_c00323{width:2.671787pt;}
.fs2_c00323{font-size:96.000000pt;}
.fs3_c00323{font-size:96.128000pt;}
.fs0_c00323{font-size:106.880000pt;}
.fs1_c00323{font-size:122.880000pt;}
.fs5_c00323{font-size:133.120000pt;}
.fs4_c00323{font-size:618.986667pt;}
.y0_c00323{bottom:0.000000pt;}
.y18_c00323{bottom:66.272000pt;}
.y1_c00323{bottom:67.488000pt;}
.y17_c00323{bottom:95.072000pt;}
.y3_c00323{bottom:109.792000pt;}
.y5_c00323{bottom:110.784000pt;}
.y16_c00323{bottom:152.706667pt;}
.y15_c00323{bottom:181.506667pt;}
.y14_c00323{bottom:210.306667pt;}
.y13_c00323{bottom:267.906667pt;}
.y12_c00323{bottom:296.706667pt;}
.y11_c00323{bottom:354.333333pt;}
.y10_c00323{bottom:411.933333pt;}
.yf_c00323{bottom:440.733333pt;}
.ye_c00323{bottom:498.333333pt;}
.yd_c00323{bottom:527.133333pt;}
.yc_c00323{bottom:555.973333pt;}
.y4_c00323{bottom:572.893333pt;}
.y2_c00323{bottom:579.906667pt;}
.yb_c00323{bottom:584.773333pt;}
.ya_c00323{bottom:613.573333pt;}
.y9_c00323{bottom:671.173333pt;}
.y8_c00323{bottom:699.973333pt;}
.y7_c00323{bottom:728.773333pt;}
.y6_c00323{bottom:757.573333pt;}
.y19_c00323{bottom:834.080000pt;}
.y1c_c00323{bottom:892.933333pt;}
.y1b_c00323{bottom:939.653333pt;}
.y1a_c00323{bottom:986.213333pt;}
.h3_c00323{height:95.484375pt;}
.h4_c00323{height:95.611688pt;}
.h1_c00323{height:102.021818pt;}
.h2_c00323{height:118.429091pt;}
.h6_c00323{height:127.069091pt;}
.h5_c00323{height:596.565985pt;}
.h0_c00323{height:1080.000000pt;}
.w1_c00323{width:1919.999971pt;}
.w0_c00323{width:1920.000000pt;}
.x0_c00323{left:0.000000pt;}
.x8_c00323{left:35.295971pt;}
.x1_c00323{left:59.999971pt;}
.x7_c00323{left:376.026638pt;}
.x6_c00323{left:401.919971pt;}
.x3_c00323{left:1065.786638pt;}
.x2_c00323{left:1112.986638pt;}
.x4_c00323{left:1573.986638pt;}
.x5_c00323{left:1598.786638pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93afd61f722069fa160bcd85.woff')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.230469;font-style:normal;font-weight:normal;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_02068fff25c0b7160313d533.woff')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00324;src:url('chunks/assets/font_dcc7b8a67e1b9a7cc41965b2.woff')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00324;src:url('chunks/assets/font_57026f0e3910a04282027e4a.woff')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00324;src:url('chunks/assets/font_644e7662b656249730c6880a.woff')format("woff");}.ff5_c00324{font-family:ff5_c00324;line-height:1.181818;font-style: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;}
.ls0_c00324{letter-spacing:0.000000px;}
.sc__c00324{text-shadow:none;}
.sc1_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00324{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc1_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00324{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
}
.ws0_c00324{word-spacing:-152.640000px;}
.ws1_c00324{word-spacing:-34.744320px;}
.ws2_c00324{word-spacing:0.000000px;}
._0_c00324{margin-left:-42.058512px;}
._2_c00324{margin-left:-40.906224px;}
._3_c00324{margin-left:-39.702816px;}
._1_c00324{margin-left:-38.025504px;}
._6_c00324{margin-left:-5.891760px;}
._8_c00324{margin-left:-4.796928px;}
._9_c00324{margin-left:-3.747600px;}
._4_c00324{margin-left:-1.152000px;}
._5_c00324{width:1.584000px;}
._7_c00324{width:21.873600px;}
.fc0_c00324{color:rgb(35,66,34);}
.fs3_c00324{font-size:120.240000px;}
.fs2_c00324{font-size:144.000000px;}
.fs5_c00324{font-size:149.760000px;}
.fs4_c00324{font-size:149.904000px;}
.fs1_c00324{font-size:576.000000px;}
.fs0_c00324{font-size:576.144000px;}
.y0_c00324{bottom:0.000000px;}
.y9_c00324{bottom:75.924000px;}
.y8_c00324{bottom:169.530000px;}
.y2_c00324{bottom:180.510000px;}
.y7_c00324{bottom:210.030000px;}
.y6_c00324{bottom:291.060000px;}
.y5_c00324{bottom:331.560000px;}
.y1_c00324{bottom:354.600000px;}
.y4_c00324{bottom:412.560000px;}
.y3_c00324{bottom:453.060000px;}
.yc_c00324{bottom:1021.110000px;}
.yb_c00324{bottom:1073.670000px;}
.ya_c00324{bottom:1126.080000px;}
.h4_c00324{height:114.774545px;}
.h3_c00324{height:137.454545px;}
.h6_c00324{height:142.952727px;}
.h5_c00324{height:143.090182px;}
.h2_c00324{height:555.136364px;}
.h1_c00324{height:555.275148px;}
.h0_c00324{height:1215.000000px;}
.w1_c00324{width:2159.999968px;}
.w0_c00324{width:2160.000000px;}
.x0_c00324{left:0.000000px;}
.x4_c00324{left:39.851968px;}
.x3_c00324{left:67.499968px;}
.x1_c00324{left:448.994968px;}
.x2_c00324{left:1430.429968px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls0_c00324{letter-spacing:0.000000pt;}
.ws0_c00324{word-spacing:-135.680000pt;}
.ws1_c00324{word-spacing:-30.883840pt;}
.ws2_c00324{word-spacing:0.000000pt;}
._0_c00324{margin-left:-37.385344pt;}
._2_c00324{margin-left:-36.361088pt;}
._3_c00324{margin-left:-35.291392pt;}
._1_c00324{margin-left:-33.800448pt;}
._6_c00324{margin-left:-5.237120pt;}
._8_c00324{margin-left:-4.263936pt;}
._9_c00324{margin-left:-3.331200pt;}
._4_c00324{margin-left:-1.024000pt;}
._5_c00324{width:1.408000pt;}
._7_c00324{width:19.443200pt;}
.fs3_c00324{font-size:106.880000pt;}
.fs2_c00324{font-size:128.000000pt;}
.fs5_c00324{font-size:133.120000pt;}
.fs4_c00324{font-size:133.248000pt;}
.fs1_c00324{font-size:512.000000pt;}
.fs0_c00324{font-size:512.128000pt;}
.y0_c00324{bottom:0.000000pt;}
.y9_c00324{bottom:67.488000pt;}
.y8_c00324{bottom:150.693333pt;}
.y2_c00324{bottom:160.453333pt;}
.y7_c00324{bottom:186.693333pt;}
.y6_c00324{bottom:258.720000pt;}
.y5_c00324{bottom:294.720000pt;}
.y1_c00324{bottom:315.200000pt;}
.y4_c00324{bottom:366.720000pt;}
.y3_c00324{bottom:402.720000pt;}
.yc_c00324{bottom:907.653333pt;}
.yb_c00324{bottom:954.373333pt;}
.ya_c00324{bottom:1000.960000pt;}
.h4_c00324{height:102.021818pt;}
.h3_c00324{height:122.181818pt;}
.h6_c00324{height:127.069091pt;}
.h5_c00324{height:127.191273pt;}
.h2_c00324{height:493.454545pt;}
.h1_c00324{height:493.577909pt;}
.h0_c00324{height:1080.000000pt;}
.w1_c00324{width:1919.999971pt;}
.w0_c00324{width:1920.000000pt;}
.x0_c00324{left:0.000000pt;}
.x4_c00324{left:35.423971pt;}
.x3_c00324{left:59.999971pt;}
.x1_c00324{left:399.106638pt;}
.x2_c00324{left:1271.493305pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb894379ffe7b4d1a2101826.woff')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00325;src:url('chunks/assets/font_491dceacc86d633925bcba3f.woff')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_f4ccb0745a1c0aede4483f60.woff')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.255682;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00325;src:url('chunks/assets/font_58282e6602987c5383fb8718.woff')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.230469;font-style: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.327000px;}
.ls0_c00325{letter-spacing:0.000000px;}
.sc__c00325{text-shadow:none;}
.sc1_c00325{text-shadow:-0.015em 0 rgb(35,66,34),0 0.015em rgb(35,66,34),0.015em 0 rgb(35,66,34),0 -0.015em  rgb(35,66,34);}
.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;}
.sc1_c00325{-webkit-text-stroke:0.015em rgb(35,66,34);text-shadow:none;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00325{word-spacing:-39.686400px;}
.ws0_c00325{word-spacing:-31.966560px;}
.ws1_c00325{word-spacing:-31.639560px;}
.ws3_c00325{word-spacing:0.000000px;}
._7_c00325{margin-left:-42.402960px;}
._3_c00325{margin-left:-39.871440px;}
._6_c00325{margin-left:-38.605680px;}
._4_c00325{margin-left:-37.339920px;}
._8_c00325{margin-left:-36.095400px;}
._5_c00325{margin-left:-34.175520px;}
._1_c00325{margin-left:-5.891760px;}
._9_c00325{margin-left:-4.441680px;}
._0_c00325{width:1.506240px;}
._2_c00325{width:21.641760px;}
.fc0_c00325{color:rgb(35,66,34);}
.fs0_c00325{font-size:113.760000px;}
.fs1_c00325{font-size:120.240000px;}
.fs4_c00325{font-size:149.760000px;}
.fs2_c00325{font-size:632.880000px;}
.fs3_c00325{font-size:633.000000px;}
.y0_c00325{bottom:0.000000px;}
.y3_c00325{bottom:75.924000px;}
.y2_c00325{bottom:86.328000px;}
.y6_c00325{bottom:112.932000px;}
.y1_c00325{bottom:136.260000px;}
.y5_c00325{bottom:609.990000px;}
.y4_c00325{bottom:767.490000px;}
.h1_c00325{height:108.589091px;}
.h2_c00325{height:114.774545px;}
.h5_c00325{height:144.335455px;}
.h3_c00325{height:609.956080px;}
.h4_c00325{height:610.071733px;}
.h0_c00325{height:1215.000000px;}
.w1_c00325{width:2159.999968px;}
.w0_c00325{width:2160.000000px;}
.x0_c00325{left:0.000000px;}
.x2_c00325{left:67.499968px;}
.x3_c00325{left:464.429968px;}
.x5_c00325{left:744.509968px;}
.x1_c00325{left:1217.489968px;}
.x4_c00325{left:1632.449968px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls1_c00325{letter-spacing:-0.290667pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws2_c00325{word-spacing:-35.276800pt;}
.ws0_c00325{word-spacing:-28.414720pt;}
.ws1_c00325{word-spacing:-28.124053pt;}
.ws3_c00325{word-spacing:0.000000pt;}
._7_c00325{margin-left:-37.691520pt;}
._3_c00325{margin-left:-35.441280pt;}
._6_c00325{margin-left:-34.316160pt;}
._4_c00325{margin-left:-33.191040pt;}
._8_c00325{margin-left:-32.084800pt;}
._5_c00325{margin-left:-30.378240pt;}
._1_c00325{margin-left:-5.237120pt;}
._9_c00325{margin-left:-3.948160pt;}
._0_c00325{width:1.338880pt;}
._2_c00325{width:19.237120pt;}
.fs0_c00325{font-size:101.120000pt;}
.fs1_c00325{font-size:106.880000pt;}
.fs4_c00325{font-size:133.120000pt;}
.fs2_c00325{font-size:562.560000pt;}
.fs3_c00325{font-size:562.666667pt;}
.y0_c00325{bottom:0.000000pt;}
.y3_c00325{bottom:67.488000pt;}
.y2_c00325{bottom:76.736000pt;}
.y6_c00325{bottom:100.384000pt;}
.y1_c00325{bottom:121.120000pt;}
.y5_c00325{bottom:542.213333pt;}
.y4_c00325{bottom:682.213333pt;}
.h1_c00325{height:96.523636pt;}
.h2_c00325{height:102.021818pt;}
.h5_c00325{height:128.298182pt;}
.h3_c00325{height:542.183182pt;}
.h4_c00325{height:542.285985pt;}
.h0_c00325{height:1080.000000pt;}
.w1_c00325{width:1919.999971pt;}
.w0_c00325{width:1920.000000pt;}
.x0_c00325{left:0.000000pt;}
.x2_c00325{left:59.999971pt;}
.x3_c00325{left:412.826638pt;}
.x5_c00325{left:661.786638pt;}
.x1_c00325{left:1082.213305pt;}
.x4_c00325{left:1451.066638pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b454b54078962f52c96b1f3c.woff')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00326;src:url('chunks/assets/font_b8b2079da632ba957a5f1330.woff')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00326;src:url('chunks/assets/font_0cc4d32d64cd9b1b3f7cfa81.woff')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.145508;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_897b8604fb3cb81beffada64.woff')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:1.001465;font-style: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;}
.ls1_c00326{letter-spacing:-6.192000px;}
.ls3_c00326{letter-spacing:-0.288000px;}
.ls2_c00326{letter-spacing:0.000000px;}
.ls0_c00326{letter-spacing:0.192240px;}
.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:-37.152000px;}
.ws1_c00326{word-spacing:-2.691360px;}
.ws2_c00326{word-spacing:-1.922400px;}
.ws3_c00326{word-spacing:-0.192240px;}
.ws5_c00326{word-spacing:0.288000px;}
.ws4_c00326{word-spacing:0.576000px;}
._5_c00326{margin-left:-18.576000px;}
._4_c00326{margin-left:-12.672000px;}
._1_c00326{margin-left:-5.978664px;}
._7_c00326{margin-left:-3.600000px;}
._2_c00326{margin-left:-2.460672px;}
._0_c00326{margin-left:-1.191888px;}
._6_c00326{width:1.008000px;}
._3_c00326{width:6.048000px;}
.fc0_c00326{color:rgb(0,0,0);}
.fs1_c00326{font-size:144.000000px;}
.fs0_c00326{font-size:192.240000px;}
.y0_c00326{bottom:0.000000px;}
.y5_c00326{bottom:262.554450px;}
.y4_c00326{bottom:320.694450px;}
.y3_c00326{bottom:529.511730px;}
.y2_c00326{bottom:601.890090px;}
.y1_c00326{bottom:674.268450px;}
.h3_c00326{height:114.117188px;}
.h2_c00326{height:134.859375px;}
.h1_c00326{height:143.616797px;}
.h0_c00326{height:810.000000px;}
.w0_c00326{width:1440.000000px;}
.x0_c00326{left:0.000000px;}
.x1_c00326{left:30.924300px;}
.x2_c00326{left:95.061450px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls1_c00326{letter-spacing:-5.504000pt;}
.ls3_c00326{letter-spacing:-0.256000pt;}
.ls2_c00326{letter-spacing:0.000000pt;}
.ls0_c00326{letter-spacing:0.170880pt;}
.ws0_c00326{word-spacing:-33.024000pt;}
.ws1_c00326{word-spacing:-2.392320pt;}
.ws2_c00326{word-spacing:-1.708800pt;}
.ws3_c00326{word-spacing:-0.170880pt;}
.ws5_c00326{word-spacing:0.256000pt;}
.ws4_c00326{word-spacing:0.512000pt;}
._5_c00326{margin-left:-16.512000pt;}
._4_c00326{margin-left:-11.264000pt;}
._1_c00326{margin-left:-5.314368pt;}
._7_c00326{margin-left:-3.200000pt;}
._2_c00326{margin-left:-2.187264pt;}
._0_c00326{margin-left:-1.059456pt;}
._6_c00326{width:0.896000pt;}
._3_c00326{width:5.376000pt;}
.fs1_c00326{font-size:128.000000pt;}
.fs0_c00326{font-size:170.880000pt;}
.y0_c00326{bottom:0.000000pt;}
.y5_c00326{bottom:233.381733pt;}
.y4_c00326{bottom:285.061733pt;}
.y3_c00326{bottom:470.677093pt;}
.y2_c00326{bottom:535.013413pt;}
.y1_c00326{bottom:599.349733pt;}
.h3_c00326{height:101.437500pt;}
.h2_c00326{height:119.875000pt;}
.h1_c00326{height:127.659375pt;}
.h0_c00326{height:720.000000pt;}
.w0_c00326{width:1280.000000pt;}
.x0_c00326{left:0.000000pt;}
.x1_c00326{left:27.488267pt;}
.x2_c00326{left:84.499067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_785d2032f4bbedfbf4a54ddb.woff')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.145508;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00327;src:url('chunks/assets/font_1e48c27ff8db23d27a9149fd.woff')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:0.952148;font-style: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;}
.ls2_c00327{letter-spacing:-0.192240px;}
.ls0_c00327{letter-spacing:0.000000px;}
.ls1_c00327{letter-spacing:0.192240px;}
.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:-57.864240px;}
.ws2_c00327{word-spacing:-57.672000px;}
.ws1_c00327{word-spacing:-1.518696px;}
.ws4_c00327{word-spacing:0.000000px;}
.ws3_c00327{word-spacing:0.115344px;}
._1_c00327{margin-left:-1.015200px;}
._0_c00327{width:1.057320px;}
.fc0_c00327{color:rgb(0,0,0);}
.fs0_c00327{font-size:192.240000px;}
.fs1_c00327{font-size:216.000000px;}
.y0_c00327{bottom:0.000000px;}
.y3_c00327{bottom:143.596020px;}
.y2_c00327{bottom:328.434780px;}
.y1_c00327{bottom:544.080000px;}
.y4_c00327{bottom:680.220000px;}
.h2_c00327{height:161.367188px;}
.h1_c00327{height:180.037266px;}
.h0_c00327{height:810.000000px;}
.w0_c00327{width:1440.000000px;}
.x0_c00327{left:0.000000px;}
.x2_c00327{left:90.800100px;}
.x1_c00327{left:283.847250px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls2_c00327{letter-spacing:-0.170880pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ls1_c00327{letter-spacing:0.170880pt;}
.ws0_c00327{word-spacing:-51.434880pt;}
.ws2_c00327{word-spacing:-51.264000pt;}
.ws1_c00327{word-spacing:-1.349952pt;}
.ws4_c00327{word-spacing:0.000000pt;}
.ws3_c00327{word-spacing:0.102528pt;}
._1_c00327{margin-left:-0.902400pt;}
._0_c00327{width:0.939840pt;}
.fs0_c00327{font-size:170.880000pt;}
.fs1_c00327{font-size:192.000000pt;}
.y0_c00327{bottom:0.000000pt;}
.y3_c00327{bottom:127.640907pt;}
.y2_c00327{bottom:291.942027pt;}
.y1_c00327{bottom:483.626667pt;}
.y4_c00327{bottom:604.640000pt;}
.h2_c00327{height:143.437500pt;}
.h1_c00327{height:160.033125pt;}
.h0_c00327{height:720.000000pt;}
.w0_c00327{width:1280.000000pt;}
.x0_c00327{left:0.000000pt;}
.x2_c00327{left:80.711200pt;}
.x1_c00327{left:252.308667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d74fd29468da3fc19e76c7a.woff')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_2da9f032a82778114d203113.woff')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_7c02e0aee3c7d0e528c6c077.woff')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.001465;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00328;src:url('chunks/assets/font_76c1c742c608708081864086.woff')format("woff");}.ff4_c00328{font-family:ff4_c00328;line-height:1.145508;font-style: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;}
.ls4_c00328{letter-spacing:-0.288000px;}
.ls5_c00328{letter-spacing:-0.144000px;}
.ls3_c00328{letter-spacing:0.000000px;}
.ls2_c00328{letter-spacing:44.064000px;}
.ls1_c00328{letter-spacing:44.352000px;}
.ls0_c00328{letter-spacing:111.600000px;}
.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;}
}
.ws8_c00328{word-spacing:-144.000000px;}
.ws0_c00328{word-spacing:-99.360000px;}
.ws1_c00328{word-spacing:-43.344000px;}
.wsa_c00328{word-spacing:-43.200000px;}
.wsc_c00328{word-spacing:-43.056000px;}
.wsd_c00328{word-spacing:0.000000px;}
.wse_c00328{word-spacing:0.288000px;}
.ws3_c00328{word-spacing:0.432000px;}
.ws4_c00328{word-spacing:0.576000px;}
.ws6_c00328{word-spacing:0.864000px;}
.ws5_c00328{word-spacing:1.152000px;}
.ws9_c00328{word-spacing:1.728000px;}
.wsb_c00328{word-spacing:2.577600px;}
.ws7_c00328{word-spacing:2.880000px;}
.ws2_c00328{word-spacing:415.872000px;}
._5_c00328{margin-left:-19.872000px;}
._2_c00328{margin-left:-17.568000px;}
._1_c00328{margin-left:-4.464000px;}
._0_c00328{width:1.296000px;}
._4_c00328{width:46.224000px;}
._3_c00328{width:415.152000px;}
.fc0_c00328{color:rgb(0,0,0);}
.fs1_c00328{font-size:144.000000px;}
.fs0_c00328{font-size:216.000000px;}
.y0_c00328{bottom:0.000000px;}
.y6_c00328{bottom:157.620000px;}
.y5_c00328{bottom:296.400000px;}
.y4_c00328{bottom:342.660000px;}
.y3_c00328{bottom:481.260000px;}
.y2_c00328{bottom:573.780000px;}
.y1_c00328{bottom:680.220000px;}
.h2_c00328{height:134.859375px;}
.h1_c00328{height:161.367188px;}
.h0_c00328{height:810.000000px;}
.w0_c00328{width:1440.000000px;}
.x0_c00328{left:0.000000px;}
.x4_c00328{left:67.847250px;}
.x1_c00328{left:90.800100px;}
.x2_c00328{left:229.847250px;}
.x3_c00328{left:391.847250px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls4_c00328{letter-spacing:-0.256000pt;}
.ls5_c00328{letter-spacing:-0.128000pt;}
.ls3_c00328{letter-spacing:0.000000pt;}
.ls2_c00328{letter-spacing:39.168000pt;}
.ls1_c00328{letter-spacing:39.424000pt;}
.ls0_c00328{letter-spacing:99.200000pt;}
.ws8_c00328{word-spacing:-128.000000pt;}
.ws0_c00328{word-spacing:-88.320000pt;}
.ws1_c00328{word-spacing:-38.528000pt;}
.wsa_c00328{word-spacing:-38.400000pt;}
.wsc_c00328{word-spacing:-38.272000pt;}
.wsd_c00328{word-spacing:0.000000pt;}
.wse_c00328{word-spacing:0.256000pt;}
.ws3_c00328{word-spacing:0.384000pt;}
.ws4_c00328{word-spacing:0.512000pt;}
.ws6_c00328{word-spacing:0.768000pt;}
.ws5_c00328{word-spacing:1.024000pt;}
.ws9_c00328{word-spacing:1.536000pt;}
.wsb_c00328{word-spacing:2.291200pt;}
.ws7_c00328{word-spacing:2.560000pt;}
.ws2_c00328{word-spacing:369.664000pt;}
._5_c00328{margin-left:-17.664000pt;}
._2_c00328{margin-left:-15.616000pt;}
._1_c00328{margin-left:-3.968000pt;}
._0_c00328{width:1.152000pt;}
._4_c00328{width:41.088000pt;}
._3_c00328{width:369.024000pt;}
.fs1_c00328{font-size:128.000000pt;}
.fs0_c00328{font-size:192.000000pt;}
.y0_c00328{bottom:0.000000pt;}
.y6_c00328{bottom:140.106667pt;}
.y5_c00328{bottom:263.466667pt;}
.y4_c00328{bottom:304.586667pt;}
.y3_c00328{bottom:427.786667pt;}
.y2_c00328{bottom:510.026667pt;}
.y1_c00328{bottom:604.640000pt;}
.h2_c00328{height:119.875000pt;}
.h1_c00328{height:143.437500pt;}
.h0_c00328{height:720.000000pt;}
.w0_c00328{width:1280.000000pt;}
.x0_c00328{left:0.000000pt;}
.x4_c00328{left:60.308667pt;}
.x1_c00328{left:80.711200pt;}
.x2_c00328{left:204.308667pt;}
.x3_c00328{left:348.308667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_515d24fcf9758766509ac4a5.woff')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:0.952148;font-style:normal;font-weight:normal;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_553ac5bc4a2b9724bbe4ed4d.woff')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.145508;font-style:normal;font-weight:normal;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_eb45ebf8bbdf2e8352f00ba2.woff')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.001465;font-style: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;}
.ls1_c00329{letter-spacing:-0.144000px;}
.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;}
}
.ws1_c00329{word-spacing:-143.856000px;}
.ws2_c00329{word-spacing:0.000000px;}
.ws0_c00329{word-spacing:0.288000px;}
._2_c00329{margin-left:-1.008000px;}
._0_c00329{width:1.296000px;}
._1_c00329{width:45.216000px;}
.fc0_c00329{color:rgb(0,0,0);}
.fs1_c00329{font-size:144.000000px;}
.fs0_c00329{font-size:216.000000px;}
.y0_c00329{bottom:0.000000px;}
.y2_c00329{bottom:573.780000px;}
.y1_c00329{bottom:680.220000px;}
.h2_c00329{height:134.859375px;}
.h1_c00329{height:161.367188px;}
.h0_c00329{height:810.000000px;}
.w0_c00329{width:1440.000000px;}
.x0_c00329{left:0.000000px;}
.x2_c00329{left:67.847250px;}
.x1_c00329{left:90.800100px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls1_c00329{letter-spacing:-0.128000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ws1_c00329{word-spacing:-127.872000pt;}
.ws2_c00329{word-spacing:0.000000pt;}
.ws0_c00329{word-spacing:0.256000pt;}
._2_c00329{margin-left:-0.896000pt;}
._0_c00329{width:1.152000pt;}
._1_c00329{width:40.192000pt;}
.fs1_c00329{font-size:128.000000pt;}
.fs0_c00329{font-size:192.000000pt;}
.y0_c00329{bottom:0.000000pt;}
.y2_c00329{bottom:510.026667pt;}
.y1_c00329{bottom:604.640000pt;}
.h2_c00329{height:119.875000pt;}
.h1_c00329{height:143.437500pt;}
.h0_c00329{height:720.000000pt;}
.w0_c00329{width:1280.000000pt;}
.x0_c00329{left:0.000000pt;}
.x2_c00329{left:60.308667pt;}
.x1_c00329{left:80.711200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c592de3ccaf303dec76514ca.woff')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:0.952148;font-style:normal;font-weight:normal;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_aab7d4c707b0533bf3a5623a.woff')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00330;src:url('chunks/assets/font_e0ebc1f71d6aa16a233a7d10.woff')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.145508;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00330;src:url('chunks/assets/font_2e74e3f693971dc32c070b3e.woff')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:1.001465;font-style: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;}
.ls6_c00330{letter-spacing:-0.288000px;}
.ls5_c00330{letter-spacing:-0.192240px;}
.ls4_c00330{letter-spacing:0.000000px;}
.ls3_c00330{letter-spacing:0.192240px;}
.ls1_c00330{letter-spacing:44.352000px;}
.ls0_c00330{letter-spacing:57.095280px;}
.ls2_c00330{letter-spacing:57.479760px;}
.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;}
}
.wsc_c00330{word-spacing:-192.432240px;}
.wsa_c00330{word-spacing:-135.856008px;}
.ws8_c00330{word-spacing:-99.360000px;}
.ws6_c00330{word-spacing:-57.672000px;}
.ws9_c00330{word-spacing:-43.344000px;}
.ws5_c00330{word-spacing:-43.056000px;}
.wsd_c00330{word-spacing:-0.192240px;}
.wsb_c00330{word-spacing:-0.173016px;}
.ws4_c00330{word-spacing:-0.144000px;}
.ws0_c00330{word-spacing:-0.096120px;}
.wse_c00330{word-spacing:0.000000px;}
.wsf_c00330{word-spacing:0.192240px;}
.ws2_c00330{word-spacing:0.346032px;}
.ws1_c00330{word-spacing:0.422928px;}
.ws7_c00330{word-spacing:0.432000px;}
.ws3_c00330{word-spacing:1.152000px;}
._1_c00330{margin-left:-2.210760px;}
._0_c00330{margin-left:-1.057320px;}
._3_c00330{width:1.152000px;}
._2_c00330{width:44.928000px;}
.fc0_c00330{color:rgb(0,0,0);}
.fs1_c00330{font-size:144.000000px;}
.fs0_c00330{font-size:192.240000px;}
.y0_c00330{bottom:0.000000px;}
.y6_c00330{bottom:156.138750px;}
.y5_c00330{bottom:275.658900px;}
.y4_c00330{bottom:325.698750px;}
.y3_c00330{bottom:445.038750px;}
.y2_c00330{bottom:495.085680px;}
.y1_c00330{bottom:685.980000px;}
.h3_c00330{height:134.859375px;}
.h1_c00330{height:143.616797px;}
.h2_c00330{height:180.037266px;}
.h0_c00330{height:810.000000px;}
.w0_c00330{width:1440.000000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:90.800100px;}
.x2_c00330{left:367.914060px;}
.x3_c00330{left:421.885950px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls6_c00330{letter-spacing:-0.256000pt;}
.ls5_c00330{letter-spacing:-0.170880pt;}
.ls4_c00330{letter-spacing:0.000000pt;}
.ls3_c00330{letter-spacing:0.170880pt;}
.ls1_c00330{letter-spacing:39.424000pt;}
.ls0_c00330{letter-spacing:50.751360pt;}
.ls2_c00330{letter-spacing:51.093120pt;}
.wsc_c00330{word-spacing:-171.050880pt;}
.wsa_c00330{word-spacing:-120.760896pt;}
.ws8_c00330{word-spacing:-88.320000pt;}
.ws6_c00330{word-spacing:-51.264000pt;}
.ws9_c00330{word-spacing:-38.528000pt;}
.ws5_c00330{word-spacing:-38.272000pt;}
.wsd_c00330{word-spacing:-0.170880pt;}
.wsb_c00330{word-spacing:-0.153792pt;}
.ws4_c00330{word-spacing:-0.128000pt;}
.ws0_c00330{word-spacing:-0.085440pt;}
.wse_c00330{word-spacing:0.000000pt;}
.wsf_c00330{word-spacing:0.170880pt;}
.ws2_c00330{word-spacing:0.307584pt;}
.ws1_c00330{word-spacing:0.375936pt;}
.ws7_c00330{word-spacing:0.384000pt;}
.ws3_c00330{word-spacing:1.024000pt;}
._1_c00330{margin-left:-1.965120pt;}
._0_c00330{margin-left:-0.939840pt;}
._3_c00330{width:1.024000pt;}
._2_c00330{width:39.936000pt;}
.fs1_c00330{font-size:128.000000pt;}
.fs0_c00330{font-size:170.880000pt;}
.y0_c00330{bottom:0.000000pt;}
.y6_c00330{bottom:138.790000pt;}
.y5_c00330{bottom:245.030133pt;}
.y4_c00330{bottom:289.510000pt;}
.y3_c00330{bottom:395.590000pt;}
.y2_c00330{bottom:440.076160pt;}
.y1_c00330{bottom:609.760000pt;}
.h3_c00330{height:119.875000pt;}
.h1_c00330{height:127.659375pt;}
.h2_c00330{height:160.033125pt;}
.h0_c00330{height:720.000000pt;}
.w0_c00330{width:1280.000000pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:80.711200pt;}
.x2_c00330{left:327.034720pt;}
.x3_c00330{left:375.009733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fecb6c1f0186f420a3a3e233.woff')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00331;src:url('chunks/assets/font_fbf236c09452f31cbae74d5d.woff')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.145508;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00331;src:url('chunks/assets/font_94a34da917f55751261a439c.woff')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.001465;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00331;src:url('chunks/assets/font_2da9f032a82778114d203113.woff')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00331;src:url('chunks/assets/font_3cfc9618eada5be9937afc93.woff')format("woff");}.ff5_c00331{font-family:ff5_c00331;line-height:0.722656;font-style: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;}
.ls7_c00331{letter-spacing:-0.312480px;}
.ls4_c00331{letter-spacing:-0.216000px;}
.ls6_c00331{letter-spacing:0.000000px;}
.ls5_c00331{letter-spacing:0.156240px;}
.ls0_c00331{letter-spacing:0.312480px;}
.ls3_c00331{letter-spacing:46.872000px;}
.ls2_c00331{letter-spacing:47.496960px;}
.ls1_c00331{letter-spacing:107.316000px;}
.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;}
}
.ws7_c00331{word-spacing:-156.396240px;}
.ws3_c00331{word-spacing:-156.240000px;}
.ws5_c00331{word-spacing:-155.927520px;}
.ws8_c00331{word-spacing:-110.008584px;}
.ws1_c00331{word-spacing:-109.430496px;}
.wsa_c00331{word-spacing:-108.336816px;}
.wsc_c00331{word-spacing:-1.484280px;}
.ws2_c00331{word-spacing:-0.749952px;}
.wsb_c00331{word-spacing:-0.562464px;}
.ws4_c00331{word-spacing:-0.453096px;}
.wsf_c00331{word-spacing:-0.312480px;}
.wse_c00331{word-spacing:0.000000px;}
.wsd_c00331{word-spacing:0.216000px;}
.ws9_c00331{word-spacing:0.328104px;}
.ws6_c00331{word-spacing:1.296792px;}
.ws0_c00331{word-spacing:29.293200px;}
._4_c00331{margin-left:-6.952680px;}
._3_c00331{margin-left:-1.499904px;}
._0_c00331{width:1.252800px;}
._1_c00331{width:2.527200px;}
._2_c00331{width:47.519568px;}
.fc0_c00331{color:rgb(0,0,0);}
.fs1_c00331{font-size:156.240000px;}
.fs0_c00331{font-size:216.000000px;}
.y0_c00331{bottom:0.000000px;}
.y9_c00331{bottom:69.960000px;}
.y8_c00331{bottom:170.220000px;}
.y7_c00331{bottom:270.300000px;}
.y6_c00331{bottom:320.340000px;}
.y5_c00331{bottom:370.560000px;}
.y4_c00331{bottom:420.600000px;}
.y3_c00331{bottom:470.640000px;}
.y2_c00331{bottom:570.900000px;}
.y1_c00331{bottom:680.220000px;}
.h3_c00331{height:140.066719px;}
.h2_c00331{height:146.322422px;}
.h1_c00331{height:161.367188px;}
.h0_c00331{height:810.000000px;}
.w0_c00331{width:1440.000000px;}
.x0_c00331{left:0.000000px;}
.x2_c00331{left:67.847250px;}
.x1_c00331{left:90.800100px;}
.x3_c00331{left:121.847250px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls7_c00331{letter-spacing:-0.277760pt;}
.ls4_c00331{letter-spacing:-0.192000pt;}
.ls6_c00331{letter-spacing:0.000000pt;}
.ls5_c00331{letter-spacing:0.138880pt;}
.ls0_c00331{letter-spacing:0.277760pt;}
.ls3_c00331{letter-spacing:41.664000pt;}
.ls2_c00331{letter-spacing:42.219520pt;}
.ls1_c00331{letter-spacing:95.392000pt;}
.ws7_c00331{word-spacing:-139.018880pt;}
.ws3_c00331{word-spacing:-138.880000pt;}
.ws5_c00331{word-spacing:-138.602240pt;}
.ws8_c00331{word-spacing:-97.785408pt;}
.ws1_c00331{word-spacing:-97.271552pt;}
.wsa_c00331{word-spacing:-96.299392pt;}
.wsc_c00331{word-spacing:-1.319360pt;}
.ws2_c00331{word-spacing:-0.666624pt;}
.wsb_c00331{word-spacing:-0.499968pt;}
.ws4_c00331{word-spacing:-0.402752pt;}
.wsf_c00331{word-spacing:-0.277760pt;}
.wse_c00331{word-spacing:0.000000pt;}
.wsd_c00331{word-spacing:0.192000pt;}
.ws9_c00331{word-spacing:0.291648pt;}
.ws6_c00331{word-spacing:1.152704pt;}
.ws0_c00331{word-spacing:26.038400pt;}
._4_c00331{margin-left:-6.180160pt;}
._3_c00331{margin-left:-1.333248pt;}
._0_c00331{width:1.113600pt;}
._1_c00331{width:2.246400pt;}
._2_c00331{width:42.239616pt;}
.fs1_c00331{font-size:138.880000pt;}
.fs0_c00331{font-size:192.000000pt;}
.y0_c00331{bottom:0.000000pt;}
.y9_c00331{bottom:62.186667pt;}
.y8_c00331{bottom:151.306667pt;}
.y7_c00331{bottom:240.266667pt;}
.y6_c00331{bottom:284.746667pt;}
.y5_c00331{bottom:329.386667pt;}
.y4_c00331{bottom:373.866667pt;}
.y3_c00331{bottom:418.346667pt;}
.y2_c00331{bottom:507.466667pt;}
.y1_c00331{bottom:604.640000pt;}
.h3_c00331{height:124.503750pt;}
.h2_c00331{height:130.064375pt;}
.h1_c00331{height:143.437500pt;}
.h0_c00331{height:720.000000pt;}
.w0_c00331{width:1280.000000pt;}
.x0_c00331{left:0.000000pt;}
.x2_c00331{left:60.308667pt;}
.x1_c00331{left:80.711200pt;}
.x3_c00331{left:108.308667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b722832deb5c0b72da0eb14.woff')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_a297dd6d9fd1e2e606ad6cae.woff')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_27072742a0651a9451c70b4f.woff')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.145508;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00332;src:url('chunks/assets/font_74a763d4d93b8e63ef76a7c4.woff')format("woff");}.ff4_c00332{font-family:ff4_c00332;line-height:1.001465;font-style: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;}
.ls3_c00332{letter-spacing:-6.696000px;}
.ls7_c00332{letter-spacing:-0.288000px;}
.ls2_c00332{letter-spacing:-0.216000px;}
.ls9_c00332{letter-spacing:-0.144000px;}
.ls5_c00332{letter-spacing:0.000000px;}
.ls6_c00332{letter-spacing:0.144000px;}
.ls4_c00332{letter-spacing:0.216000px;}
.ls8_c00332{letter-spacing:0.288000px;}
.ls1_c00332{letter-spacing:44.064000px;}
.ls0_c00332{letter-spacing:65.448000px;}
.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;}
}
.ws1_c00332{word-spacing:-216.216000px;}
.ws7_c00332{word-spacing:-43.632000px;}
.ws8_c00332{word-spacing:-43.200000px;}
.ws9_c00332{word-spacing:-0.288000px;}
.ws5_c00332{word-spacing:-0.144000px;}
.wsb_c00332{word-spacing:0.000000px;}
.wsa_c00332{word-spacing:0.216000px;}
.wsc_c00332{word-spacing:0.288000px;}
.ws4_c00332{word-spacing:0.432000px;}
.ws2_c00332{word-spacing:0.576000px;}
.ws3_c00332{word-spacing:1.296000px;}
.ws6_c00332{word-spacing:1.872000px;}
.ws0_c00332{word-spacing:11.728800px;}
._4_c00332{margin-left:-16.992000px;}
._0_c00332{margin-left:-9.936000px;}
._2_c00332{margin-left:-1.123200px;}
._5_c00332{width:1.152000px;}
._7_c00332{width:2.160000px;}
._6_c00332{width:3.312000px;}
._1_c00332{width:6.760800px;}
._3_c00332{width:44.784000px;}
.fc0_c00332{color:rgb(0,0,0);}
.fs1_c00332{font-size:144.000000px;}
.fs0_c00332{font-size:216.000000px;}
.y0_c00332{bottom:0.000000px;}
.y8_c00332{bottom:32.065050px;}
.y7_c00332{bottom:78.325050px;}
.y6_c00332{bottom:170.665050px;}
.y5_c00332{bottom:216.925050px;}
.y4_c00332{bottom:309.445050px;}
.y3_c00332{bottom:401.785050px;}
.y2_c00332{bottom:527.328300px;}
.y9_c00332{bottom:527.328450px;}
.y1_c00332{bottom:680.220000px;}
.h3_c00332{height:114.117188px;}
.h2_c00332{height:134.859375px;}
.h1_c00332{height:161.367188px;}
.h0_c00332{height:810.000000px;}
.w0_c00332{width:1440.000000px;}
.x0_c00332{left:0.000000px;}
.x1_c00332{left:90.799950px;}
.x2_c00332{left:235.073250px;}
.x3_c00332{left:414.799950px;}
.x4_c00332{left:628.541850px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls3_c00332{letter-spacing:-5.952000pt;}
.ls7_c00332{letter-spacing:-0.256000pt;}
.ls2_c00332{letter-spacing:-0.192000pt;}
.ls9_c00332{letter-spacing:-0.128000pt;}
.ls5_c00332{letter-spacing:0.000000pt;}
.ls6_c00332{letter-spacing:0.128000pt;}
.ls4_c00332{letter-spacing:0.192000pt;}
.ls8_c00332{letter-spacing:0.256000pt;}
.ls1_c00332{letter-spacing:39.168000pt;}
.ls0_c00332{letter-spacing:58.176000pt;}
.ws1_c00332{word-spacing:-192.192000pt;}
.ws7_c00332{word-spacing:-38.784000pt;}
.ws8_c00332{word-spacing:-38.400000pt;}
.ws9_c00332{word-spacing:-0.256000pt;}
.ws5_c00332{word-spacing:-0.128000pt;}
.wsb_c00332{word-spacing:0.000000pt;}
.wsa_c00332{word-spacing:0.192000pt;}
.wsc_c00332{word-spacing:0.256000pt;}
.ws4_c00332{word-spacing:0.384000pt;}
.ws2_c00332{word-spacing:0.512000pt;}
.ws3_c00332{word-spacing:1.152000pt;}
.ws6_c00332{word-spacing:1.664000pt;}
.ws0_c00332{word-spacing:10.425600pt;}
._4_c00332{margin-left:-15.104000pt;}
._0_c00332{margin-left:-8.832000pt;}
._2_c00332{margin-left:-0.998400pt;}
._5_c00332{width:1.024000pt;}
._7_c00332{width:1.920000pt;}
._6_c00332{width:2.944000pt;}
._1_c00332{width:6.009600pt;}
._3_c00332{width:39.808000pt;}
.fs1_c00332{font-size:128.000000pt;}
.fs0_c00332{font-size:192.000000pt;}
.y0_c00332{bottom:0.000000pt;}
.y8_c00332{bottom:28.502267pt;}
.y7_c00332{bottom:69.622267pt;}
.y6_c00332{bottom:151.702267pt;}
.y5_c00332{bottom:192.822267pt;}
.y4_c00332{bottom:275.062267pt;}
.y3_c00332{bottom:357.142267pt;}
.y2_c00332{bottom:468.736267pt;}
.y9_c00332{bottom:468.736400pt;}
.y1_c00332{bottom:604.640000pt;}
.h3_c00332{height:101.437500pt;}
.h2_c00332{height:119.875000pt;}
.h1_c00332{height:143.437500pt;}
.h0_c00332{height:720.000000pt;}
.w0_c00332{width:1280.000000pt;}
.x0_c00332{left:0.000000pt;}
.x1_c00332{left:80.711067pt;}
.x2_c00332{left:208.954000pt;}
.x3_c00332{left:368.711067pt;}
.x4_c00332{left:558.703867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4dd7a43b4a98d866d8d84391.woff')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00333;src:url('chunks/assets/font_5a070b7bf60a9327d686bd83.woff')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:0.952148;font-style: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.216000px;}
.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:-64.800000px;}
.ws1_c00333{word-spacing:0.216000px;}
._1_c00333{margin-left:-6.328800px;}
._0_c00333{width:1.231200px;}
.fc0_c00333{color:rgb(0,0,0);}
.fs0_c00333{font-size:216.000000px;}
.y0_c00333{bottom:0.000000px;}
.y2_c00333{bottom:615.420000px;}
.y1_c00333{bottom:680.220000px;}
.h1_c00333{height:161.367188px;}
.h0_c00333{height:810.000000px;}
.w0_c00333{width:1440.000000px;}
.x0_c00333{left:0.000000px;}
.x1_c00333{left:90.800100px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls0_c00333{letter-spacing:-0.192000pt;}
.ws0_c00333{word-spacing:-57.600000pt;}
.ws1_c00333{word-spacing:0.192000pt;}
._1_c00333{margin-left:-5.625600pt;}
._0_c00333{width:1.094400pt;}
.fs0_c00333{font-size:192.000000pt;}
.y0_c00333{bottom:0.000000pt;}
.y2_c00333{bottom:547.040000pt;}
.y1_c00333{bottom:604.640000pt;}
.h1_c00333{height:143.437500pt;}
.h0_c00333{height:720.000000pt;}
.w0_c00333{width:1280.000000pt;}
.x0_c00333{left:0.000000pt;}
.x1_c00333{left:80.711200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_47bad39af838714c3e83ba19.woff')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:0.952148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00334;src:url('chunks/assets/font_1fa26d113eeb42bc05ca469c.woff')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.145508;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_2da9f032a82778114d203113.woff')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00334{letter-spacing:-6.696000px;}
.ls6_c00334{letter-spacing:-0.288000px;}
.ls2_c00334{letter-spacing:-0.216000px;}
.ls4_c00334{letter-spacing:-0.144000px;}
.ls5_c00334{letter-spacing:0.000000px;}
.ls0_c00334{letter-spacing:65.448000px;}
.ls1_c00334{letter-spacing:111.600000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00334{word-spacing:-43.200000px;}
.ws4_c00334{word-spacing:-43.056000px;}
.ws6_c00334{word-spacing:0.000000px;}
.ws5_c00334{word-spacing:0.216000px;}
.ws3_c00334{word-spacing:1.728000px;}
.ws7_c00334{word-spacing:2.160000px;}
.ws2_c00334{word-spacing:2.304000px;}
.ws0_c00334{word-spacing:11.728800px;}
._3_c00334{margin-left:-15.840000px;}
._0_c00334{margin-left:-9.936000px;}
._2_c00334{width:1.339200px;}
._1_c00334{width:6.760800px;}
.fc0_c00334{color:rgb(0,0,0);}
.fs1_c00334{font-size:144.000000px;}
.fs0_c00334{font-size:216.000000px;}
.y0_c00334{bottom:0.000000px;}
.y4_c00334{bottom:391.838700px;}
.y3_c00334{bottom:484.358700px;}
.y2_c00334{bottom:576.698700px;}
.y1_c00334{bottom:680.220000px;}
.h2_c00334{height:134.859375px;}
.h1_c00334{height:161.367188px;}
.h0_c00334{height:810.000000px;}
.w0_c00334{width:1440.000000px;}
.x0_c00334{left:0.000000px;}
.x2_c00334{left:72.295950px;}
.x1_c00334{left:90.800100px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls3_c00334{letter-spacing:-5.952000pt;}
.ls6_c00334{letter-spacing:-0.256000pt;}
.ls2_c00334{letter-spacing:-0.192000pt;}
.ls4_c00334{letter-spacing:-0.128000pt;}
.ls5_c00334{letter-spacing:0.000000pt;}
.ls0_c00334{letter-spacing:58.176000pt;}
.ls1_c00334{letter-spacing:99.200000pt;}
.ws1_c00334{word-spacing:-38.400000pt;}
.ws4_c00334{word-spacing:-38.272000pt;}
.ws6_c00334{word-spacing:0.000000pt;}
.ws5_c00334{word-spacing:0.192000pt;}
.ws3_c00334{word-spacing:1.536000pt;}
.ws7_c00334{word-spacing:1.920000pt;}
.ws2_c00334{word-spacing:2.048000pt;}
.ws0_c00334{word-spacing:10.425600pt;}
._3_c00334{margin-left:-14.080000pt;}
._0_c00334{margin-left:-8.832000pt;}
._2_c00334{width:1.190400pt;}
._1_c00334{width:6.009600pt;}
.fs1_c00334{font-size:128.000000pt;}
.fs0_c00334{font-size:192.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y4_c00334{bottom:348.301067pt;}
.y3_c00334{bottom:430.541067pt;}
.y2_c00334{bottom:512.621067pt;}
.y1_c00334{bottom:604.640000pt;}
.h2_c00334{height:119.875000pt;}
.h1_c00334{height:143.437500pt;}
.h0_c00334{height:720.000000pt;}
.w0_c00334{width:1280.000000pt;}
.x0_c00334{left:0.000000pt;}
.x2_c00334{left:64.263067pt;}
.x1_c00334{left:80.711200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d49b2c14e31a5c3b5619e5d.woff')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:0.952148;font-style:normal;font-weight:normal;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_c09eb84ecd474d4f65e30099.woff')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.145508;font-style:normal;font-weight:normal;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_3f552807c3b13db09d8f97cf.woff')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00335;src:url('chunks/assets/font_2da9f032a82778114d203113.woff')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00335;src:url('chunks/assets/font_34b0e8195be64a7cdd3509ee.woff')format("woff");}.ff5_c00335{font-family:ff5_c00335;line-height:1.001465;font-style: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;}
.ls5_c00335{letter-spacing:-6.696000px;}
.ls8_c00335{letter-spacing:-0.288000px;}
.ls4_c00335{letter-spacing:-0.216000px;}
.ls7_c00335{letter-spacing:-0.144000px;}
.ls6_c00335{letter-spacing:0.000000px;}
.ls9_c00335{letter-spacing:0.288000px;}
.ls1_c00335{letter-spacing:43.344000px;}
.ls3_c00335{letter-spacing:44.064000px;}
.ls0_c00335{letter-spacing:65.448000px;}
.ls2_c00335{letter-spacing:111.600000px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00335{word-spacing:-43.344000px;}
.wsd_c00335{word-spacing:-0.288000px;}
.wsb_c00335{word-spacing:0.000000px;}
.wsa_c00335{word-spacing:0.216000px;}
.ws6_c00335{word-spacing:0.432000px;}
.ws3_c00335{word-spacing:1.008000px;}
.ws8_c00335{word-spacing:1.296000px;}
.ws7_c00335{word-spacing:1.872000px;}
.ws9_c00335{word-spacing:2.016000px;}
.wsc_c00335{word-spacing:2.160000px;}
.ws4_c00335{word-spacing:2.592000px;}
.ws5_c00335{word-spacing:3.456000px;}
.ws0_c00335{word-spacing:11.728800px;}
.ws1_c00335{word-spacing:35.136000px;}
._0_c00335{margin-left:-9.936000px;}
._4_c00335{margin-left:-1.152000px;}
._2_c00335{width:1.339200px;}
._1_c00335{width:6.760800px;}
._3_c00335{width:79.588800px;}
.fc0_c00335{color:rgb(0,0,0);}
.fs1_c00335{font-size:144.000000px;}
.fs0_c00335{font-size:216.000000px;}
.y0_c00335{bottom:0.000000px;}
.y7_c00335{bottom:157.620000px;}
.y6_c00335{bottom:342.660000px;}
.y5_c00335{bottom:388.740000px;}
.y4_c00335{bottom:435.000000px;}
.y3_c00335{bottom:527.520000px;}
.y2_c00335{bottom:573.780000px;}
.y1_c00335{bottom:680.220000px;}
.h2_c00335{height:134.859375px;}
.h1_c00335{height:161.367188px;}
.h0_c00335{height:810.000000px;}
.w0_c00335{width:1440.000000px;}
.x0_c00335{left:0.000000px;}
.x2_c00335{left:67.847100px;}
.x1_c00335{left:90.800100px;}
.x3_c00335{left:100.427100px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls5_c00335{letter-spacing:-5.952000pt;}
.ls8_c00335{letter-spacing:-0.256000pt;}
.ls4_c00335{letter-spacing:-0.192000pt;}
.ls7_c00335{letter-spacing:-0.128000pt;}
.ls6_c00335{letter-spacing:0.000000pt;}
.ls9_c00335{letter-spacing:0.256000pt;}
.ls1_c00335{letter-spacing:38.528000pt;}
.ls3_c00335{letter-spacing:39.168000pt;}
.ls0_c00335{letter-spacing:58.176000pt;}
.ls2_c00335{letter-spacing:99.200000pt;}
.ws2_c00335{word-spacing:-38.528000pt;}
.wsd_c00335{word-spacing:-0.256000pt;}
.wsb_c00335{word-spacing:0.000000pt;}
.wsa_c00335{word-spacing:0.192000pt;}
.ws6_c00335{word-spacing:0.384000pt;}
.ws3_c00335{word-spacing:0.896000pt;}
.ws8_c00335{word-spacing:1.152000pt;}
.ws7_c00335{word-spacing:1.664000pt;}
.ws9_c00335{word-spacing:1.792000pt;}
.wsc_c00335{word-spacing:1.920000pt;}
.ws4_c00335{word-spacing:2.304000pt;}
.ws5_c00335{word-spacing:3.072000pt;}
.ws0_c00335{word-spacing:10.425600pt;}
.ws1_c00335{word-spacing:31.232000pt;}
._0_c00335{margin-left:-8.832000pt;}
._4_c00335{margin-left:-1.024000pt;}
._2_c00335{width:1.190400pt;}
._1_c00335{width:6.009600pt;}
._3_c00335{width:70.745600pt;}
.fs1_c00335{font-size:128.000000pt;}
.fs0_c00335{font-size:192.000000pt;}
.y0_c00335{bottom:0.000000pt;}
.y7_c00335{bottom:140.106667pt;}
.y6_c00335{bottom:304.586667pt;}
.y5_c00335{bottom:345.546667pt;}
.y4_c00335{bottom:386.666667pt;}
.y3_c00335{bottom:468.906667pt;}
.y2_c00335{bottom:510.026667pt;}
.y1_c00335{bottom:604.640000pt;}
.h2_c00335{height:119.875000pt;}
.h1_c00335{height:143.437500pt;}
.h0_c00335{height:720.000000pt;}
.w0_c00335{width:1280.000000pt;}
.x0_c00335{left:0.000000pt;}
.x2_c00335{left:60.308533pt;}
.x1_c00335{left:80.711200pt;}
.x3_c00335{left:89.268533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e1a35e1dbef1a9fce9f5d403.woff')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:0.952148;font-style:normal;font-weight:normal;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_815980dff53d8d82bc7b95db.woff')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.001465;font-style:normal;font-weight:normal;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_221345eb18cdc3539745ae3b.woff')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.145508;font-style: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;}
.ls1_c00336{letter-spacing:0.000000px;}
.ls0_c00336{letter-spacing:0.216000px;}
.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:-99.936000px;}
.ws2_c00336{word-spacing:-0.216000px;}
.ws1_c00336{word-spacing:0.432000px;}
._0_c00336{margin-left:-1.080000px;}
._1_c00336{width:44.856000px;}
._2_c00336{width:702.576000px;}
.fc0_c00336{color:rgb(0,0,0);}
.fs1_c00336{font-size:144.000000px;}
.fs0_c00336{font-size:216.000000px;}
.y0_c00336{bottom:0.000000px;}
.y2_c00336{bottom:609.207300px;}
.y1_c00336{bottom:680.220000px;}
.h2_c00336{height:134.859375px;}
.h1_c00336{height:161.367188px;}
.h0_c00336{height:810.000000px;}
.w0_c00336{width:1440.000000px;}
.x0_c00336{left:0.000000px;}
.x1_c00336{left:90.800100px;}
.x2_c00336{left:148.463100px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls1_c00336{letter-spacing:0.000000pt;}
.ls0_c00336{letter-spacing:0.192000pt;}
.ws0_c00336{word-spacing:-88.832000pt;}
.ws2_c00336{word-spacing:-0.192000pt;}
.ws1_c00336{word-spacing:0.384000pt;}
._0_c00336{margin-left:-0.960000pt;}
._1_c00336{width:39.872000pt;}
._2_c00336{width:624.512000pt;}
.fs1_c00336{font-size:128.000000pt;}
.fs0_c00336{font-size:192.000000pt;}
.y0_c00336{bottom:0.000000pt;}
.y2_c00336{bottom:541.517600pt;}
.y1_c00336{bottom:604.640000pt;}
.h2_c00336{height:119.875000pt;}
.h1_c00336{height:143.437500pt;}
.h0_c00336{height:720.000000pt;}
.w0_c00336{width:1280.000000pt;}
.x0_c00336{left:0.000000pt;}
.x1_c00336{left:80.711200pt;}
.x2_c00336{left:131.967200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1017e79bfbe6b4b445a523e.woff')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:0.952148;font-style:normal;font-weight:normal;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_14cce266d362e035c51ae471.woff')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.145508;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls0_c00337{letter-spacing:-6.696000px;}
.ls3_c00337{letter-spacing:-0.144000px;}
.ls2_c00337{letter-spacing:0.000000px;}
.ls1_c00337{letter-spacing:0.216000px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00337{word-spacing:-43.200000px;}
.ws3_c00337{word-spacing:-0.216000px;}
.ws1_c00337{word-spacing:1.296000px;}
.ws0_c00337{word-spacing:12.592800px;}
._0_c00337{width:6.760800px;}
.fc0_c00337{color:rgb(0,0,0);}
.fs1_c00337{font-size:144.000000px;}
.fs0_c00337{font-size:216.000000px;}
.y0_c00337{bottom:0.000000px;}
.y2_c00337{bottom:529.203300px;}
.y1_c00337{bottom:680.220000px;}
.h2_c00337{height:134.859375px;}
.h1_c00337{height:161.367188px;}
.h0_c00337{height:810.000000px;}
.w0_c00337{width:1440.000000px;}
.x0_c00337{left:0.000000px;}
.x1_c00337{left:90.800100px;}
.x2_c00337{left:213.545100px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls0_c00337{letter-spacing:-5.952000pt;}
.ls3_c00337{letter-spacing:-0.128000pt;}
.ls2_c00337{letter-spacing:0.000000pt;}
.ls1_c00337{letter-spacing:0.192000pt;}
.ws2_c00337{word-spacing:-38.400000pt;}
.ws3_c00337{word-spacing:-0.192000pt;}
.ws1_c00337{word-spacing:1.152000pt;}
.ws0_c00337{word-spacing:11.193600pt;}
._0_c00337{width:6.009600pt;}
.fs1_c00337{font-size:128.000000pt;}
.fs0_c00337{font-size:192.000000pt;}
.y0_c00337{bottom:0.000000pt;}
.y2_c00337{bottom:470.402933pt;}
.y1_c00337{bottom:604.640000pt;}
.h2_c00337{height:119.875000pt;}
.h1_c00337{height:143.437500pt;}
.h0_c00337{height:720.000000pt;}
.w0_c00337{width:1280.000000pt;}
.x0_c00337{left:0.000000pt;}
.x1_c00337{left:80.711200pt;}
.x2_c00337{left:189.817867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9c41ddb44d70a57c512d8c3.woff')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:0.952148;font-style:normal;font-weight:normal;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_7c35646b4a1a6c2fa8c04474.woff')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:0.952148;font-style:normal;font-weight:normal;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_9d2da893dc46655c1a1e00ef.woff')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.145508;font-style: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;}
.ls2_c00338{letter-spacing:-6.696000px;}
.ls3_c00338{letter-spacing:-0.288000px;}
.ls1_c00338{letter-spacing:-0.216000px;}
.ls5_c00338{letter-spacing:-0.144000px;}
.ls4_c00338{letter-spacing:0.000000px;}
.ls6_c00338{letter-spacing:0.144000px;}
.ls0_c00338{letter-spacing:65.448000px;}
.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;}
}
.ws6_c00338{word-spacing:-43.344000px;}
.wsc_c00338{word-spacing:-43.056000px;}
.ws7_c00338{word-spacing:-5.472000px;}
.ws5_c00338{word-spacing:-0.144000px;}
.ws8_c00338{word-spacing:0.000000px;}
.wsd_c00338{word-spacing:0.216000px;}
.ws2_c00338{word-spacing:0.576000px;}
.ws4_c00338{word-spacing:0.864000px;}
.ws9_c00338{word-spacing:1.440000px;}
.ws3_c00338{word-spacing:1.728000px;}
.ws1_c00338{word-spacing:1.872000px;}
.wsb_c00338{word-spacing:2.016000px;}
.wsa_c00338{word-spacing:2.145600px;}
.ws0_c00338{word-spacing:11.728800px;}
._6_c00338{margin-left:-15.408000px;}
._0_c00338{margin-left:-9.936000px;}
._3_c00338{margin-left:-4.176000px;}
._2_c00338{width:1.987200px;}
._1_c00338{width:6.760800px;}
._5_c00338{width:44.524800px;}
._4_c00338{width:45.792000px;}
.fc0_c00338{color:rgb(0,0,0);}
.fs1_c00338{font-size:144.000000px;}
.fs0_c00338{font-size:216.000000px;}
.y0_c00338{bottom:0.000000px;}
.y5_c00338{bottom:328.724550px;}
.y4_c00338{bottom:374.804550px;}
.y3_c00338{bottom:513.584550px;}
.y2_c00338{bottom:559.844550px;}
.y1_c00338{bottom:680.220000px;}
.h2_c00338{height:134.859375px;}
.h1_c00338{height:161.367188px;}
.h0_c00338{height:810.000000px;}
.w0_c00338{width:1440.000000px;}
.x0_c00338{left:0.000000px;}
.x1_c00338{left:90.800100px;}
.x2_c00338{left:177.134400px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls2_c00338{letter-spacing:-5.952000pt;}
.ls3_c00338{letter-spacing:-0.256000pt;}
.ls1_c00338{letter-spacing:-0.192000pt;}
.ls5_c00338{letter-spacing:-0.128000pt;}
.ls4_c00338{letter-spacing:0.000000pt;}
.ls6_c00338{letter-spacing:0.128000pt;}
.ls0_c00338{letter-spacing:58.176000pt;}
.ws6_c00338{word-spacing:-38.528000pt;}
.wsc_c00338{word-spacing:-38.272000pt;}
.ws7_c00338{word-spacing:-4.864000pt;}
.ws5_c00338{word-spacing:-0.128000pt;}
.ws8_c00338{word-spacing:0.000000pt;}
.wsd_c00338{word-spacing:0.192000pt;}
.ws2_c00338{word-spacing:0.512000pt;}
.ws4_c00338{word-spacing:0.768000pt;}
.ws9_c00338{word-spacing:1.280000pt;}
.ws3_c00338{word-spacing:1.536000pt;}
.ws1_c00338{word-spacing:1.664000pt;}
.wsb_c00338{word-spacing:1.792000pt;}
.wsa_c00338{word-spacing:1.907200pt;}
.ws0_c00338{word-spacing:10.425600pt;}
._6_c00338{margin-left:-13.696000pt;}
._0_c00338{margin-left:-8.832000pt;}
._3_c00338{margin-left:-3.712000pt;}
._2_c00338{width:1.766400pt;}
._1_c00338{width:6.009600pt;}
._5_c00338{width:39.577600pt;}
._4_c00338{width:40.704000pt;}
.fs1_c00338{font-size:128.000000pt;}
.fs0_c00338{font-size:192.000000pt;}
.y0_c00338{bottom:0.000000pt;}
.y5_c00338{bottom:292.199600pt;}
.y4_c00338{bottom:333.159600pt;}
.y3_c00338{bottom:456.519600pt;}
.y2_c00338{bottom:497.639600pt;}
.y1_c00338{bottom:604.640000pt;}
.h2_c00338{height:119.875000pt;}
.h1_c00338{height:143.437500pt;}
.h0_c00338{height:720.000000pt;}
.w0_c00338{width:1280.000000pt;}
.x0_c00338{left:0.000000pt;}
.x1_c00338{left:80.711200pt;}
.x2_c00338{left:157.452800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61e2f398cde4bb5725cc4bfd.woff')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:0.952148;font-style:normal;font-weight:normal;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_2da9f032a82778114d203113.woff')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_21d3aac99d3dcf1bce878198.woff')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:1.145508;font-style:normal;font-weight:normal;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_b0e1e17d53006f9addfedaa2.woff')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:1.001465;font-style: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;}
.ls1_c00339{letter-spacing:-0.216000px;}
.ls2_c00339{letter-spacing:0.000000px;}
.ls3_c00339{letter-spacing:0.138240px;}
.ls4_c00339{letter-spacing:0.414720px;}
.ls0_c00339{letter-spacing:113.616000px;}
.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;}
}
.ws6_c00339{word-spacing:-138.240000px;}
.ws2_c00339{word-spacing:-41.748480px;}
.ws3_c00339{word-spacing:-2.654208px;}
.ws5_c00339{word-spacing:-1.340928px;}
.ws0_c00339{word-spacing:-0.981504px;}
.ws4_c00339{word-spacing:-0.691200px;}
.ws9_c00339{word-spacing:-0.414720px;}
.ws1_c00339{word-spacing:-0.207360px;}
.ws8_c00339{word-spacing:0.000000px;}
.ws7_c00339{word-spacing:2.808000px;}
._1_c00339{margin-left:-18.320256px;}
._2_c00339{margin-left:-1.050624px;}
._0_c00339{width:1.123200px;}
.fc0_c00339{color:rgb(0,0,0);}
.fs1_c00339{font-size:138.240000px;}
.fs0_c00339{font-size:216.000000px;}
.y0_c00339{bottom:0.000000px;}
.y6_c00339{bottom:178.500000px;}
.y5_c00339{bottom:267.060000px;}
.y4_c00339{bottom:355.620000px;}
.y3_c00339{bottom:444.180000px;}
.y2_c00339{bottom:532.740000px;}
.y1_c00339{bottom:680.220000px;}
.h2_c00339{height:129.465000px;}
.h1_c00339{height:161.367188px;}
.h0_c00339{height:810.000000px;}
.w0_c00339{width:1440.000000px;}
.x0_c00339{left:0.000000px;}
.x2_c00339{left:41.738700px;}
.x1_c00339{left:90.800100px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls1_c00339{letter-spacing:-0.192000pt;}
.ls2_c00339{letter-spacing:0.000000pt;}
.ls3_c00339{letter-spacing:0.122880pt;}
.ls4_c00339{letter-spacing:0.368640pt;}
.ls0_c00339{letter-spacing:100.992000pt;}
.ws6_c00339{word-spacing:-122.880000pt;}
.ws2_c00339{word-spacing:-37.109760pt;}
.ws3_c00339{word-spacing:-2.359296pt;}
.ws5_c00339{word-spacing:-1.191936pt;}
.ws0_c00339{word-spacing:-0.872448pt;}
.ws4_c00339{word-spacing:-0.614400pt;}
.ws9_c00339{word-spacing:-0.368640pt;}
.ws1_c00339{word-spacing:-0.184320pt;}
.ws8_c00339{word-spacing:0.000000pt;}
.ws7_c00339{word-spacing:2.496000pt;}
._1_c00339{margin-left:-16.284672pt;}
._2_c00339{margin-left:-0.933888pt;}
._0_c00339{width:0.998400pt;}
.fs1_c00339{font-size:122.880000pt;}
.fs0_c00339{font-size:192.000000pt;}
.y0_c00339{bottom:0.000000pt;}
.y6_c00339{bottom:158.666667pt;}
.y5_c00339{bottom:237.386667pt;}
.y4_c00339{bottom:316.106667pt;}
.y3_c00339{bottom:394.826667pt;}
.y2_c00339{bottom:473.546667pt;}
.y1_c00339{bottom:604.640000pt;}
.h2_c00339{height:115.080000pt;}
.h1_c00339{height:143.437500pt;}
.h0_c00339{height:720.000000pt;}
.w0_c00339{width:1280.000000pt;}
.x0_c00339{left:0.000000pt;}
.x2_c00339{left:37.101067pt;}
.x1_c00339{left:80.711200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b49141775d9e720e932405ce.woff')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:0.952148;font-style:normal;font-weight:normal;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_c0ad08ced3dafc8625e971a3.woff')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:0.952148;font-style:normal;font-weight:normal;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_80af70ccbb085ddbbd270277.woff')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.145508;font-style: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;}
.ls3_c00340{letter-spacing:-6.696000px;}
.ls4_c00340{letter-spacing:-0.335520px;}
.ls2_c00340{letter-spacing:-0.216000px;}
.ls5_c00340{letter-spacing:0.000000px;}
.ls1_c00340{letter-spacing:50.999040px;}
.ls0_c00340{letter-spacing:65.448000px;}
.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;}
}
.ws4_c00340{word-spacing:-50.160240px;}
.ws6_c00340{word-spacing:-0.721368px;}
.ws9_c00340{word-spacing:0.000000px;}
.ws8_c00340{word-spacing:0.216000px;}
.ws2_c00340{word-spacing:1.241424px;}
.ws3_c00340{word-spacing:1.828584px;}
.ws7_c00340{word-spacing:2.113776px;}
.ws1_c00340{word-spacing:2.197656px;}
.ws5_c00340{word-spacing:2.633832px;}
.ws0_c00340{word-spacing:11.728800px;}
._0_c00340{margin-left:-9.936000px;}
._3_c00340{margin-left:-5.854824px;}
._2_c00340{width:1.101600px;}
._1_c00340{width:6.760800px;}
.fc0_c00340{color:rgb(0,0,0);}
.fs1_c00340{font-size:167.760000px;}
.fs0_c00340{font-size:216.000000px;}
.y0_c00340{bottom:0.000000px;}
.y3_c00340{bottom:182.827740px;}
.y2_c00340{bottom:452.460000px;}
.y1_c00340{bottom:680.220000px;}
.h2_c00340{height:157.111172px;}
.h1_c00340{height:161.367188px;}
.h0_c00340{height:810.000000px;}
.w0_c00340{width:1440.000000px;}
.x0_c00340{left:0.000000px;}
.x1_c00340{left:90.800100px;}
.x2_c00340{left:230.427900px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls3_c00340{letter-spacing:-5.952000pt;}
.ls4_c00340{letter-spacing:-0.298240pt;}
.ls2_c00340{letter-spacing:-0.192000pt;}
.ls5_c00340{letter-spacing:0.000000pt;}
.ls1_c00340{letter-spacing:45.332480pt;}
.ls0_c00340{letter-spacing:58.176000pt;}
.ws4_c00340{word-spacing:-44.586880pt;}
.ws6_c00340{word-spacing:-0.641216pt;}
.ws9_c00340{word-spacing:0.000000pt;}
.ws8_c00340{word-spacing:0.192000pt;}
.ws2_c00340{word-spacing:1.103488pt;}
.ws3_c00340{word-spacing:1.625408pt;}
.ws7_c00340{word-spacing:1.878912pt;}
.ws1_c00340{word-spacing:1.953472pt;}
.ws5_c00340{word-spacing:2.341184pt;}
.ws0_c00340{word-spacing:10.425600pt;}
._0_c00340{margin-left:-8.832000pt;}
._3_c00340{margin-left:-5.204288pt;}
._2_c00340{width:0.979200pt;}
._1_c00340{width:6.009600pt;}
.fs1_c00340{font-size:149.120000pt;}
.fs0_c00340{font-size:192.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.y3_c00340{bottom:162.513547pt;}
.y2_c00340{bottom:402.186667pt;}
.y1_c00340{bottom:604.640000pt;}
.h2_c00340{height:139.654375pt;}
.h1_c00340{height:143.437500pt;}
.h0_c00340{height:720.000000pt;}
.w0_c00340{width:1280.000000pt;}
.x0_c00340{left:0.000000pt;}
.x1_c00340{left:80.711200pt;}
.x2_c00340{left:204.824800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8f0a08d8279ca3b9bc4c457.woff')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:0.952148;font-style:normal;font-weight:normal;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_2da9f032a82778114d203113.woff')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_26a792a07529f3cffd58cd3b.woff')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.001465;font-style:normal;font-weight:normal;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_d8e019796e80e9f8b5516574.woff')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:1.145508;font-style: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);}
.m1_c00341{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls4_c00341{letter-spacing:-0.288000px;}
.ls1_c00341{letter-spacing:-0.216000px;}
.ls3_c00341{letter-spacing:-0.144000px;}
.ls2_c00341{letter-spacing:0.000000px;}
.ls5_c00341{letter-spacing:0.144000px;}
.ls0_c00341{letter-spacing:111.600000px;}
.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;}
}
.wsc_c00341{word-spacing:-144.000000px;}
.ws4_c00341{word-spacing:-100.080000px;}
.ws0_c00341{word-spacing:-99.360000px;}
.ws2_c00341{word-spacing:-97.358400px;}
.wsf_c00341{word-spacing:-43.488000px;}
.wsd_c00341{word-spacing:-43.344000px;}
.wse_c00341{word-spacing:-43.200000px;}
.ws6_c00341{word-spacing:-43.056000px;}
.ws10_c00341{word-spacing:0.000000px;}
.ws1_c00341{word-spacing:0.288000px;}
.ws5_c00341{word-spacing:0.432000px;}
.ws3_c00341{word-spacing:0.576000px;}
.ws9_c00341{word-spacing:0.720000px;}
.ws8_c00341{word-spacing:1.152000px;}
.wsa_c00341{word-spacing:1.584000px;}
.ws7_c00341{word-spacing:2.016000px;}
.wsb_c00341{word-spacing:2.592000px;}
._2_c00341{margin-left:-23.400000px;}
._1_c00341{margin-left:-4.464000px;}
._4_c00341{margin-left:-1.008000px;}
._0_c00341{width:1.382400px;}
._3_c00341{width:46.800000px;}
.fc0_c00341{color:rgb(0,0,0);}
.fs1_c00341{font-size:144.000000px;}
.fs0_c00341{font-size:216.000000px;}
.y0_c00341{bottom:0.000000px;}
.y8_c00341{bottom:46.622550px;}
.y7_c00341{bottom:139.142550px;}
.y6_c00341{bottom:185.222550px;}
.y5_c00341{bottom:296.400000px;}
.y4_c00341{bottom:388.740000px;}
.y3_c00341{bottom:481.260000px;}
.y2_c00341{bottom:573.780000px;}
.y1_c00341{bottom:680.220000px;}
.h2_c00341{height:134.859375px;}
.h1_c00341{height:161.367188px;}
.h0_c00341{height:810.000000px;}
.w0_c00341{width:1440.000000px;}
.x0_c00341{left:0.000000px;}
.x2_c00341{left:67.847250px;}
.x1_c00341{left:90.800100px;}
.x3_c00341{left:191.090250px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls4_c00341{letter-spacing:-0.256000pt;}
.ls1_c00341{letter-spacing:-0.192000pt;}
.ls3_c00341{letter-spacing:-0.128000pt;}
.ls2_c00341{letter-spacing:0.000000pt;}
.ls5_c00341{letter-spacing:0.128000pt;}
.ls0_c00341{letter-spacing:99.200000pt;}
.wsc_c00341{word-spacing:-128.000000pt;}
.ws4_c00341{word-spacing:-88.960000pt;}
.ws0_c00341{word-spacing:-88.320000pt;}
.ws2_c00341{word-spacing:-86.540800pt;}
.wsf_c00341{word-spacing:-38.656000pt;}
.wsd_c00341{word-spacing:-38.528000pt;}
.wse_c00341{word-spacing:-38.400000pt;}
.ws6_c00341{word-spacing:-38.272000pt;}
.ws10_c00341{word-spacing:0.000000pt;}
.ws1_c00341{word-spacing:0.256000pt;}
.ws5_c00341{word-spacing:0.384000pt;}
.ws3_c00341{word-spacing:0.512000pt;}
.ws9_c00341{word-spacing:0.640000pt;}
.ws8_c00341{word-spacing:1.024000pt;}
.wsa_c00341{word-spacing:1.408000pt;}
.ws7_c00341{word-spacing:1.792000pt;}
.wsb_c00341{word-spacing:2.304000pt;}
._2_c00341{margin-left:-20.800000pt;}
._1_c00341{margin-left:-3.968000pt;}
._4_c00341{margin-left:-0.896000pt;}
._0_c00341{width:1.228800pt;}
._3_c00341{width:41.600000pt;}
.fs1_c00341{font-size:128.000000pt;}
.fs0_c00341{font-size:192.000000pt;}
.y0_c00341{bottom:0.000000pt;}
.y8_c00341{bottom:41.442267pt;}
.y7_c00341{bottom:123.682267pt;}
.y6_c00341{bottom:164.642267pt;}
.y5_c00341{bottom:263.466667pt;}
.y4_c00341{bottom:345.546667pt;}
.y3_c00341{bottom:427.786667pt;}
.y2_c00341{bottom:510.026667pt;}
.y1_c00341{bottom:604.640000pt;}
.h2_c00341{height:119.875000pt;}
.h1_c00341{height:143.437500pt;}
.h0_c00341{height:720.000000pt;}
.w0_c00341{width:1280.000000pt;}
.x0_c00341{left:0.000000pt;}
.x2_c00341{left:60.308667pt;}
.x1_c00341{left:80.711200pt;}
.x3_c00341{left:169.858000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c07a0371485872ab8f73317.woff')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00342{letter-spacing:12.204000px;}
.ls0_c00342{letter-spacing:14.688000px;}
.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:-39.204000px;}
.ws1_c00342{word-spacing:-14.688000px;}
._8_c00342{margin-left:-16.351200px;}
._9_c00342{margin-left:-9.244800px;}
._0_c00342{margin-left:-7.959600px;}
._2_c00342{margin-left:-6.004800px;}
._7_c00342{margin-left:-4.946400px;}
._1_c00342{margin-left:-3.888000px;}
._3_c00342{margin-left:-2.451600px;}
._4_c00342{margin-left:-1.004400px;}
._5_c00342{width:1.620000px;}
._b_c00342{width:2.667600px;}
._c_c00342{width:3.736800px;}
._a_c00342{width:14.342400px;}
._6_c00342{width:15.357600px;}
.fc0_c00342{color:rgb(255,255,255);}
.fs0_c00342{font-size:108.000000px;}
.y0_c00342{bottom:0.000000px;}
.y3_c00342{bottom:175.663050px;}
.y2_c00342{bottom:208.252050px;}
.y1_c00342{bottom:240.652050px;}
.h1_c00342{height:94.763672px;}
.h0_c00342{height:810.000000px;}
.w0_c00342{width:1440.000000px;}
.x0_c00342{left:0.000000px;}
.x1_c00342{left:805.888800px;}
.x2_c00342{left:840.097800px;}
.x3_c00342{left:960.868800px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls1_c00342{letter-spacing:10.848000pt;}
.ls0_c00342{letter-spacing:13.056000pt;}
.ws0_c00342{word-spacing:-34.848000pt;}
.ws1_c00342{word-spacing:-13.056000pt;}
._8_c00342{margin-left:-14.534400pt;}
._9_c00342{margin-left:-8.217600pt;}
._0_c00342{margin-left:-7.075200pt;}
._2_c00342{margin-left:-5.337600pt;}
._7_c00342{margin-left:-4.396800pt;}
._1_c00342{margin-left:-3.456000pt;}
._3_c00342{margin-left:-2.179200pt;}
._4_c00342{margin-left:-0.892800pt;}
._5_c00342{width:1.440000pt;}
._b_c00342{width:2.371200pt;}
._c_c00342{width:3.321600pt;}
._a_c00342{width:12.748800pt;}
._6_c00342{width:13.651200pt;}
.fs0_c00342{font-size:96.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y3_c00342{bottom:156.144933pt;}
.y2_c00342{bottom:185.112933pt;}
.y1_c00342{bottom:213.912933pt;}
.h1_c00342{height:84.234375pt;}
.h0_c00342{height:720.000000pt;}
.w0_c00342{width:1280.000000pt;}
.x0_c00342{left:0.000000pt;}
.x1_c00342{left:716.345600pt;}
.x2_c00342{left:746.753600pt;}
.x3_c00342{left:854.105600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2bbf2cf1bf87519970b57cc3.woff')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_30dc6333ada37ee09b5780c5.woff')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls4_c00343{letter-spacing:-4.717440px;}
.ls3_c00343{letter-spacing:0.000000px;}
.ls5_c00343{letter-spacing:6.149520px;}
.ls2_c00343{letter-spacing:6.486480px;}
.ls0_c00343{letter-spacing:8.255520px;}
.ls1_c00343{letter-spacing:11.540880px;}
.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:-27.209520px;}
.ws2_c00343{word-spacing:-11.540880px;}
.ws1_c00343{word-spacing:-8.255520px;}
.ws3_c00343{word-spacing:-6.486480px;}
.ws4_c00343{word-spacing:0.000000px;}
.ws5_c00343{word-spacing:4.717440px;}
._d_c00343{margin-left:-17.724096px;}
._8_c00343{margin-left:-16.628976px;}
._b_c00343{margin-left:-15.458040px;}
._3_c00343{margin-left:-12.341160px;}
._f_c00343{margin-left:-10.841688px;}
._c_c00343{margin-left:-8.474544px;}
._6_c00343{margin-left:-6.452784px;}
._5_c00343{margin-left:-4.633200px;}
._4_c00343{margin-left:-2.855736px;}
._1_c00343{margin-left:-1.794312px;}
._0_c00343{width:1.785888px;}
._2_c00343{width:3.302208px;}
._9_c00343{width:4.742712px;}
._a_c00343{width:6.503328px;}
._7_c00343{width:8.600904px;}
._12_c00343{width:10.412064px;}
._e_c00343{width:11.540880px;}
._10_c00343{width:13.579488px;}
._13_c00343{width:14.725152px;}
._11_c00343{width:15.870816px;}
.fc0_c00343{color:rgb(0,0,0);}
.fs0_c00343{font-size:84.240000px;}
.y0_c00343{bottom:0.000000px;}
.y6_c00343{bottom:226.910100px;}
.y5_c00343{bottom:254.625060px;}
.y4_c00343{bottom:282.340020px;}
.y3_c00343{bottom:310.054980px;}
.y2_c00343{bottom:337.769940px;}
.y1_c00343{bottom:365.484900px;}
.h1_c00343{height:73.915664px;}
.h0_c00343{height:810.000000px;}
.w0_c00343{width:1440.000000px;}
.x0_c00343{left:0.000000px;}
.x1_c00343{left:1129.043850px;}
.x3_c00343{left:1141.111230px;}
.x2_c00343{left:1161.981690px;}
.x4_c00343{left:1164.150870px;}
.x5_c00343{left:1176.218250px;}
.x6_c00343{left:1217.074650px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls4_c00343{letter-spacing:-4.193280pt;}
.ls3_c00343{letter-spacing:0.000000pt;}
.ls5_c00343{letter-spacing:5.466240pt;}
.ls2_c00343{letter-spacing:5.765760pt;}
.ls0_c00343{letter-spacing:7.338240pt;}
.ls1_c00343{letter-spacing:10.258560pt;}
.ws0_c00343{word-spacing:-24.186240pt;}
.ws2_c00343{word-spacing:-10.258560pt;}
.ws1_c00343{word-spacing:-7.338240pt;}
.ws3_c00343{word-spacing:-5.765760pt;}
.ws4_c00343{word-spacing:0.000000pt;}
.ws5_c00343{word-spacing:4.193280pt;}
._d_c00343{margin-left:-15.754752pt;}
._8_c00343{margin-left:-14.781312pt;}
._b_c00343{margin-left:-13.740480pt;}
._3_c00343{margin-left:-10.969920pt;}
._f_c00343{margin-left:-9.637056pt;}
._c_c00343{margin-left:-7.532928pt;}
._6_c00343{margin-left:-5.735808pt;}
._5_c00343{margin-left:-4.118400pt;}
._4_c00343{margin-left:-2.538432pt;}
._1_c00343{margin-left:-1.594944pt;}
._0_c00343{width:1.587456pt;}
._2_c00343{width:2.935296pt;}
._9_c00343{width:4.215744pt;}
._a_c00343{width:5.780736pt;}
._7_c00343{width:7.645248pt;}
._12_c00343{width:9.255168pt;}
._e_c00343{width:10.258560pt;}
._10_c00343{width:12.070656pt;}
._13_c00343{width:13.089024pt;}
._11_c00343{width:14.107392pt;}
.fs0_c00343{font-size:74.880000pt;}
.y0_c00343{bottom:0.000000pt;}
.y6_c00343{bottom:201.697867pt;}
.y5_c00343{bottom:226.333387pt;}
.y4_c00343{bottom:250.968907pt;}
.y3_c00343{bottom:275.604427pt;}
.y2_c00343{bottom:300.239947pt;}
.y1_c00343{bottom:324.875467pt;}
.h1_c00343{height:65.702812pt;}
.h0_c00343{height:720.000000pt;}
.w0_c00343{width:1280.000000pt;}
.x0_c00343{left:0.000000pt;}
.x1_c00343{left:1003.594533pt;}
.x3_c00343{left:1014.321093pt;}
.x2_c00343{left:1032.872613pt;}
.x4_c00343{left:1034.800773pt;}
.x5_c00343{left:1045.527333pt;}
.x6_c00343{left:1081.844133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_42eeb783d7e37f1b25fc0e27.woff')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:0.910645;font-style:normal;font-weight:normal;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_517e94b8f8eb19035040246e.woff')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls2_c00344{letter-spacing:1.095120px;}
.ls0_c00344{letter-spacing:1.263600px;}
.ls3_c00344{letter-spacing:8.255520px;}
.ls1_c00344{letter-spacing:34.560000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00344{word-spacing:-79.560000px;}
.ws0_c00344{word-spacing:-22.155120px;}
.ws3_c00344{word-spacing:-8.255520px;}
.ws2_c00344{word-spacing:0.000000px;}
._8_c00344{margin-left:-13.764816px;}
._4_c00344{margin-left:-12.627576px;}
._9_c00344{margin-left:-10.336248px;}
._2_c00344{margin-left:-8.617752px;}
._b_c00344{margin-left:-6.410664px;}
._5_c00344{margin-left:-5.020704px;}
._7_c00344{margin-left:-4.001400px;}
._3_c00344{margin-left:-2.459808px;}
._a_c00344{margin-left:-1.246752px;}
._6_c00344{width:1.474200px;}
._0_c00344{width:3.597048px;}
._1_c00344{width:6.090552px;}
._c_c00344{width:7.758504px;}
.fc0_c00344{color:rgb(0,0,0);}
.fs0_c00344{font-size:84.240000px;}
.fs1_c00344{font-size:180.000000px;}
.y0_c00344{bottom:0.000000px;}
.y2_c00344{bottom:72.780750px;}
.y1_c00344{bottom:106.792650px;}
.y3_c00344{bottom:724.075650px;}
.h1_c00344{height:73.915664px;}
.h2_c00344{height:157.939453px;}
.h0_c00344{height:810.000000px;}
.w0_c00344{width:1440.000000px;}
.x0_c00344{left:0.000000px;}
.x1_c00344{left:250.300050px;}
.x2_c00344{left:397.551570px;}
.x3_c00344{left:595.628700px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls2_c00344{letter-spacing:0.973440pt;}
.ls0_c00344{letter-spacing:1.123200pt;}
.ls3_c00344{letter-spacing:7.338240pt;}
.ls1_c00344{letter-spacing:30.720000pt;}
.ws1_c00344{word-spacing:-70.720000pt;}
.ws0_c00344{word-spacing:-19.693440pt;}
.ws3_c00344{word-spacing:-7.338240pt;}
.ws2_c00344{word-spacing:0.000000pt;}
._8_c00344{margin-left:-12.235392pt;}
._4_c00344{margin-left:-11.224512pt;}
._9_c00344{margin-left:-9.187776pt;}
._2_c00344{margin-left:-7.660224pt;}
._b_c00344{margin-left:-5.698368pt;}
._5_c00344{margin-left:-4.462848pt;}
._7_c00344{margin-left:-3.556800pt;}
._3_c00344{margin-left:-2.186496pt;}
._a_c00344{margin-left:-1.108224pt;}
._6_c00344{width:1.310400pt;}
._0_c00344{width:3.197376pt;}
._1_c00344{width:5.413824pt;}
._c_c00344{width:6.896448pt;}
.fs0_c00344{font-size:74.880000pt;}
.fs1_c00344{font-size:160.000000pt;}
.y0_c00344{bottom:0.000000pt;}
.y2_c00344{bottom:64.694000pt;}
.y1_c00344{bottom:94.926800pt;}
.y3_c00344{bottom:643.622800pt;}
.h1_c00344{height:65.702812pt;}
.h2_c00344{height:140.390625pt;}
.h0_c00344{height:720.000000pt;}
.w0_c00344{width:1280.000000pt;}
.x0_c00344{left:0.000000pt;}
.x1_c00344{left:222.488933pt;}
.x2_c00344{left:353.379173pt;}
.x3_c00344{left:529.447733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_116b89455c466595c044fe5f.woff')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:0.910645;font-style:normal;font-weight:normal;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_24a52dbe77defb21f3efe021.woff')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls6_c00345{letter-spacing:-6.264000px;}
.ls3_c00345{letter-spacing:-3.996000px;}
.ls9_c00345{letter-spacing:-3.780000px;}
.ls8_c00345{letter-spacing:0.000000px;}
.ls4_c00345{letter-spacing:4.320000px;}
.ls2_c00345{letter-spacing:5.076000px;}
.ls1_c00345{letter-spacing:8.208000px;}
.ls0_c00345{letter-spacing:10.044000px;}
.ls5_c00345{letter-spacing:12.528000px;}
.ls7_c00345{letter-spacing:14.688000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00345{word-spacing:-41.688000px;}
.ws4_c00345{word-spacing:-39.528000px;}
.ws2_c00345{word-spacing:-37.044000px;}
.ws1_c00345{word-spacing:-35.208000px;}
.ws9_c00345{word-spacing:-31.320000px;}
.wsa_c00345{word-spacing:-13.143600px;}
.ws0_c00345{word-spacing:-8.132400px;}
.ws3_c00345{word-spacing:-7.570800px;}
.wsb_c00345{word-spacing:-5.076000px;}
.ws7_c00345{word-spacing:-4.741200px;}
.ws5_c00345{word-spacing:-0.324000px;}
.wsd_c00345{word-spacing:0.000000px;}
.ws8_c00345{word-spacing:0.216000px;}
.wsc_c00345{word-spacing:3.996000px;}
._12_c00345{margin-left:-22.777200px;}
._10_c00345{margin-left:-20.876400px;}
._f_c00345{margin-left:-15.411600px;}
._b_c00345{margin-left:-11.253600px;}
._7_c00345{margin-left:-9.687600px;}
._6_c00345{margin-left:-8.575200px;}
._11_c00345{margin-left:-6.771600px;}
._9_c00345{margin-left:-5.043600px;}
._8_c00345{margin-left:-3.996000px;}
._a_c00345{margin-left:-2.160000px;}
._5_c00345{margin-left:-1.080000px;}
._3_c00345{width:1.803600px;}
._17_c00345{width:3.024000px;}
._0_c00345{width:4.460400px;}
._4_c00345{width:5.940000px;}
._18_c00345{width:9.007200px;}
._2_c00345{width:10.076400px;}
._c_c00345{width:11.134800px;}
._13_c00345{width:13.953600px;}
._d_c00345{width:16.340400px;}
._16_c00345{width:27.043200px;}
._1_c00345{width:34.527600px;}
._14_c00345{width:39.765600px;}
._e_c00345{width:43.459200px;}
._19_c00345{width:44.604000px;}
._15_c00345{width:49.118400px;}
.fc0_c00345{color:rgb(0,0,0);}
.fs0_c00345{font-size:108.000000px;}
.y0_c00345{bottom:0.000000px;}
.y4_c00345{bottom:453.249000px;}
.y3_c00345{bottom:492.129000px;}
.y2_c00345{bottom:540.000000px;}
.y1_c00345{bottom:578.880000px;}
.h1_c00345{height:94.763672px;}
.h0_c00345{height:810.000000px;}
.w0_c00345{width:1440.000000px;}
.x0_c00345{left:0.000000px;}
.x3_c00345{left:112.862850px;}
.x1_c00345{left:124.742850px;}
.x2_c00345{left:138.971850px;}
.x4_c00345{left:221.051850px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls6_c00345{letter-spacing:-5.568000pt;}
.ls3_c00345{letter-spacing:-3.552000pt;}
.ls9_c00345{letter-spacing:-3.360000pt;}
.ls8_c00345{letter-spacing:0.000000pt;}
.ls4_c00345{letter-spacing:3.840000pt;}
.ls2_c00345{letter-spacing:4.512000pt;}
.ls1_c00345{letter-spacing:7.296000pt;}
.ls0_c00345{letter-spacing:8.928000pt;}
.ls5_c00345{letter-spacing:11.136000pt;}
.ls7_c00345{letter-spacing:13.056000pt;}
.ws6_c00345{word-spacing:-37.056000pt;}
.ws4_c00345{word-spacing:-35.136000pt;}
.ws2_c00345{word-spacing:-32.928000pt;}
.ws1_c00345{word-spacing:-31.296000pt;}
.ws9_c00345{word-spacing:-27.840000pt;}
.wsa_c00345{word-spacing:-11.683200pt;}
.ws0_c00345{word-spacing:-7.228800pt;}
.ws3_c00345{word-spacing:-6.729600pt;}
.wsb_c00345{word-spacing:-4.512000pt;}
.ws7_c00345{word-spacing:-4.214400pt;}
.ws5_c00345{word-spacing:-0.288000pt;}
.wsd_c00345{word-spacing:0.000000pt;}
.ws8_c00345{word-spacing:0.192000pt;}
.wsc_c00345{word-spacing:3.552000pt;}
._12_c00345{margin-left:-20.246400pt;}
._10_c00345{margin-left:-18.556800pt;}
._f_c00345{margin-left:-13.699200pt;}
._b_c00345{margin-left:-10.003200pt;}
._7_c00345{margin-left:-8.611200pt;}
._6_c00345{margin-left:-7.622400pt;}
._11_c00345{margin-left:-6.019200pt;}
._9_c00345{margin-left:-4.483200pt;}
._8_c00345{margin-left:-3.552000pt;}
._a_c00345{margin-left:-1.920000pt;}
._5_c00345{margin-left:-0.960000pt;}
._3_c00345{width:1.603200pt;}
._17_c00345{width:2.688000pt;}
._0_c00345{width:3.964800pt;}
._4_c00345{width:5.280000pt;}
._18_c00345{width:8.006400pt;}
._2_c00345{width:8.956800pt;}
._c_c00345{width:9.897600pt;}
._13_c00345{width:12.403200pt;}
._d_c00345{width:14.524800pt;}
._16_c00345{width:24.038400pt;}
._1_c00345{width:30.691200pt;}
._14_c00345{width:35.347200pt;}
._e_c00345{width:38.630400pt;}
._19_c00345{width:39.648000pt;}
._15_c00345{width:43.660800pt;}
.fs0_c00345{font-size:96.000000pt;}
.y0_c00345{bottom:0.000000pt;}
.y4_c00345{bottom:402.888000pt;}
.y3_c00345{bottom:437.448000pt;}
.y2_c00345{bottom:480.000000pt;}
.y1_c00345{bottom:514.560000pt;}
.h1_c00345{height:84.234375pt;}
.h0_c00345{height:720.000000pt;}
.w0_c00345{width:1280.000000pt;}
.x0_c00345{left:0.000000pt;}
.x3_c00345{left:100.322533pt;}
.x1_c00345{left:110.882533pt;}
.x2_c00345{left:123.530533pt;}
.x4_c00345{left:196.490533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_282aad3596fda56ba980c143.woff')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:0.910645;font-style:normal;font-weight:normal;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_e117cb86f50884fba841b3dd.woff')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls2_c00346{letter-spacing:1.095120px;}
.ls0_c00346{letter-spacing:2.021760px;}
.ls3_c00346{letter-spacing:6.149520px;}
.ls1_c00346{letter-spacing:8.255520px;}
.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;}
}
.ws0_c00346{word-spacing:-22.155120px;}
.ws1_c00346{word-spacing:-8.255520px;}
.ws3_c00346{word-spacing:-6.149520px;}
.ws2_c00346{word-spacing:0.000000px;}
._5_c00346{margin-left:-17.732520px;}
._4_c00346{margin-left:-12.745512px;}
._9_c00346{margin-left:-10.934352px;}
._c_c00346{margin-left:-9.308520px;}
._8_c00346{margin-left:-7.800624px;}
._b_c00346{margin-left:-6.671808px;}
._6_c00346{margin-left:-4.388904px;}
._0_c00346{margin-left:-2.535624px;}
._d_c00346{margin-left:-1.305720px;}
._1_c00346{width:1.027728px;}
._7_c00346{width:2.181816px;}
._2_c00346{width:3.597048px;}
._3_c00346{width:6.090552px;}
._a_c00346{width:8.297640px;}
.fc0_c00346{color:rgb(0,0,0);}
.fs0_c00346{font-size:84.240000px;}
.y0_c00346{bottom:0.000000px;}
.y3_c00346{bottom:55.284930px;}
.y2_c00346{bottom:82.999890px;}
.y1_c00346{bottom:110.714850px;}
.h1_c00346{height:73.915664px;}
.h0_c00346{height:810.000000px;}
.w0_c00346{width:1440.000000px;}
.x0_c00346{left:0.000000px;}
.x2_c00346{left:14.339130px;}
.x1_c00346{left:41.127450px;}
.x3_c00346{left:322.131030px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls2_c00346{letter-spacing:0.973440pt;}
.ls0_c00346{letter-spacing:1.797120pt;}
.ls3_c00346{letter-spacing:5.466240pt;}
.ls1_c00346{letter-spacing:7.338240pt;}
.ws0_c00346{word-spacing:-19.693440pt;}
.ws1_c00346{word-spacing:-7.338240pt;}
.ws3_c00346{word-spacing:-5.466240pt;}
.ws2_c00346{word-spacing:0.000000pt;}
._5_c00346{margin-left:-15.762240pt;}
._4_c00346{margin-left:-11.329344pt;}
._9_c00346{margin-left:-9.719424pt;}
._c_c00346{margin-left:-8.274240pt;}
._8_c00346{margin-left:-6.933888pt;}
._b_c00346{margin-left:-5.930496pt;}
._6_c00346{margin-left:-3.901248pt;}
._0_c00346{margin-left:-2.253888pt;}
._d_c00346{margin-left:-1.160640pt;}
._1_c00346{width:0.913536pt;}
._7_c00346{width:1.939392pt;}
._2_c00346{width:3.197376pt;}
._3_c00346{width:5.413824pt;}
._a_c00346{width:7.375680pt;}
.fs0_c00346{font-size:74.880000pt;}
.y0_c00346{bottom:0.000000pt;}
.y3_c00346{bottom:49.142160pt;}
.y2_c00346{bottom:73.777680pt;}
.y1_c00346{bottom:98.413200pt;}
.h1_c00346{height:65.702812pt;}
.h0_c00346{height:720.000000pt;}
.w0_c00346{width:1280.000000pt;}
.x0_c00346{left:0.000000pt;}
.x2_c00346{left:12.745893pt;}
.x1_c00346{left:36.557733pt;}
.x3_c00346{left:286.338693pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00347{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
}
.y0_c00347{bottom:0.000000px;}
.h0_c00347{height:810.000000px;}
.w0_c00347{width:1440.000000px;}
.x0_c00347{left:0.000000px;}
@media print{
.y0_c00347{bottom:0.000000pt;}
.h0_c00347{height:720.000000pt;}
.w0_c00347{width:1280.000000pt;}
.x0_c00347{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_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;}
.sc__c00348{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
}
.y0_c00348{bottom:0.000000px;}
.h0_c00348{height:810.000000px;}
.w0_c00348{width:1440.000000px;}
.x0_c00348{left:0.000000px;}
@media print{
.y0_c00348{bottom:0.000000pt;}
.h0_c00348{height:720.000000pt;}
.w0_c00348{width:1280.000000pt;}
.x0_c00348{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_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_6db81f239c45d9ed0ff0d6de.woff')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_79749e449c9355ff0d1dcbe5.woff')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.ls1_c00349{letter-spacing:-13.608000px;}
.ls3_c00349{letter-spacing:1.188000px;}
.ls0_c00349{letter-spacing:2.700000px;}
.ls2_c00349{letter-spacing:6.804000px;}
.ls4_c00349{letter-spacing:14.796000px;}
.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;}
}
.ws2_c00349{word-spacing:-29.700000px;}
.ws4_c00349{word-spacing:-14.796000px;}
.ws1_c00349{word-spacing:-8.748000px;}
.ws3_c00349{word-spacing:-6.804000px;}
.ws0_c00349{word-spacing:-3.024000px;}
._6_c00349{margin-left:-9.190800px;}
._1_c00349{margin-left:-6.372000px;}
._5_c00349{margin-left:-4.860000px;}
._2_c00349{margin-left:-1.803600px;}
._3_c00349{width:1.620000px;}
._8_c00349{width:4.788000px;}
._7_c00349{width:5.842800px;}
._4_c00349{width:7.311600px;}
._0_c00349{width:55.360800px;}
.fc1_c00349{color:transparent;}
.fc0_c00349{color:rgb(0,0,0);}
.fs1_c00349{font-size:108.000000px;}
.fs0_c00349{font-size:216.000000px;}
.y0_c00349{bottom:0.000000px;}
.y5_c00349{bottom:158.699100px;}
.y4_c00349{bottom:191.099100px;}
.y1_c00349{bottom:389.058000px;}
.y3_c00349{bottom:600.919350px;}
.y2_c00349{bottom:633.319200px;}
.h3_c00349{height:75.041016px;}
.h2_c00349{height:94.763672px;}
.h1_c00349{height:189.527344px;}
.h0_c00349{height:810.000000px;}
.w0_c00349{width:1440.000000px;}
.x0_c00349{left:0.000000px;}
.x2_c00349{left:125.611350px;}
.x3_c00349{left:142.943700px;}
.x1_c00349{left:168.863700px;}
.x4_c00349{left:191.543700px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls1_c00349{letter-spacing:-12.096000pt;}
.ls3_c00349{letter-spacing:1.056000pt;}
.ls0_c00349{letter-spacing:2.400000pt;}
.ls2_c00349{letter-spacing:6.048000pt;}
.ls4_c00349{letter-spacing:13.152000pt;}
.ws2_c00349{word-spacing:-26.400000pt;}
.ws4_c00349{word-spacing:-13.152000pt;}
.ws1_c00349{word-spacing:-7.776000pt;}
.ws3_c00349{word-spacing:-6.048000pt;}
.ws0_c00349{word-spacing:-2.688000pt;}
._6_c00349{margin-left:-8.169600pt;}
._1_c00349{margin-left:-5.664000pt;}
._5_c00349{margin-left:-4.320000pt;}
._2_c00349{margin-left:-1.603200pt;}
._3_c00349{width:1.440000pt;}
._8_c00349{width:4.256000pt;}
._7_c00349{width:5.193600pt;}
._4_c00349{width:6.499200pt;}
._0_c00349{width:49.209600pt;}
.fs1_c00349{font-size:96.000000pt;}
.fs0_c00349{font-size:192.000000pt;}
.y0_c00349{bottom:0.000000pt;}
.y5_c00349{bottom:141.065867pt;}
.y4_c00349{bottom:169.865867pt;}
.y1_c00349{bottom:345.829333pt;}
.y3_c00349{bottom:534.150533pt;}
.y2_c00349{bottom:562.950400pt;}
.h3_c00349{height:66.703125pt;}
.h2_c00349{height:84.234375pt;}
.h1_c00349{height:168.468750pt;}
.h0_c00349{height:720.000000pt;}
.w0_c00349{width:1280.000000pt;}
.x0_c00349{left:0.000000pt;}
.x2_c00349{left:111.654533pt;}
.x3_c00349{left:127.061067pt;}
.x1_c00349{left:150.101067pt;}
.x4_c00349{left:170.261067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00350{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
}
.y0_c00350{bottom:0.000000px;}
.h0_c00350{height:810.000000px;}
.w0_c00350{width:1440.000000px;}
.x0_c00350{left:0.000000px;}
@media print{
.y0_c00350{bottom:0.000000pt;}
.h0_c00350{height:720.000000pt;}
.w0_c00350{width:1280.000000pt;}
.x0_c00350{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_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;}
.sc__c00351{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
}
.y0_c00351{bottom:0.000000px;}
.h0_c00351{height:810.000000px;}
.w0_c00351{width:1440.000000px;}
.x0_c00351{left:0.000000px;}
@media print{
.y0_c00351{bottom:0.000000pt;}
.h0_c00351{height:720.000000pt;}
.w0_c00351{width:1280.000000pt;}
.x0_c00351{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_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;}
.sc__c00352{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
}
.y0_c00352{bottom:0.000000px;}
.h0_c00352{height:810.000000px;}
.w0_c00352{width:1440.000000px;}
.x0_c00352{left:0.000000px;}
@media print{
.y0_c00352{bottom:0.000000pt;}
.h0_c00352{height:720.000000pt;}
.w0_c00352{width:1280.000000pt;}
.x0_c00352{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_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;}
.sc__c00353{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
}
.y0_c00353{bottom:0.000000px;}
.h0_c00353{height:810.000000px;}
.w0_c00353{width:1440.000000px;}
.x0_c00353{left:0.000000px;}
@media print{
.y0_c00353{bottom:0.000000pt;}
.h0_c00353{height:720.000000pt;}
.w0_c00353{width:1280.000000pt;}
.x0_c00353{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_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;}
.sc__c00354{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
}
.y0_c00354{bottom:0.000000px;}
.h0_c00354{height:810.000000px;}
.w0_c00354{width:1440.000000px;}
.x0_c00354{left:0.000000px;}
@media print{
.y0_c00354{bottom:0.000000pt;}
.h0_c00354{height:720.000000pt;}
.w0_c00354{width:1280.000000pt;}
.x0_c00354{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_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;}
.sc__c00355{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
}
.y0_c00355{bottom:0.000000px;}
.h0_c00355{height:810.000000px;}
.w0_c00355{width:1440.000000px;}
.x0_c00355{left:0.000000px;}
@media print{
.y0_c00355{bottom:0.000000pt;}
.h0_c00355{height:720.000000pt;}
.w0_c00355{width:1280.000000pt;}
.x0_c00355{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_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;}
.sc__c00356{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
}
.y0_c00356{bottom:0.000000px;}
.h0_c00356{height:810.000000px;}
.w0_c00356{width:1440.000000px;}
.x0_c00356{left:0.000000px;}
@media print{
.y0_c00356{bottom:0.000000pt;}
.h0_c00356{height:720.000000pt;}
.w0_c00356{width:1280.000000pt;}
.x0_c00356{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_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;}
.sc__c00357{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
}
.y0_c00357{bottom:0.000000px;}
.h0_c00357{height:810.000000px;}
.w0_c00357{width:1440.000000px;}
.x0_c00357{left:0.000000px;}
@media print{
.y0_c00357{bottom:0.000000pt;}
.h0_c00357{height:720.000000pt;}
.w0_c00357{width:1280.000000pt;}
.x0_c00357{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_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;}
.sc__c00358{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
}
.y0_c00358{bottom:0.000000px;}
.h0_c00358{height:810.000000px;}
.w0_c00358{width:1440.000000px;}
.x0_c00358{left:0.000000px;}
@media print{
.y0_c00358{bottom:0.000000pt;}
.h0_c00358{height:720.000000pt;}
.w0_c00358{width:1280.000000pt;}
.x0_c00358{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_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;}
.sc__c00359{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
}
.y0_c00359{bottom:0.000000px;}
.h0_c00359{height:810.000000px;}
.w0_c00359{width:1440.000000px;}
.x0_c00359{left:0.000000px;}
@media print{
.y0_c00359{bottom:0.000000pt;}
.h0_c00359{height:720.000000pt;}
.w0_c00359{width:1280.000000pt;}
.x0_c00359{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_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;}
.sc__c00360{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
}
.y0_c00360{bottom:0.000000px;}
.h0_c00360{height:810.000000px;}
.w0_c00360{width:1440.000000px;}
.x0_c00360{left:0.000000px;}
@media print{
.y0_c00360{bottom:0.000000pt;}
.h0_c00360{height:720.000000pt;}
.w0_c00360{width:1280.000000pt;}
.x0_c00360{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_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;}
.sc__c00361{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
}
.y0_c00361{bottom:0.000000px;}
.h0_c00361{height:810.000000px;}
.w0_c00361{width:1440.000000px;}
.x0_c00361{left:0.000000px;}
@media print{
.y0_c00361{bottom:0.000000pt;}
.h0_c00361{height:720.000000pt;}
.w0_c00361{width:1280.000000pt;}
.x0_c00361{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_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_470154a05e1a1b541ad73240.woff')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00362;src:url('chunks/assets/font_658ccd4aa2b027b5a1a68ea1.woff')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:0.910645;font-style: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);}
.m1_c00362{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls6_c00362{letter-spacing:-10.437840px;}
.lsa_c00362{letter-spacing:-5.745600px;}
.ls8_c00362{letter-spacing:-4.979520px;}
.ls3_c00362{letter-spacing:-3.888000px;}
.lsd_c00362{letter-spacing:-1.436400px;}
.ls10_c00362{letter-spacing:0.000000px;}
.ls2_c00362{letter-spacing:1.244880px;}
.lsc_c00362{letter-spacing:2.489760px;}
.ls9_c00362{letter-spacing:3.926160px;}
.ls0_c00362{letter-spacing:4.117680px;}
.ls1_c00362{letter-spacing:4.788000px;}
.lsb_c00362{letter-spacing:5.554080px;}
.ls11_c00362{letter-spacing:6.120000px;}
.ls5_c00362{letter-spacing:6.798960px;}
.lsf_c00362{letter-spacing:7.277760px;}
.lse_c00362{letter-spacing:9.001440px;}
.ls4_c00362{letter-spacing:12.927600px;}
.ls7_c00362{letter-spacing:15.130080px;}
.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;}
}
.ws3_c00362{word-spacing:-39.070080px;}
.wsa_c00362{word-spacing:-36.867600px;}
.wsb_c00362{word-spacing:-32.941440px;}
.wsc_c00362{word-spacing:-31.217760px;}
.ws0_c00362{word-spacing:-30.738960px;}
.ws6_c00362{word-spacing:-29.494080px;}
.wsf_c00362{word-spacing:-28.620000px;}
.ws1_c00362{word-spacing:-28.057680px;}
.ws5_c00362{word-spacing:-27.866160px;}
.ws8_c00362{word-spacing:-26.429760px;}
.ws11_c00362{word-spacing:-12.927600px;}
.ws16_c00362{word-spacing:-6.798960px;}
.ws13_c00362{word-spacing:-4.117680px;}
.ws4_c00362{word-spacing:-3.217536px;}
.ws12_c00362{word-spacing:0.000000px;}
.wsd_c00362{word-spacing:0.478800px;}
.wse_c00362{word-spacing:0.507528px;}
.ws17_c00362{word-spacing:1.124640px;}
.ws9_c00362{word-spacing:1.197000px;}
.ws18_c00362{word-spacing:1.260000px;}
.ws15_c00362{word-spacing:1.436400px;}
.ws7_c00362{word-spacing:2.690856px;}
.ws10_c00362{word-spacing:3.888000px;}
.ws14_c00362{word-spacing:5.745600px;}
.ws2_c00362{word-spacing:6.655320px;}
._19_c00362{margin-left:-21.386736px;}
._d_c00362{margin-left:-19.429704px;}
._11_c00362{margin-left:-18.069912px;}
._1a_c00362{margin-left:-15.484392px;}
._f_c00362{margin-left:-14.383152px;}
._10_c00362{margin-left:-12.686184px;}
._1b_c00362{margin-left:-11.677680px;}
._14_c00362{margin-left:-10.363248px;}
._9_c00362{margin-left:-8.541792px;}
._7_c00362{margin-left:-7.354368px;}
._b_c00362{margin-left:-5.929560px;}
._8_c00362{margin-left:-4.845456px;}
._0_c00362{margin-left:-3.024000px;}
._c_c00362{margin-left:-1.384488px;}
._15_c00362{width:1.580040px;}
._a_c00362{width:2.700432px;}
._e_c00362{width:4.136832px;}
._12_c00362{width:5.975424px;}
._16_c00362{width:6.990480px;}
._1c_c00362{width:8.118432px;}
._13_c00362{width:9.200520px;}
._21_c00362{width:10.391328px;}
._1f_c00362{width:11.576016px;}
._1d_c00362{width:13.197096px;}
._1e_c00362{width:15.292872px;}
._20_c00362{width:16.616376px;}
._3_c00362{width:17.647200px;}
._22_c00362{width:19.000152px;}
._5_c00362{width:20.520000px;}
._18_c00362{width:21.603456px;}
._17_c00362{width:23.269680px;}
._2_c00362{width:26.352000px;}
._4_c00362{width:29.095200px;}
._6_c00362{width:31.687200px;}
._1_c00362{width:33.264000px;}
.fc2_c00362{color:transparent;}
.fc1_c00362{color:rgb(22,156,154);}
.fc0_c00362{color:rgb(0,0,0);}
.fs3_c00362{font-size:90.000000px;}
.fs1_c00362{font-size:95.760000px;}
.fs2_c00362{font-size:102.240000px;}
.fs0_c00362{font-size:216.000000px;}
.y0_c00362{bottom:0.000000px;}
.yc_c00362{bottom:101.880000px;}
.yb_c00362{bottom:147.600000px;}
.ya_c00362{bottom:242.460000px;}
.y9_c00362{bottom:274.140000px;}
.y8_c00362{bottom:320.768820px;}
.y7_c00362{bottom:367.380000px;}
.y6_c00362{bottom:414.188820px;}
.y5_c00362{bottom:460.800000px;}
.y4_c00362{bottom:507.417300px;}
.y3_c00362{bottom:554.220000px;}
.y2_c00362{bottom:600.840000px;}
.y1_c00362{bottom:688.838850px;}
.h3_c00362{height:78.969727px;}
.h2_c00362{height:84.023789px;}
.h1_c00362{height:189.527344px;}
.h0_c00362{height:810.000000px;}
.w0_c00362{width:1440.000000px;}
.x0_c00362{left:0.000000px;}
.x2_c00362{left:109.800000px;}
.x1_c00362{left:112.034250px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls6_c00362{letter-spacing:-9.278080pt;}
.lsa_c00362{letter-spacing:-5.107200pt;}
.ls8_c00362{letter-spacing:-4.426240pt;}
.ls3_c00362{letter-spacing:-3.456000pt;}
.lsd_c00362{letter-spacing:-1.276800pt;}
.ls10_c00362{letter-spacing:0.000000pt;}
.ls2_c00362{letter-spacing:1.106560pt;}
.lsc_c00362{letter-spacing:2.213120pt;}
.ls9_c00362{letter-spacing:3.489920pt;}
.ls0_c00362{letter-spacing:3.660160pt;}
.ls1_c00362{letter-spacing:4.256000pt;}
.lsb_c00362{letter-spacing:4.936960pt;}
.ls11_c00362{letter-spacing:5.440000pt;}
.ls5_c00362{letter-spacing:6.043520pt;}
.lsf_c00362{letter-spacing:6.469120pt;}
.lse_c00362{letter-spacing:8.001280pt;}
.ls4_c00362{letter-spacing:11.491200pt;}
.ls7_c00362{letter-spacing:13.448960pt;}
.ws3_c00362{word-spacing:-34.728960pt;}
.wsa_c00362{word-spacing:-32.771200pt;}
.wsb_c00362{word-spacing:-29.281280pt;}
.wsc_c00362{word-spacing:-27.749120pt;}
.ws0_c00362{word-spacing:-27.323520pt;}
.ws6_c00362{word-spacing:-26.216960pt;}
.wsf_c00362{word-spacing:-25.440000pt;}
.ws1_c00362{word-spacing:-24.940160pt;}
.ws5_c00362{word-spacing:-24.769920pt;}
.ws8_c00362{word-spacing:-23.493120pt;}
.ws11_c00362{word-spacing:-11.491200pt;}
.ws16_c00362{word-spacing:-6.043520pt;}
.ws13_c00362{word-spacing:-3.660160pt;}
.ws4_c00362{word-spacing:-2.860032pt;}
.ws12_c00362{word-spacing:0.000000pt;}
.wsd_c00362{word-spacing:0.425600pt;}
.wse_c00362{word-spacing:0.451136pt;}
.ws17_c00362{word-spacing:0.999680pt;}
.ws9_c00362{word-spacing:1.064000pt;}
.ws18_c00362{word-spacing:1.120000pt;}
.ws15_c00362{word-spacing:1.276800pt;}
.ws7_c00362{word-spacing:2.391872pt;}
.ws10_c00362{word-spacing:3.456000pt;}
.ws14_c00362{word-spacing:5.107200pt;}
.ws2_c00362{word-spacing:5.915840pt;}
._19_c00362{margin-left:-19.010432pt;}
._d_c00362{margin-left:-17.270848pt;}
._11_c00362{margin-left:-16.062144pt;}
._1a_c00362{margin-left:-13.763904pt;}
._f_c00362{margin-left:-12.785024pt;}
._10_c00362{margin-left:-11.276608pt;}
._1b_c00362{margin-left:-10.380160pt;}
._14_c00362{margin-left:-9.211776pt;}
._9_c00362{margin-left:-7.592704pt;}
._7_c00362{margin-left:-6.537216pt;}
._b_c00362{margin-left:-5.270720pt;}
._8_c00362{margin-left:-4.307072pt;}
._0_c00362{margin-left:-2.688000pt;}
._c_c00362{margin-left:-1.230656pt;}
._15_c00362{width:1.404480pt;}
._a_c00362{width:2.400384pt;}
._e_c00362{width:3.677184pt;}
._12_c00362{width:5.311488pt;}
._16_c00362{width:6.213760pt;}
._1c_c00362{width:7.216384pt;}
._13_c00362{width:8.178240pt;}
._21_c00362{width:9.236736pt;}
._1f_c00362{width:10.289792pt;}
._1d_c00362{width:11.730752pt;}
._1e_c00362{width:13.593664pt;}
._20_c00362{width:14.770112pt;}
._3_c00362{width:15.686400pt;}
._22_c00362{width:16.889024pt;}
._5_c00362{width:18.240000pt;}
._18_c00362{width:19.203072pt;}
._17_c00362{width:20.684160pt;}
._2_c00362{width:23.424000pt;}
._4_c00362{width:25.862400pt;}
._6_c00362{width:28.166400pt;}
._1_c00362{width:29.568000pt;}
.fs3_c00362{font-size:80.000000pt;}
.fs1_c00362{font-size:85.120000pt;}
.fs2_c00362{font-size:90.880000pt;}
.fs0_c00362{font-size:192.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.yc_c00362{bottom:90.560000pt;}
.yb_c00362{bottom:131.200000pt;}
.ya_c00362{bottom:215.520000pt;}
.y9_c00362{bottom:243.680000pt;}
.y8_c00362{bottom:285.127840pt;}
.y7_c00362{bottom:326.560000pt;}
.y6_c00362{bottom:368.167840pt;}
.y5_c00362{bottom:409.600000pt;}
.y4_c00362{bottom:451.037600pt;}
.y3_c00362{bottom:492.640000pt;}
.y2_c00362{bottom:534.080000pt;}
.y1_c00362{bottom:612.301200pt;}
.h3_c00362{height:70.195312pt;}
.h2_c00362{height:74.687812pt;}
.h1_c00362{height:168.468750pt;}
.h0_c00362{height:720.000000pt;}
.w0_c00362{width:1280.000000pt;}
.x0_c00362{left:0.000000pt;}
.x2_c00362{left:97.600000pt;}
.x1_c00362{left:99.586000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1926aca53526b06327d4d76d.woff')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.130371;font-style:normal;font-weight:normal;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_5ea750349d21230c5211e887.woff')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.130371;font-style:normal;font-weight:normal;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_90503e4ba678d0bf0c6eeff5.woff')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.149414;font-style:normal;font-weight:normal;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_35717acbc1568f72ba904dad.woff')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:0.880859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00363;src:url('chunks/assets/font_1cc6218288fc69770ceeb88d.woff')format("woff");}.ff5_c00363{font-family:ff5_c00363;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00363;src:url('chunks/assets/font_7f76b981af46f75bdf5f27e5.woff')format("woff");}.ff6_c00363{font-family:ff6_c00363;line-height:1.172852;font-style: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);}
.m1_c00363{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls0_c00363{letter-spacing:0.000000px;}
.sc__c00363{text-shadow:none;}
.sc1_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00363{text-shadow:-0.015em 0 rgb(206,55,54),0 0.015em rgb(206,55,54),0.015em 0 rgb(206,55,54),0 -0.015em  rgb(206,55,54);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc1_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00363{-webkit-text-stroke:0.015em rgb(206,55,54);text-shadow:none;}
}
.ws0_c00363{word-spacing:0.000000px;}
._3_c00363{margin-left:-6.080832px;}
._2_c00363{margin-left:-4.230144px;}
._1_c00363{margin-left:-2.379456px;}
._0_c00363{margin-left:-1.057536px;}
._4_c00363{width:1.529520px;}
._5_c00363{width:24.934896px;}
.fc1_c00363{color:rgb(0,0,0);}
.fc0_c00363{color:rgb(206,55,54);}
.fs3_c00363{font-size:95.760000px;}
.fs2_c00363{font-size:120.240000px;}
.fs1_c00363{font-size:192.240000px;}
.fs0_c00363{font-size:264.384000px;}
.y0_c00363{bottom:0.000000px;}
.y5_c00363{bottom:226.440000px;}
.y4_c00363{bottom:325.470000px;}
.y3_c00363{bottom:380.670000px;}
.y2_c00363{bottom:458.355000px;}
.y1_c00363{bottom:515.085000px;}
.h4_c00363{height:72.381094px;}
.h5_c00363{height:95.245664px;}
.h3_c00363{height:123.116836px;}
.h2_c00363{height:183.041016px;}
.h1_c00363{height:251.732813px;}
.h0_c00363{height:810.000000px;}
.w1_c00363{width:1079.999984px;}
.w0_c00363{width:1080.000000px;}
.x0_c00363{left:0.000000px;}
.x3_c00363{left:80.927984px;}
.x1_c00363{left:211.679984px;}
.x2_c00363{left:407.369984px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ws0_c00363{word-spacing:0.000000pt;}
._3_c00363{margin-left:-5.405184pt;}
._2_c00363{margin-left:-3.760128pt;}
._1_c00363{margin-left:-2.115072pt;}
._0_c00363{margin-left:-0.940032pt;}
._4_c00363{width:1.359573pt;}
._5_c00363{width:22.164352pt;}
.fs3_c00363{font-size:85.120000pt;}
.fs2_c00363{font-size:106.880000pt;}
.fs1_c00363{font-size:170.880000pt;}
.fs0_c00363{font-size:235.008000pt;}
.y0_c00363{bottom:0.000000pt;}
.y5_c00363{bottom:201.280000pt;}
.y4_c00363{bottom:289.306667pt;}
.y3_c00363{bottom:338.373333pt;}
.y2_c00363{bottom:407.426667pt;}
.y1_c00363{bottom:457.853333pt;}
.h4_c00363{height:64.338750pt;}
.h5_c00363{height:84.662813pt;}
.h3_c00363{height:109.437187pt;}
.h2_c00363{height:162.703125pt;}
.h1_c00363{height:223.762500pt;}
.h0_c00363{height:720.000000pt;}
.w1_c00363{width:959.999986pt;}
.w0_c00363{width:960.000000pt;}
.x0_c00363{left:0.000000pt;}
.x3_c00363{left:71.935986pt;}
.x1_c00363{left:188.159986pt;}
.x2_c00363{left:362.106652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5bede77913c2b4b0c9abf639.woff')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.402354;font-style:normal;font-weight:normal;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_169d10e91ed9ac0057b6c9c2.woff')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.130371;font-style:normal;font-weight:normal;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_722e48bdab255910790d552f.woff')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00364;src:url('chunks/assets/font_afababf84cba75e1352632eb.woff')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00364;src:url('chunks/assets/font_3aba076a2e234f7bfb9904cc.woff')format("woff");}.ff5_c00364{font-family:ff5_c00364;line-height:1.149414;font-style: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;}
.ls1_c00364{letter-spacing:-0.310200px;}
.ls2_c00364{letter-spacing:-0.253200px;}
.ls0_c00364{letter-spacing:0.000000px;}
.sc__c00364{text-shadow:none;}
.sc1_c00364{text-shadow:-0.015em 0 rgb(206,55,54),0 0.015em rgb(206,55,54),0.015em 0 rgb(206,55,54),0 -0.015em  rgb(206,55,54);}
.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;}
.sc1_c00364{-webkit-text-stroke:0.015em rgb(206,55,54);text-shadow:none;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00364{word-spacing:-144.144000px;}
.ws0_c00364{word-spacing:-21.641760px;}
.ws2_c00364{word-spacing:-21.388560px;}
.ws3_c00364{word-spacing:0.000000px;}
._4_c00364{margin-left:-10.437840px;}
._5_c00364{margin-left:-8.745600px;}
._0_c00364{margin-left:-3.690720px;}
._1_c00364{margin-left:-1.677600px;}
._2_c00364{width:1.053360px;}
._3_c00364{width:2.272080px;}
.fc1_c00364{color:rgb(0,0,0);}
.fc0_c00364{color:rgb(206,55,54);}
.fs0_c00364{font-size:95.760000px;}
.fs2_c00364{font-size:95.904000px;}
.fs3_c00364{font-size:144.144000px;}
.fs1_c00364{font-size:167.760000px;}
.y0_c00364{bottom:0.000000px;}
.y1_c00364{bottom:63.900000px;}
.yb_c00364{bottom:135.936000px;}
.ya_c00364{bottom:176.970000px;}
.y9_c00364{bottom:217.830000px;}
.y8_c00364{bottom:261.975000px;}
.y7_c00364{bottom:353.595000px;}
.y6_c00364{bottom:394.455000px;}
.y5_c00364{bottom:435.525000px;}
.y4_c00364{bottom:476.385000px;}
.y3_c00364{bottom:502.305000px;}
.y2_c00364{bottom:557.385000px;}
.h3_c00364{height:95.245664px;}
.h4_c00364{height:95.388891px;}
.h1_c00364{height:98.426190px;}
.h5_c00364{height:147.592758px;}
.h2_c00364{height:159.732422px;}
.h0_c00364{height:810.000000px;}
.w1_c00364{width:1079.999984px;}
.w0_c00364{width:1080.000000px;}
.x0_c00364{left:0.000000px;}
.x3_c00364{left:70.019984px;}
.x2_c00364{left:164.879984px;}
.x4_c00364{left:210.239984px;}
.x1_c00364{left:992.774984px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls1_c00364{letter-spacing:-0.275733pt;}
.ls2_c00364{letter-spacing:-0.225067pt;}
.ls0_c00364{letter-spacing:0.000000pt;}
.ws1_c00364{word-spacing:-128.128000pt;}
.ws0_c00364{word-spacing:-19.237120pt;}
.ws2_c00364{word-spacing:-19.012053pt;}
.ws3_c00364{word-spacing:0.000000pt;}
._4_c00364{margin-left:-9.278080pt;}
._5_c00364{margin-left:-7.773867pt;}
._0_c00364{margin-left:-3.280640pt;}
._1_c00364{margin-left:-1.491200pt;}
._2_c00364{width:0.936320pt;}
._3_c00364{width:2.019627pt;}
.fs0_c00364{font-size:85.120000pt;}
.fs2_c00364{font-size:85.248000pt;}
.fs3_c00364{font-size:128.128000pt;}
.fs1_c00364{font-size:149.120000pt;}
.y0_c00364{bottom:0.000000pt;}
.y1_c00364{bottom:56.800000pt;}
.yb_c00364{bottom:120.832000pt;}
.ya_c00364{bottom:157.306667pt;}
.y9_c00364{bottom:193.626667pt;}
.y8_c00364{bottom:232.866667pt;}
.y7_c00364{bottom:314.306667pt;}
.y6_c00364{bottom:350.626667pt;}
.y5_c00364{bottom:387.133333pt;}
.y4_c00364{bottom:423.453333pt;}
.y3_c00364{bottom:446.493333pt;}
.y2_c00364{bottom:495.453333pt;}
.h3_c00364{height:84.662813pt;}
.h4_c00364{height:84.790125pt;}
.h1_c00364{height:87.489947pt;}
.h5_c00364{height:131.193562pt;}
.h2_c00364{height:141.984375pt;}
.h0_c00364{height:720.000000pt;}
.w1_c00364{width:959.999986pt;}
.w0_c00364{width:960.000000pt;}
.x0_c00364{left:0.000000pt;}
.x3_c00364{left:62.239986pt;}
.x2_c00364{left:146.559986pt;}
.x4_c00364{left:186.879986pt;}
.x1_c00364{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a60a78e048bbd7801b98d46b.woff')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.402354;font-style:normal;font-weight:normal;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_7e5ea70a01a49ed2af139603.woff')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.130371;font-style:normal;font-weight:normal;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_ba9099e59c0ec748c30bbbe4.woff')format("woff");}.ff3_c00365{font-family:ff3_c00365;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:ff4_c00365;src:url('chunks/assets/font_e0fe827e778c99436870fb51.woff')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:1.172852;font-style:normal;font-weight:normal;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_c5f22f8d4c17052a231470b5.woff')format("woff");}.ff5_c00365{font-family:ff5_c00365;line-height:1.172852;font-style: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;}
.ls2_c00365{letter-spacing:0.144000px;}
.ls0_c00365{letter-spacing:165.600000px;}
.sc__c00365{text-shadow:none;}
.sc1_c00365{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_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;}
.sc1_c00365{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00365{word-spacing:-32.544000px;}
.ws3_c00365{word-spacing:-0.684000px;}
.ws4_c00365{word-spacing:0.000000px;}
.ws0_c00365{word-spacing:0.144000px;}
.ws1_c00365{word-spacing:1.188000px;}
._1_c00365{margin-left:-3.358080px;}
._2_c00365{margin-left:-2.350656px;}
._0_c00365{margin-left:-1.175328px;}
._3_c00365{width:1.251456px;}
.fc2_c00365{color:rgb(192,0,0);}
.fc1_c00365{color:rgb(0,0,0);}
.fc0_c00365{color:rgb(206,55,54);}
.fs0_c00365{font-size:95.760000px;}
.fs2_c00365{font-size:144.000000px;}
.fs1_c00365{font-size:167.904000px;}
.y0_c00365{bottom:0.000000px;}
.y1_c00365{bottom:63.900000px;}
.y6_c00365{bottom:213.480000px;}
.y5_c00365{bottom:321.330000px;}
.y4_c00365{bottom:375.150000px;}
.y3_c00365{bottom:429.195000px;}
.y2_c00365{bottom:613.950000px;}
.h1_c00365{height:98.426190px;}
.h3_c00365{height:143.226562px;}
.h2_c00365{height:159.869531px;}
.h0_c00365{height:810.000000px;}
.w1_c00365{width:1079.999984px;}
.w0_c00365{width:1080.000000px;}
.x0_c00365{left:0.000000px;}
.x3_c00365{left:66.851984px;}
.x2_c00365{left:321.449984px;}
.x1_c00365{left:992.774984px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls1_c00365{letter-spacing:0.000000pt;}
.ls2_c00365{letter-spacing:0.128000pt;}
.ls0_c00365{letter-spacing:147.200000pt;}
.ws2_c00365{word-spacing:-28.928000pt;}
.ws3_c00365{word-spacing:-0.608000pt;}
.ws4_c00365{word-spacing:0.000000pt;}
.ws0_c00365{word-spacing:0.128000pt;}
.ws1_c00365{word-spacing:1.056000pt;}
._1_c00365{margin-left:-2.984960pt;}
._2_c00365{margin-left:-2.089472pt;}
._0_c00365{margin-left:-1.044736pt;}
._3_c00365{width:1.112405pt;}
.fs0_c00365{font-size:85.120000pt;}
.fs2_c00365{font-size:128.000000pt;}
.fs1_c00365{font-size:149.248000pt;}
.y0_c00365{bottom:0.000000pt;}
.y1_c00365{bottom:56.800000pt;}
.y6_c00365{bottom:189.760000pt;}
.y5_c00365{bottom:285.626667pt;}
.y4_c00365{bottom:333.466667pt;}
.y3_c00365{bottom:381.506667pt;}
.y2_c00365{bottom:545.733333pt;}
.h1_c00365{height:87.489947pt;}
.h3_c00365{height:127.312500pt;}
.h2_c00365{height:142.106250pt;}
.h0_c00365{height:720.000000pt;}
.w1_c00365{width:959.999986pt;}
.w0_c00365{width:960.000000pt;}
.x0_c00365{left:0.000000pt;}
.x3_c00365{left:59.423986pt;}
.x2_c00365{left:285.733319pt;}
.x1_c00365{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2af81af6f8d370f7e93a9159.woff')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.402354;font-style:normal;font-weight:normal;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_1fe398a83942e0216349286b.woff')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.130371;font-style:normal;font-weight:normal;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_ba9099e59c0ec748c30bbbe4.woff')format("woff");}.ff3_c00366{font-family:ff3_c00366;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:ff4_c00366;src:url('chunks/assets/font_5b247d84b9d593dde712a264.woff')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00366;src:url('chunks/assets/font_06a1f4fc9fd7bf3d7d93e1cb.woff')format("woff");}.ff5_c00366{font-family:ff5_c00366;line-height:1.172852;font-style: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;}
.ls6_c00366{letter-spacing:-0.756000px;}
.ls8_c00366{letter-spacing:-0.360000px;}
.ls9_c00366{letter-spacing:-0.182400px;}
.ls5_c00366{letter-spacing:-0.109200px;}
.ls4_c00366{letter-spacing:-0.036000px;}
.ls3_c00366{letter-spacing:0.000000px;}
.ls7_c00366{letter-spacing:0.108000px;}
.ls2_c00366{letter-spacing:0.252000px;}
.lsa_c00366{letter-spacing:0.260400px;}
.ls1_c00366{letter-spacing:97.509600px;}
.ls0_c00366{letter-spacing:97.560000px;}
.sc__c00366{text-shadow:none;}
.sc1_c00366{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_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;}
.sc1_c00366{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00366{word-spacing:-24.440544px;}
.ws3_c00366{word-spacing:-24.408000px;}
.ws5_c00366{word-spacing:-0.348000px;}
.ws8_c00366{word-spacing:0.000000px;}
.ws2_c00366{word-spacing:0.108000px;}
.ws7_c00366{word-spacing:0.168000px;}
.ws0_c00366{word-spacing:0.828000px;}
.ws1_c00366{word-spacing:1.262160px;}
.ws4_c00366{word-spacing:2.412000px;}
._8_c00366{margin-left:-10.046592px;}
._7_c00366{margin-left:-8.971632px;}
._2_c00366{margin-left:-7.555680px;}
._5_c00366{margin-left:-4.618272px;}
._1_c00366{margin-left:-3.190176px;}
._3_c00366{margin-left:-2.182752px;}
._0_c00366{margin-left:-1.175328px;}
._4_c00366{width:1.894176px;}
._6_c00366{width:26.459904px;}
.fc2_c00366{color:rgb(192,0,0);}
.fc1_c00366{color:rgb(0,0,0);}
.fc0_c00366{color:rgb(206,55,54);}
.fs0_c00366{font-size:95.760000px;}
.fs2_c00366{font-size:108.000000px;}
.fs3_c00366{font-size:108.144000px;}
.fs1_c00366{font-size:167.904000px;}
.y0_c00366{bottom:0.000000px;}
.y1_c00366{bottom:63.900000px;}
.ya_c00366{bottom:79.668000px;}
.y9_c00366{bottom:123.804000px;}
.y8_c00366{bottom:212.190000px;}
.y7_c00366{bottom:241.350000px;}
.y6_c00366{bottom:329.580000px;}
.y5_c00366{bottom:373.860000px;}
.y4_c00366{bottom:462.090000px;}
.y3_c00366{bottom:506.370000px;}
.y2_c00366{bottom:613.950000px;}
.h1_c00366{height:98.426190px;}
.h3_c00366{height:107.419922px;}
.h4_c00366{height:107.563148px;}
.h2_c00366{height:159.869531px;}
.h0_c00366{height:810.000000px;}
.w1_c00366{width:1079.999984px;}
.w0_c00366{width:1080.000000px;}
.x0_c00366{left:0.000000px;}
.x3_c00366{left:66.851984px;}
.x4_c00366{left:100.691984px;}
.x2_c00366{left:373.829984px;}
.x1_c00366{left:992.774984px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls6_c00366{letter-spacing:-0.672000pt;}
.ls8_c00366{letter-spacing:-0.320000pt;}
.ls9_c00366{letter-spacing:-0.162133pt;}
.ls5_c00366{letter-spacing:-0.097067pt;}
.ls4_c00366{letter-spacing:-0.032000pt;}
.ls3_c00366{letter-spacing:0.000000pt;}
.ls7_c00366{letter-spacing:0.096000pt;}
.ls2_c00366{letter-spacing:0.224000pt;}
.lsa_c00366{letter-spacing:0.231467pt;}
.ls1_c00366{letter-spacing:86.675200pt;}
.ls0_c00366{letter-spacing:86.720000pt;}
.ws6_c00366{word-spacing:-21.724928pt;}
.ws3_c00366{word-spacing:-21.696000pt;}
.ws5_c00366{word-spacing:-0.309333pt;}
.ws8_c00366{word-spacing:0.000000pt;}
.ws2_c00366{word-spacing:0.096000pt;}
.ws7_c00366{word-spacing:0.149333pt;}
.ws0_c00366{word-spacing:0.736000pt;}
.ws1_c00366{word-spacing:1.121920pt;}
.ws4_c00366{word-spacing:2.144000pt;}
._8_c00366{margin-left:-8.930304pt;}
._7_c00366{margin-left:-7.974784pt;}
._2_c00366{margin-left:-6.716160pt;}
._5_c00366{margin-left:-4.105131pt;}
._1_c00366{margin-left:-2.835712pt;}
._3_c00366{margin-left:-1.940224pt;}
._0_c00366{margin-left:-1.044736pt;}
._4_c00366{width:1.683712pt;}
._6_c00366{width:23.519915pt;}
.fs0_c00366{font-size:85.120000pt;}
.fs2_c00366{font-size:96.000000pt;}
.fs3_c00366{font-size:96.128000pt;}
.fs1_c00366{font-size:149.248000pt;}
.y0_c00366{bottom:0.000000pt;}
.y1_c00366{bottom:56.800000pt;}
.ya_c00366{bottom:70.816000pt;}
.y9_c00366{bottom:110.048000pt;}
.y8_c00366{bottom:188.613333pt;}
.y7_c00366{bottom:214.533333pt;}
.y6_c00366{bottom:292.960000pt;}
.y5_c00366{bottom:332.320000pt;}
.y4_c00366{bottom:410.746667pt;}
.y3_c00366{bottom:450.106667pt;}
.y2_c00366{bottom:545.733333pt;}
.h1_c00366{height:87.489947pt;}
.h3_c00366{height:95.484375pt;}
.h4_c00366{height:95.611688pt;}
.h2_c00366{height:142.106250pt;}
.h0_c00366{height:720.000000pt;}
.w1_c00366{width:959.999986pt;}
.w0_c00366{width:960.000000pt;}
.x0_c00366{left:0.000000pt;}
.x3_c00366{left:59.423986pt;}
.x4_c00366{left:89.503986pt;}
.x2_c00366{left:332.293319pt;}
.x1_c00366{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_523eb32ea7b925f5eae06239.woff')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_c96dad5b9825a13b6cbba265.woff')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.130371;font-style:normal;font-weight:normal;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_c09076485960d7050c1889cb.woff')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.172852;font-style:normal;font-weight:normal;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_c8ffa950b01df2eb523896cb.woff')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:1.172852;font-style:normal;font-weight:normal;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_ba9099e59c0ec748c30bbbe4.woff')format("woff");}.ff5_c00367{font-family:ff5_c00367;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;}
.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;}
.ls3_c00367{letter-spacing:-0.361200px;}
.ls4_c00367{letter-spacing:-0.288000px;}
.ls2_c00367{letter-spacing:0.000000px;}
.ls1_c00367{letter-spacing:111.681600px;}
.ls0_c00367{letter-spacing:111.732000px;}
.sc__c00367{text-shadow:none;}
.sc1_c00367{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_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;}
.sc1_c00367{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00367{word-spacing:0.000000px;}
.ws1_c00367{word-spacing:75.024000px;}
.ws0_c00367{word-spacing:75.101760px;}
._2_c00367{margin-left:-4.029696px;}
._1_c00367{margin-left:-2.518560px;}
._0_c00367{margin-left:-1.007424px;}
._3_c00367{width:1.078560px;}
.fc2_c00367{color:rgb(192,0,0);}
.fc1_c00367{color:rgb(0,0,0);}
.fc0_c00367{color:rgb(206,55,54);}
.fs0_c00367{font-size:95.760000px;}
.fs3_c00367{font-size:144.000000px;}
.fs2_c00367{font-size:144.144000px;}
.fs1_c00367{font-size:167.904000px;}
.y0_c00367{bottom:0.000000px;}
.y1_c00367{bottom:63.900000px;}
.y9_c00367{bottom:117.432000px;}
.y8_c00367{bottom:156.345000px;}
.y7_c00367{bottom:202.785000px;}
.y6_c00367{bottom:295.485000px;}
.y5_c00367{bottom:341.970000px;}
.y4_c00367{bottom:434.670000px;}
.y3_c00367{bottom:481.140000px;}
.y2_c00367{bottom:613.950000px;}
.h1_c00367{height:98.426190px;}
.h4_c00367{height:143.226562px;}
.h3_c00367{height:143.369789px;}
.h2_c00367{height:159.869531px;}
.h0_c00367{height:810.000000px;}
.w1_c00367{width:1079.999984px;}
.w0_c00367{width:1080.000000px;}
.x0_c00367{left:0.000000px;}
.x3_c00367{left:66.851984px;}
.x4_c00367{left:120.851984px;}
.x5_c00367{left:161.384984px;}
.x2_c00367{left:367.889984px;}
.x1_c00367{left:992.774984px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls3_c00367{letter-spacing:-0.321067pt;}
.ls4_c00367{letter-spacing:-0.256000pt;}
.ls2_c00367{letter-spacing:0.000000pt;}
.ls1_c00367{letter-spacing:99.272533pt;}
.ls0_c00367{letter-spacing:99.317333pt;}
.ws2_c00367{word-spacing:0.000000pt;}
.ws1_c00367{word-spacing:66.688000pt;}
.ws0_c00367{word-spacing:66.757120pt;}
._2_c00367{margin-left:-3.581952pt;}
._1_c00367{margin-left:-2.238720pt;}
._0_c00367{margin-left:-0.895488pt;}
._3_c00367{width:0.958720pt;}
.fs0_c00367{font-size:85.120000pt;}
.fs3_c00367{font-size:128.000000pt;}
.fs2_c00367{font-size:128.128000pt;}
.fs1_c00367{font-size:149.248000pt;}
.y0_c00367{bottom:0.000000pt;}
.y1_c00367{bottom:56.800000pt;}
.y9_c00367{bottom:104.384000pt;}
.y8_c00367{bottom:138.973333pt;}
.y7_c00367{bottom:180.253333pt;}
.y6_c00367{bottom:262.653333pt;}
.y5_c00367{bottom:303.973333pt;}
.y4_c00367{bottom:386.373333pt;}
.y3_c00367{bottom:427.680000pt;}
.y2_c00367{bottom:545.733333pt;}
.h1_c00367{height:87.489947pt;}
.h4_c00367{height:127.312500pt;}
.h3_c00367{height:127.439813pt;}
.h2_c00367{height:142.106250pt;}
.h0_c00367{height:720.000000pt;}
.w1_c00367{width:959.999986pt;}
.w0_c00367{width:960.000000pt;}
.x0_c00367{left:0.000000pt;}
.x3_c00367{left:59.423986pt;}
.x4_c00367{left:107.423986pt;}
.x5_c00367{left:143.453319pt;}
.x2_c00367{left:327.013319pt;}
.x1_c00367{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9c798a0a7d007095660835b.woff')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.402354;font-style:normal;font-weight:normal;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_7ed21aac4393d6bc15403fc2.woff')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.130371;font-style:normal;font-weight:normal;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_f221629d5dc529fa084fa3ab.woff')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.130371;font-style:normal;font-weight:normal;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_ec84a083684823d5f6c8dbc3.woff')format("woff");}.ff4_c00368{font-family:ff4_c00368;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:ff5_c00368;src:url('chunks/assets/font_fa3df6f3432a4b2e45004785.woff')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00368;src:url('chunks/assets/font_f780fce60b97d68b36c82f98.woff')format("woff");}.ff6_c00368{font-family:ff6_c00368;line-height:1.149414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00368;src:url('chunks/assets/font_0dc0cb856c56046852466f11.woff')format("woff");}.ff7_c00368{font-family:ff7_c00368;line-height:1.172852;font-style: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;}
.lsb_c00368{letter-spacing:-0.097200px;}
.ls9_c00368{letter-spacing:-0.036000px;}
.ls7_c00368{letter-spacing:0.000000px;}
.ls8_c00368{letter-spacing:0.005040px;}
.lsa_c00368{letter-spacing:0.165600px;}
.lsd_c00368{letter-spacing:0.238200px;}
.lsc_c00368{letter-spacing:0.387600px;}
.ls0_c00368{letter-spacing:17.856000px;}
.ls4_c00368{letter-spacing:31.968000px;}
.ls5_c00368{letter-spacing:32.616288px;}
.ls2_c00368{letter-spacing:111.549600px;}
.ls3_c00368{letter-spacing:111.600000px;}
.ls6_c00368{letter-spacing:119.865600px;}
.ls1_c00368{letter-spacing:119.916000px;}
.sc__c00368{text-shadow:none;}
.sc1_c00368{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_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;}
.sc1_c00368{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00368{word-spacing:-32.576544px;}
.ws2_c00368{word-spacing:-32.544000px;}
.ws1_c00368{word-spacing:-27.174240px;}
.ws5_c00368{word-spacing:-0.078480px;}
.ws6_c00368{word-spacing:0.000000px;}
.ws3_c00368{word-spacing:0.144000px;}
.ws0_c00368{word-spacing:0.245280px;}
._6_c00368{margin-left:-11.808000px;}
._7_c00368{margin-left:-9.292416px;}
._5_c00368{margin-left:-7.474320px;}
._3_c00368{margin-left:-5.980560px;}
._2_c00368{margin-left:-4.026240px;}
._1_c00368{margin-left:-2.348640px;}
._0_c00368{margin-left:-1.006560px;}
._4_c00368{width:1.698960px;}
._8_c00368{width:25.778640px;}
.fc2_c00368{color:rgb(192,0,0);}
.fc1_c00368{color:rgb(0,0,0);}
.fc0_c00368{color:rgb(206,55,54);}
.fs0_c00368{font-size:95.760000px;}
.fs3_c00368{font-size:120.240000px;}
.fs5_c00368{font-size:120.384000px;}
.fs4_c00368{font-size:144.000000px;}
.fs2_c00368{font-size:144.144000px;}
.fs1_c00368{font-size:167.760000px;}
.y0_c00368{bottom:0.000000px;}
.y1_c00368{bottom:63.900000px;}
.yd_c00368{bottom:106.308000px;}
.y19_c00368{bottom:110.088000px;}
.yc_c00368{bottom:145.224000px;}
.y18_c00368{bottom:150.450000px;}
.y17_c00368{bottom:190.590000px;}
.yb_c00368{bottom:199.230000px;}
.y16_c00368{bottom:230.730000px;}
.ya_c00368{bottom:238.110000px;}
.y15_c00368{bottom:271.050000px;}
.y9_c00368{bottom:291.930000px;}
.y14_c00368{bottom:311.220000px;}
.y8_c00368{bottom:330.840000px;}
.y13_c00368{bottom:351.360000px;}
.y12_c00368{bottom:376.560000px;}
.y7_c00368{bottom:383.220000px;}
.y11_c00368{bottom:416.880000px;}
.y6_c00368{bottom:423.000000px;}
.y10_c00368{bottom:442.080000px;}
.y5_c00368{bottom:455.400000px;}
.yf_c00368{bottom:482.250000px;}
.y4_c00368{bottom:497.010000px;}
.ye_c00368{bottom:507.450000px;}
.y3_c00368{bottom:592.200000px;}
.y2_c00368{bottom:632.700000px;}
.h1_c00368{height:98.426190px;}
.h5_c00368{height:119.594180px;}
.h8_c00368{height:119.737406px;}
.ha_c00368{height:123.116836px;}
.h9_c00368{height:123.264281px;}
.h3_c00368{height:137.246484px;}
.h7_c00368{height:143.226562px;}
.h6_c00368{height:143.369789px;}
.h4_c00368{height:147.592758px;}
.h2_c00368{height:159.732422px;}
.h0_c00368{height:810.000000px;}
.w1_c00368{width:1079.999984px;}
.w0_c00368{width:1080.000000px;}
.x0_c00368{left:0.000000px;}
.x8_c00368{left:73.079984px;}
.xa_c00368{left:106.739984px;}
.x9_c00368{left:113.579984px;}
.x2_c00368{left:221.834984px;}
.x3_c00368{left:298.004984px;}
.x4_c00368{left:573.299984px;}
.x7_c00368{left:613.799984px;}
.x5_c00368{left:627.299984px;}
.x6_c00368{left:667.799984px;}
.x1_c00368{left:992.774984px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.lsb_c00368{letter-spacing:-0.086400pt;}
.ls9_c00368{letter-spacing:-0.032000pt;}
.ls7_c00368{letter-spacing:0.000000pt;}
.ls8_c00368{letter-spacing:0.004480pt;}
.lsa_c00368{letter-spacing:0.147200pt;}
.lsd_c00368{letter-spacing:0.211733pt;}
.lsc_c00368{letter-spacing:0.344533pt;}
.ls0_c00368{letter-spacing:15.872000pt;}
.ls4_c00368{letter-spacing:28.416000pt;}
.ls5_c00368{letter-spacing:28.992256pt;}
.ls2_c00368{letter-spacing:99.155200pt;}
.ls3_c00368{letter-spacing:99.200000pt;}
.ls6_c00368{letter-spacing:106.547200pt;}
.ls1_c00368{letter-spacing:106.592000pt;}
.ws4_c00368{word-spacing:-28.956928pt;}
.ws2_c00368{word-spacing:-28.928000pt;}
.ws1_c00368{word-spacing:-24.154880pt;}
.ws5_c00368{word-spacing:-0.069760pt;}
.ws6_c00368{word-spacing:0.000000pt;}
.ws3_c00368{word-spacing:0.128000pt;}
.ws0_c00368{word-spacing:0.218027pt;}
._6_c00368{margin-left:-10.496000pt;}
._7_c00368{margin-left:-8.259925pt;}
._5_c00368{margin-left:-6.643840pt;}
._3_c00368{margin-left:-5.316053pt;}
._2_c00368{margin-left:-3.578880pt;}
._1_c00368{margin-left:-2.087680pt;}
._0_c00368{margin-left:-0.894720pt;}
._4_c00368{width:1.510187pt;}
._8_c00368{width:22.914347pt;}
.fs0_c00368{font-size:85.120000pt;}
.fs3_c00368{font-size:106.880000pt;}
.fs5_c00368{font-size:107.008000pt;}
.fs4_c00368{font-size:128.000000pt;}
.fs2_c00368{font-size:128.128000pt;}
.fs1_c00368{font-size:149.120000pt;}
.y0_c00368{bottom:0.000000pt;}
.y1_c00368{bottom:56.800000pt;}
.yd_c00368{bottom:94.496000pt;}
.y19_c00368{bottom:97.856000pt;}
.yc_c00368{bottom:129.088000pt;}
.y18_c00368{bottom:133.733333pt;}
.y17_c00368{bottom:169.413333pt;}
.yb_c00368{bottom:177.093333pt;}
.y16_c00368{bottom:205.093333pt;}
.ya_c00368{bottom:211.653333pt;}
.y15_c00368{bottom:240.933333pt;}
.y9_c00368{bottom:259.493333pt;}
.y14_c00368{bottom:276.640000pt;}
.y8_c00368{bottom:294.080000pt;}
.y13_c00368{bottom:312.320000pt;}
.y12_c00368{bottom:334.720000pt;}
.y7_c00368{bottom:340.640000pt;}
.y11_c00368{bottom:370.560000pt;}
.y6_c00368{bottom:376.000000pt;}
.y10_c00368{bottom:392.960000pt;}
.y5_c00368{bottom:404.800000pt;}
.yf_c00368{bottom:428.666667pt;}
.y4_c00368{bottom:441.786667pt;}
.ye_c00368{bottom:451.066667pt;}
.y3_c00368{bottom:526.400000pt;}
.y2_c00368{bottom:562.400000pt;}
.h1_c00368{height:87.489947pt;}
.h5_c00368{height:106.305937pt;}
.h8_c00368{height:106.433250pt;}
.ha_c00368{height:109.437187pt;}
.h9_c00368{height:109.568250pt;}
.h3_c00368{height:121.996875pt;}
.h7_c00368{height:127.312500pt;}
.h6_c00368{height:127.439813pt;}
.h4_c00368{height:131.193562pt;}
.h2_c00368{height:141.984375pt;}
.h0_c00368{height:720.000000pt;}
.w1_c00368{width:959.999986pt;}
.w0_c00368{width:960.000000pt;}
.x0_c00368{left:0.000000pt;}
.x8_c00368{left:64.959986pt;}
.xa_c00368{left:94.879986pt;}
.x9_c00368{left:100.959986pt;}
.x2_c00368{left:197.186652pt;}
.x3_c00368{left:264.893319pt;}
.x4_c00368{left:509.599986pt;}
.x7_c00368{left:545.599986pt;}
.x5_c00368{left:557.599986pt;}
.x6_c00368{left:593.599986pt;}
.x1_c00368{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ac7c6efaffef1c2e369893b.woff')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.402354;font-style: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;}
.ls0_c00369{letter-spacing:0.000000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00369{word-spacing:0.000000px;}
.fc0_c00369{color:rgb(206,55,54);}
.fs0_c00369{font-size:95.760000px;}
.y0_c00369{bottom:0.000000px;}
.y1_c00369{bottom:63.900000px;}
.h1_c00369{height:98.426190px;}
.h0_c00369{height:810.000000px;}
.w1_c00369{width:1079.999984px;}
.w0_c00369{width:1080.000000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:992.774984px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ws0_c00369{word-spacing:0.000000pt;}
.fs0_c00369{font-size:85.120000pt;}
.y0_c00369{bottom:0.000000pt;}
.y1_c00369{bottom:56.800000pt;}
.h1_c00369{height:87.489947pt;}
.h0_c00369{height:720.000000pt;}
.w1_c00369{width:959.999986pt;}
.w0_c00369{width:960.000000pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e444807231e3aaec95ce9b2.woff')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.402354;font-style: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:0.000000px;}
.fc1_c00370{color:transparent;}
.fc0_c00370{color:rgb(206,55,54);}
.fs0_c00370{font-size:95.760000px;}
.y0_c00370{bottom:0.000000px;}
.y1_c00370{bottom:63.900000px;}
.h1_c00370{height:98.426190px;}
.h0_c00370{height:810.000000px;}
.w1_c00370{width:1079.999984px;}
.w0_c00370{width:1080.000000px;}
.x0_c00370{left:0.000000px;}
.x1_c00370{left:992.774984px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.ws0_c00370{word-spacing:0.000000pt;}
.fs0_c00370{font-size:85.120000pt;}
.y0_c00370{bottom:0.000000pt;}
.y1_c00370{bottom:56.800000pt;}
.h1_c00370{height:87.489947pt;}
.h0_c00370{height:720.000000pt;}
.w1_c00370{width:959.999986pt;}
.w0_c00370{width:960.000000pt;}
.x0_c00370{left:0.000000pt;}
.x1_c00370{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55f6e2381dc281b3892e500d.woff')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.402354;font-style:normal;font-weight:normal;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_d5fefa6fc9f1916c9de612dd.woff')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.130371;font-style:normal;font-weight:normal;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_ec84a083684823d5f6c8dbc3.woff')format("woff");}.ff3_c00371{font-family:ff3_c00371;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:ff4_c00371;src:url('chunks/assets/font_1c9a36e5600623ebd2f94094.woff')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00371;src:url('chunks/assets/font_f7f1eedd95d297e082d350f1.woff')format("woff");}.ff5_c00371{font-family:ff5_c00371;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00371;src:url('chunks/assets/font_34b44c7f95f6b443cf92a365.woff')format("woff");}.ff6_c00371{font-family:ff6_c00371;line-height:1.149414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls6_c00371{letter-spacing:0.000000px;}
.lsa_c00371{letter-spacing:0.157800px;}
.ls2_c00371{letter-spacing:0.238200px;}
.ls9_c00371{letter-spacing:0.301800px;}
.ls8_c00371{letter-spacing:0.309600px;}
.ls7_c00371{letter-spacing:0.382200px;}
.ls0_c00371{letter-spacing:30.096000px;}
.ls5_c00371{letter-spacing:115.833600px;}
.ls4_c00371{letter-spacing:115.884000px;}
.ls3_c00371{letter-spacing:119.865600px;}
.ls1_c00371{letter-spacing:119.916000px;}
.sc__c00371{text-shadow:none;}
.sc1_c00371{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_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;}
.sc1_c00371{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00371{word-spacing:-29.810304px;}
.ws6_c00371{word-spacing:-29.777760px;}
.ws5_c00371{word-spacing:-27.206784px;}
.ws2_c00371{word-spacing:-27.174240px;}
.ws1_c00371{word-spacing:-2.211960px;}
.ws3_c00371{word-spacing:-1.804200px;}
.ws4_c00371{word-spacing:-1.764960px;}
.ws7_c00371{word-spacing:0.000000px;}
._2_c00371{margin-left:-4.697280px;}
._3_c00371{margin-left:-3.355200px;}
._0_c00371{margin-left:-2.013120px;}
._1_c00371{margin-left:-1.006560px;}
._4_c00371{width:1.200720px;}
.fc2_c00371{color:rgb(192,0,0);}
.fc1_c00371{color:rgb(0,0,0);}
.fc0_c00371{color:rgb(206,55,54);}
.fs0_c00371{font-size:95.760000px;}
.fs3_c00371{font-size:120.240000px;}
.fs4_c00371{font-size:120.384000px;}
.fs5_c00371{font-size:131.760000px;}
.fs2_c00371{font-size:131.904000px;}
.fs1_c00371{font-size:167.760000px;}
.y0_c00371{bottom:0.000000px;}
.y1_c00371{bottom:63.900000px;}
.y14_c00371{bottom:154.110000px;}
.yb_c00371{bottom:170.310000px;}
.y13_c00371{bottom:189.750000px;}
.ya_c00371{bottom:220.935000px;}
.y12_c00371{bottom:240.375000px;}
.y9_c00371{bottom:256.575000px;}
.y11_c00371{bottom:276.015000px;}
.y8_c00371{bottom:292.215000px;}
.y10_c00371{bottom:311.655000px;}
.yf_c00371{bottom:362.445000px;}
.y7_c00371{bottom:374.505000px;}
.ye_c00371{bottom:398.085000px;}
.y6_c00371{bottom:414.465000px;}
.yd_c00371{bottom:448.665000px;}
.y5_c00371{bottom:454.425000px;}
.yc_c00371{bottom:484.305000px;}
.y4_c00371{bottom:494.205000px;}
.y3_c00371{bottom:534.930000px;}
.y2_c00371{bottom:632.700000px;}
.h1_c00371{height:98.426190px;}
.h4_c00371{height:119.594180px;}
.h6_c00371{height:119.737406px;}
.h5_c00371{height:123.116836px;}
.h7_c00371{height:131.052305px;}
.h3_c00371{height:131.195531px;}
.h8_c00371{height:134.912461px;}
.h2_c00371{height:159.732422px;}
.h0_c00371{height:810.000000px;}
.w1_c00371{width:1079.999984px;}
.w0_c00371{width:1080.000000px;}
.x0_c00371{left:0.000000px;}
.x6_c00371{left:73.079984px;}
.x7_c00371{left:113.579984px;}
.x2_c00371{left:165.314984px;}
.x3_c00371{left:573.299984px;}
.x5_c00371{left:613.799984px;}
.x4_c00371{left:627.299984px;}
.x1_c00371{left:992.774984px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls6_c00371{letter-spacing:0.000000pt;}
.lsa_c00371{letter-spacing:0.140267pt;}
.ls2_c00371{letter-spacing:0.211733pt;}
.ls9_c00371{letter-spacing:0.268267pt;}
.ls8_c00371{letter-spacing:0.275200pt;}
.ls7_c00371{letter-spacing:0.339733pt;}
.ls0_c00371{letter-spacing:26.752000pt;}
.ls5_c00371{letter-spacing:102.963200pt;}
.ls4_c00371{letter-spacing:103.008000pt;}
.ls3_c00371{letter-spacing:106.547200pt;}
.ls1_c00371{letter-spacing:106.592000pt;}
.ws0_c00371{word-spacing:-26.498048pt;}
.ws6_c00371{word-spacing:-26.469120pt;}
.ws5_c00371{word-spacing:-24.183808pt;}
.ws2_c00371{word-spacing:-24.154880pt;}
.ws1_c00371{word-spacing:-1.966187pt;}
.ws3_c00371{word-spacing:-1.603733pt;}
.ws4_c00371{word-spacing:-1.568853pt;}
.ws7_c00371{word-spacing:0.000000pt;}
._2_c00371{margin-left:-4.175360pt;}
._3_c00371{margin-left:-2.982400pt;}
._0_c00371{margin-left:-1.789440pt;}
._1_c00371{margin-left:-0.894720pt;}
._4_c00371{width:1.067307pt;}
.fs0_c00371{font-size:85.120000pt;}
.fs3_c00371{font-size:106.880000pt;}
.fs4_c00371{font-size:107.008000pt;}
.fs5_c00371{font-size:117.120000pt;}
.fs2_c00371{font-size:117.248000pt;}
.fs1_c00371{font-size:149.120000pt;}
.y0_c00371{bottom:0.000000pt;}
.y1_c00371{bottom:56.800000pt;}
.y14_c00371{bottom:136.986667pt;}
.yb_c00371{bottom:151.386667pt;}
.y13_c00371{bottom:168.666667pt;}
.ya_c00371{bottom:196.386667pt;}
.y12_c00371{bottom:213.666667pt;}
.y9_c00371{bottom:228.066667pt;}
.y11_c00371{bottom:245.346667pt;}
.y8_c00371{bottom:259.746667pt;}
.y10_c00371{bottom:277.026667pt;}
.yf_c00371{bottom:322.173333pt;}
.y7_c00371{bottom:332.893333pt;}
.ye_c00371{bottom:353.853333pt;}
.y6_c00371{bottom:368.413333pt;}
.yd_c00371{bottom:398.813333pt;}
.y5_c00371{bottom:403.933333pt;}
.yc_c00371{bottom:430.493333pt;}
.y4_c00371{bottom:439.293333pt;}
.y3_c00371{bottom:475.493333pt;}
.y2_c00371{bottom:562.400000pt;}
.h1_c00371{height:87.489947pt;}
.h4_c00371{height:106.305937pt;}
.h6_c00371{height:106.433250pt;}
.h5_c00371{height:109.437187pt;}
.h7_c00371{height:116.490937pt;}
.h3_c00371{height:116.618250pt;}
.h8_c00371{height:119.922187pt;}
.h2_c00371{height:141.984375pt;}
.h0_c00371{height:720.000000pt;}
.w1_c00371{width:959.999986pt;}
.w0_c00371{width:960.000000pt;}
.x0_c00371{left:0.000000pt;}
.x6_c00371{left:64.959986pt;}
.x7_c00371{left:100.959986pt;}
.x2_c00371{left:146.946652pt;}
.x3_c00371{left:509.599986pt;}
.x5_c00371{left:545.599986pt;}
.x4_c00371{left:557.599986pt;}
.x1_c00371{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7bd29f22ebb9bbae68549598.woff')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.402354;font-style:normal;font-weight:normal;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_2d09ebbe714b85989f1747bf.woff')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.130371;font-style:normal;font-weight:normal;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_8b3a2a69ebac7903c2a3928c.woff')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00372;src:url('chunks/assets/font_a0f83e6da697854f68cbaac4.woff')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00372;src:url('chunks/assets/font_ec84a083684823d5f6c8dbc3.woff')format("woff");}.ff5_c00372{font-family:ff5_c00372;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:ff6_c00372;src:url('chunks/assets/font_ec808f1321d0b747b4211df6.woff')format("woff");}.ff6_c00372{font-family:ff6_c00372;line-height:1.149414;font-style: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;}
.ls11_c00372{letter-spacing:-0.036000px;}
.lsd_c00372{letter-spacing:0.000000px;}
.lse_c00372{letter-spacing:0.005040px;}
.lsc_c00372{letter-spacing:0.037440px;}
.lsf_c00372{letter-spacing:0.165600px;}
.ls10_c00372{letter-spacing:0.216000px;}
.ls0_c00372{letter-spacing:0.238200px;}
.ls5_c00372{letter-spacing:0.309600px;}
.ls3_c00372{letter-spacing:14.988000px;}
.ls7_c00372{letter-spacing:15.132000px;}
.lsb_c00372{letter-spacing:24.624288px;}
.ls4_c00372{letter-spacing:26.448768px;}
.ls9_c00372{letter-spacing:26.566560px;}
.ls6_c00372{letter-spacing:27.168768px;}
.ls8_c00372{letter-spacing:27.240480px;}
.ls2_c00372{letter-spacing:27.286560px;}
.lsa_c00372{letter-spacing:27.348768px;}
.ls1_c00372{letter-spacing:93.276000px;}
.sc__c00372{text-shadow:none;}
.sc1_c00372{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_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;}
.sc1_c00372{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00372{word-spacing:-27.174240px;}
.ws5_c00372{word-spacing:-24.408000px;}
.ws2_c00372{word-spacing:-1.849248px;}
.ws3_c00372{word-spacing:-1.492200px;}
.ws6_c00372{word-spacing:0.000000px;}
.ws4_c00372{word-spacing:0.828000px;}
.ws0_c00372{word-spacing:0.969120px;}
._3_c00372{margin-left:-7.219872px;}
._6_c00372{margin-left:-5.898816px;}
._0_c00372{margin-left:-4.701312px;}
._4_c00372{margin-left:-3.358080px;}
._2_c00372{margin-left:-2.350656px;}
._1_c00372{margin-left:-1.007424px;}
._7_c00372{width:1.299216px;}
._5_c00372{width:25.366272px;}
.fc2_c00372{color:rgb(192,0,0);}
.fc3_c00372{color:rgb(127,127,127);}
.fc1_c00372{color:rgb(0,0,0);}
.fc0_c00372{color:rgb(206,55,54);}
.fs5_c00372{font-size:84.384000px;}
.fs0_c00372{font-size:95.760000px;}
.fs6_c00372{font-size:108.000000px;}
.fs4_c00372{font-size:108.144000px;}
.fs2_c00372{font-size:120.240000px;}
.fs3_c00372{font-size:120.384000px;}
.fs1_c00372{font-size:167.904000px;}
.fs7_c00372{font-size:288.000000px;}
.y0_c00372{bottom:0.000000px;}
.yd_c00372{bottom:34.848000px;}
.y1_c00372{bottom:63.900000px;}
.yc_c00372{bottom:110.088000px;}
.yb_c00372{bottom:157.425000px;}
.ya_c00372{bottom:197.430000px;}
.y9_c00372{bottom:237.390000px;}
.y8_c00372{bottom:277.170000px;}
.y7_c00372{bottom:317.130000px;}
.y6_c00372{bottom:357.120000px;}
.y5_c00372{bottom:396.900000px;}
.yf_c00372{bottom:410.790000px;}
.ye_c00372{bottom:425.775000px;}
.y4_c00372{bottom:444.420000px;}
.y3_c00372{bottom:491.760000px;}
.y2_c00372{bottom:613.950000px;}
.h1_c00372{height:98.426190px;}
.h6_c00372{height:107.563148px;}
.h7_c00372{height:110.583984px;}
.h3_c00372{height:119.594180px;}
.h4_c00372{height:123.116836px;}
.h5_c00372{height:123.264281px;}
.h2_c00372{height:159.869531px;}
.h8_c00372{height:286.453125px;}
.h0_c00372{height:810.000000px;}
.w1_c00372{width:1079.999984px;}
.w0_c00372{width:1080.000000px;}
.x0_c00372{left:0.000000px;}
.x3_c00372{left:66.851984px;}
.x4_c00372{left:120.851984px;}
.x2_c00372{left:239.684984px;}
.x6_c00372{left:307.109984px;}
.x5_c00372{left:346.319984px;}
.x1_c00372{left:992.774984px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls11_c00372{letter-spacing:-0.032000pt;}
.lsd_c00372{letter-spacing:0.000000pt;}
.lse_c00372{letter-spacing:0.004480pt;}
.lsc_c00372{letter-spacing:0.033280pt;}
.lsf_c00372{letter-spacing:0.147200pt;}
.ls10_c00372{letter-spacing:0.192000pt;}
.ls0_c00372{letter-spacing:0.211733pt;}
.ls5_c00372{letter-spacing:0.275200pt;}
.ls3_c00372{letter-spacing:13.322667pt;}
.ls7_c00372{letter-spacing:13.450667pt;}
.lsb_c00372{letter-spacing:21.888256pt;}
.ls4_c00372{letter-spacing:23.510016pt;}
.ls9_c00372{letter-spacing:23.614720pt;}
.ls6_c00372{letter-spacing:24.150016pt;}
.ls8_c00372{letter-spacing:24.213760pt;}
.ls2_c00372{letter-spacing:24.254720pt;}
.lsa_c00372{letter-spacing:24.310016pt;}
.ls1_c00372{letter-spacing:82.912000pt;}
.ws1_c00372{word-spacing:-24.154880pt;}
.ws5_c00372{word-spacing:-21.696000pt;}
.ws2_c00372{word-spacing:-1.643776pt;}
.ws3_c00372{word-spacing:-1.326400pt;}
.ws6_c00372{word-spacing:0.000000pt;}
.ws4_c00372{word-spacing:0.736000pt;}
.ws0_c00372{word-spacing:0.861440pt;}
._3_c00372{margin-left:-6.417664pt;}
._6_c00372{margin-left:-5.243392pt;}
._0_c00372{margin-left:-4.178944pt;}
._4_c00372{margin-left:-2.984960pt;}
._2_c00372{margin-left:-2.089472pt;}
._1_c00372{margin-left:-0.895488pt;}
._7_c00372{width:1.154859pt;}
._5_c00372{width:22.547797pt;}
.fs5_c00372{font-size:75.008000pt;}
.fs0_c00372{font-size:85.120000pt;}
.fs6_c00372{font-size:96.000000pt;}
.fs4_c00372{font-size:96.128000pt;}
.fs2_c00372{font-size:106.880000pt;}
.fs3_c00372{font-size:107.008000pt;}
.fs1_c00372{font-size:149.248000pt;}
.fs7_c00372{font-size:256.000000pt;}
.y0_c00372{bottom:0.000000pt;}
.yd_c00372{bottom:30.976000pt;}
.y1_c00372{bottom:56.800000pt;}
.yc_c00372{bottom:97.856000pt;}
.yb_c00372{bottom:139.933333pt;}
.ya_c00372{bottom:175.493333pt;}
.y9_c00372{bottom:211.013333pt;}
.y8_c00372{bottom:246.373333pt;}
.y7_c00372{bottom:281.893333pt;}
.y6_c00372{bottom:317.440000pt;}
.y5_c00372{bottom:352.800000pt;}
.yf_c00372{bottom:365.146667pt;}
.ye_c00372{bottom:378.466667pt;}
.y4_c00372{bottom:395.040000pt;}
.y3_c00372{bottom:437.120000pt;}
.y2_c00372{bottom:545.733333pt;}
.h1_c00372{height:87.489947pt;}
.h6_c00372{height:95.611688pt;}
.h7_c00372{height:98.296875pt;}
.h3_c00372{height:106.305937pt;}
.h4_c00372{height:109.437187pt;}
.h5_c00372{height:109.568250pt;}
.h2_c00372{height:142.106250pt;}
.h8_c00372{height:254.625000pt;}
.h0_c00372{height:720.000000pt;}
.w1_c00372{width:959.999986pt;}
.w0_c00372{width:960.000000pt;}
.x0_c00372{left:0.000000pt;}
.x3_c00372{left:59.423986pt;}
.x4_c00372{left:107.423986pt;}
.x2_c00372{left:213.053319pt;}
.x6_c00372{left:272.986652pt;}
.x5_c00372{left:307.839986pt;}
.x1_c00372{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98180b336a25fdd04fb4d629.woff')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.402354;font-style: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;}
.ls0_c00373{letter-spacing:-7.140000px;}
.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:0.000000px;}
.fc1_c00373{color:transparent;}
.fc0_c00373{color:rgb(206,55,54);}
.fs0_c00373{font-size:95.760000px;}
.y0_c00373{bottom:0.000000px;}
.y1_c00373{bottom:63.900000px;}
.h1_c00373{height:98.426190px;}
.h0_c00373{height:810.000000px;}
.w1_c00373{width:1079.999984px;}
.w0_c00373{width:1080.000000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:992.774984px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls0_c00373{letter-spacing:-6.346667pt;}
.ws0_c00373{word-spacing:0.000000pt;}
.fs0_c00373{font-size:85.120000pt;}
.y0_c00373{bottom:0.000000pt;}
.y1_c00373{bottom:56.800000pt;}
.h1_c00373{height:87.489947pt;}
.h0_c00373{height:720.000000pt;}
.w1_c00373{width:959.999986pt;}
.w0_c00373{width:960.000000pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a5ca529230162d3e9d4d5bb.woff')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.402354;font-style: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;}
.ls0_c00374{letter-spacing:0.037440px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00374{word-spacing:0.000000px;}
.fc1_c00374{color:transparent;}
.fc0_c00374{color:rgb(206,55,54);}
.fs0_c00374{font-size:95.760000px;}
.y0_c00374{bottom:0.000000px;}
.y1_c00374{bottom:63.900000px;}
.h1_c00374{height:98.426190px;}
.h0_c00374{height:810.000000px;}
.w1_c00374{width:1079.999984px;}
.w0_c00374{width:1080.000000px;}
.x0_c00374{left:0.000000px;}
.x1_c00374{left:992.774984px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls0_c00374{letter-spacing:0.033280pt;}
.ws0_c00374{word-spacing:0.000000pt;}
.fs0_c00374{font-size:85.120000pt;}
.y0_c00374{bottom:0.000000pt;}
.y1_c00374{bottom:56.800000pt;}
.h1_c00374{height:87.489947pt;}
.h0_c00374{height:720.000000pt;}
.w1_c00374{width:959.999986pt;}
.w0_c00374{width:960.000000pt;}
.x0_c00374{left:0.000000pt;}
.x1_c00374{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a20fc859eff0d795ebe31257.woff')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.402354;font-style: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;}
.ls0_c00375{letter-spacing:0.037440px;}
.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:0.000000px;}
.fc1_c00375{color:transparent;}
.fc0_c00375{color:rgb(206,55,54);}
.fs0_c00375{font-size:95.760000px;}
.y0_c00375{bottom:0.000000px;}
.y1_c00375{bottom:63.900000px;}
.h1_c00375{height:98.426190px;}
.h0_c00375{height:810.000000px;}
.w1_c00375{width:1079.999984px;}
.w0_c00375{width:1080.000000px;}
.x0_c00375{left:0.000000px;}
.x1_c00375{left:992.774984px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls0_c00375{letter-spacing:0.033280pt;}
.ws0_c00375{word-spacing:0.000000pt;}
.fs0_c00375{font-size:85.120000pt;}
.y0_c00375{bottom:0.000000pt;}
.y1_c00375{bottom:56.800000pt;}
.h1_c00375{height:87.489947pt;}
.h0_c00375{height:720.000000pt;}
.w1_c00375{width:959.999986pt;}
.w0_c00375{width:960.000000pt;}
.x0_c00375{left:0.000000pt;}
.x1_c00375{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e24111e496e911c109b660e0.woff')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.402354;font-style: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;}
.ls0_c00376{letter-spacing:0.037440px;}
.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:0.000000px;}
.fc1_c00376{color:transparent;}
.fc0_c00376{color:rgb(206,55,54);}
.fs0_c00376{font-size:95.760000px;}
.y0_c00376{bottom:0.000000px;}
.y1_c00376{bottom:63.900000px;}
.h1_c00376{height:98.426190px;}
.h0_c00376{height:810.000000px;}
.w1_c00376{width:1079.999984px;}
.w0_c00376{width:1080.000000px;}
.x0_c00376{left:0.000000px;}
.x1_c00376{left:992.774984px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls0_c00376{letter-spacing:0.033280pt;}
.ws0_c00376{word-spacing:0.000000pt;}
.fs0_c00376{font-size:85.120000pt;}
.y0_c00376{bottom:0.000000pt;}
.y1_c00376{bottom:56.800000pt;}
.h1_c00376{height:87.489947pt;}
.h0_c00376{height:720.000000pt;}
.w1_c00376{width:959.999986pt;}
.w0_c00376{width:960.000000pt;}
.x0_c00376{left:0.000000pt;}
.x1_c00376{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00a205ee85dab6b37f400018.woff')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.402354;font-style: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;}
.ls0_c00377{letter-spacing:0.037440px;}
.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:0.000000px;}
.fc1_c00377{color:transparent;}
.fc0_c00377{color:rgb(206,55,54);}
.fs0_c00377{font-size:95.760000px;}
.y0_c00377{bottom:0.000000px;}
.y1_c00377{bottom:63.900000px;}
.h1_c00377{height:98.426190px;}
.h0_c00377{height:810.000000px;}
.w1_c00377{width:1079.999984px;}
.w0_c00377{width:1080.000000px;}
.x0_c00377{left:0.000000px;}
.x1_c00377{left:992.774984px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls0_c00377{letter-spacing:0.033280pt;}
.ws0_c00377{word-spacing:0.000000pt;}
.fs0_c00377{font-size:85.120000pt;}
.y0_c00377{bottom:0.000000pt;}
.y1_c00377{bottom:56.800000pt;}
.h1_c00377{height:87.489947pt;}
.h0_c00377{height:720.000000pt;}
.w1_c00377{width:959.999986pt;}
.w0_c00377{width:960.000000pt;}
.x0_c00377{left:0.000000pt;}
.x1_c00377{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6bb2c2cd508c828d16dee62f.woff')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls0_c00378{letter-spacing:0.037440px;}
.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:0.000000px;}
.fc1_c00378{color:transparent;}
.fc0_c00378{color:rgb(206,55,54);}
.fs0_c00378{font-size:95.760000px;}
.y0_c00378{bottom:0.000000px;}
.y1_c00378{bottom:63.900000px;}
.h1_c00378{height:98.426190px;}
.h0_c00378{height:810.000000px;}
.w1_c00378{width:1079.999984px;}
.w0_c00378{width:1080.000000px;}
.x0_c00378{left:0.000000px;}
.x1_c00378{left:992.774984px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls0_c00378{letter-spacing:0.033280pt;}
.ws0_c00378{word-spacing:0.000000pt;}
.fs0_c00378{font-size:85.120000pt;}
.y0_c00378{bottom:0.000000pt;}
.y1_c00378{bottom:56.800000pt;}
.h1_c00378{height:87.489947pt;}
.h0_c00378{height:720.000000pt;}
.w1_c00378{width:959.999986pt;}
.w0_c00378{width:960.000000pt;}
.x0_c00378{left:0.000000pt;}
.x1_c00378{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8a7d840740df3037ce19b3a.woff')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.402354;font-style: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;}
.ls0_c00379{letter-spacing:0.037440px;}
.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:0.000000px;}
.fc1_c00379{color:transparent;}
.fc0_c00379{color:rgb(206,55,54);}
.fs0_c00379{font-size:95.760000px;}
.y0_c00379{bottom:0.000000px;}
.y1_c00379{bottom:63.900000px;}
.h1_c00379{height:98.426190px;}
.h0_c00379{height:810.000000px;}
.w1_c00379{width:1079.999984px;}
.w0_c00379{width:1080.000000px;}
.x0_c00379{left:0.000000px;}
.x1_c00379{left:992.774984px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls0_c00379{letter-spacing:0.033280pt;}
.ws0_c00379{word-spacing:0.000000pt;}
.fs0_c00379{font-size:85.120000pt;}
.y0_c00379{bottom:0.000000pt;}
.y1_c00379{bottom:56.800000pt;}
.h1_c00379{height:87.489947pt;}
.h0_c00379{height:720.000000pt;}
.w1_c00379{width:959.999986pt;}
.w0_c00379{width:960.000000pt;}
.x0_c00379{left:0.000000pt;}
.x1_c00379{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d47d1d9e47888dab74924735.woff')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.402354;font-style: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.037440px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00380{word-spacing:0.000000px;}
.fc1_c00380{color:transparent;}
.fc0_c00380{color:rgb(206,55,54);}
.fs0_c00380{font-size:95.760000px;}
.y0_c00380{bottom:0.000000px;}
.y1_c00380{bottom:63.900000px;}
.h1_c00380{height:98.426190px;}
.h0_c00380{height:810.000000px;}
.w1_c00380{width:1079.999984px;}
.w0_c00380{width:1080.000000px;}
.x0_c00380{left:0.000000px;}
.x1_c00380{left:992.774984px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls0_c00380{letter-spacing:0.033280pt;}
.ws0_c00380{word-spacing:0.000000pt;}
.fs0_c00380{font-size:85.120000pt;}
.y0_c00380{bottom:0.000000pt;}
.y1_c00380{bottom:56.800000pt;}
.h1_c00380{height:87.489947pt;}
.h0_c00380{height:720.000000pt;}
.w1_c00380{width:959.999986pt;}
.w0_c00380{width:960.000000pt;}
.x0_c00380{left:0.000000pt;}
.x1_c00380{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e87c5f36e23eb17ede08b6d5.woff')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.402354;font-style: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;}
.ls0_c00381{letter-spacing:0.037440px;}
.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:0.000000px;}
.fc1_c00381{color:transparent;}
.fc0_c00381{color:rgb(206,55,54);}
.fs0_c00381{font-size:95.760000px;}
.y0_c00381{bottom:0.000000px;}
.y1_c00381{bottom:63.900000px;}
.h1_c00381{height:98.426190px;}
.h0_c00381{height:810.000000px;}
.w1_c00381{width:1079.999984px;}
.w0_c00381{width:1080.000000px;}
.x0_c00381{left:0.000000px;}
.x1_c00381{left:992.774984px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.033280pt;}
.ws0_c00381{word-spacing:0.000000pt;}
.fs0_c00381{font-size:85.120000pt;}
.y0_c00381{bottom:0.000000pt;}
.y1_c00381{bottom:56.800000pt;}
.h1_c00381{height:87.489947pt;}
.h0_c00381{height:720.000000pt;}
.w1_c00381{width:959.999986pt;}
.w0_c00381{width:960.000000pt;}
.x0_c00381{left:0.000000pt;}
.x1_c00381{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26929aaa08e27eaa54fdf595.woff')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.402354;font-style: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;}
.ls0_c00382{letter-spacing:0.037440px;}
.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:0.000000px;}
.fc1_c00382{color:transparent;}
.fc0_c00382{color:rgb(206,55,54);}
.fs0_c00382{font-size:95.760000px;}
.y0_c00382{bottom:0.000000px;}
.y1_c00382{bottom:63.900000px;}
.h1_c00382{height:98.426190px;}
.h0_c00382{height:810.000000px;}
.w1_c00382{width:1079.999984px;}
.w0_c00382{width:1080.000000px;}
.x0_c00382{left:0.000000px;}
.x1_c00382{left:992.774984px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls0_c00382{letter-spacing:0.033280pt;}
.ws0_c00382{word-spacing:0.000000pt;}
.fs0_c00382{font-size:85.120000pt;}
.y0_c00382{bottom:0.000000pt;}
.y1_c00382{bottom:56.800000pt;}
.h1_c00382{height:87.489947pt;}
.h0_c00382{height:720.000000pt;}
.w1_c00382{width:959.999986pt;}
.w0_c00382{width:960.000000pt;}
.x0_c00382{left:0.000000pt;}
.x1_c00382{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a493d1f8a213f1c781bfec29.woff')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.402354;font-style: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;}
.ls0_c00383{letter-spacing:0.037440px;}
.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:0.000000px;}
.fc1_c00383{color:transparent;}
.fc0_c00383{color:rgb(206,55,54);}
.fs0_c00383{font-size:95.760000px;}
.y0_c00383{bottom:0.000000px;}
.y1_c00383{bottom:63.900000px;}
.h1_c00383{height:98.426190px;}
.h0_c00383{height:810.000000px;}
.w1_c00383{width:1079.999984px;}
.w0_c00383{width:1080.000000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:992.774984px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls0_c00383{letter-spacing:0.033280pt;}
.ws0_c00383{word-spacing:0.000000pt;}
.fs0_c00383{font-size:85.120000pt;}
.y0_c00383{bottom:0.000000pt;}
.y1_c00383{bottom:56.800000pt;}
.h1_c00383{height:87.489947pt;}
.h0_c00383{height:720.000000pt;}
.w1_c00383{width:959.999986pt;}
.w0_c00383{width:960.000000pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc3cdd1657313133b5c7a82c.woff')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.402354;font-style: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.037440px;}
.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:0.000000px;}
.fc0_c00384{color:rgb(206,55,54);}
.fs0_c00384{font-size:95.760000px;}
.y0_c00384{bottom:0.000000px;}
.y1_c00384{bottom:63.900000px;}
.h1_c00384{height:98.426190px;}
.h0_c00384{height:810.000000px;}
.w1_c00384{width:1079.999984px;}
.w0_c00384{width:1080.000000px;}
.x0_c00384{left:0.000000px;}
.x1_c00384{left:992.774984px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls0_c00384{letter-spacing:0.033280pt;}
.ws0_c00384{word-spacing:0.000000pt;}
.fs0_c00384{font-size:85.120000pt;}
.y0_c00384{bottom:0.000000pt;}
.y1_c00384{bottom:56.800000pt;}
.h1_c00384{height:87.489947pt;}
.h0_c00384{height:720.000000pt;}
.w1_c00384{width:959.999986pt;}
.w0_c00384{width:960.000000pt;}
.x0_c00384{left:0.000000pt;}
.x1_c00384{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d972c906f92b2e7efda4d12.woff')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.402354;font-style: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;}
.ls0_c00385{letter-spacing:0.037440px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00385{word-spacing:0.000000px;}
.fc0_c00385{color:rgb(206,55,54);}
.fs0_c00385{font-size:95.760000px;}
.y0_c00385{bottom:0.000000px;}
.y1_c00385{bottom:63.900000px;}
.h1_c00385{height:98.426190px;}
.h0_c00385{height:810.000000px;}
.w1_c00385{width:1079.999984px;}
.w0_c00385{width:1080.000000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:992.774984px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls0_c00385{letter-spacing:0.033280pt;}
.ws0_c00385{word-spacing:0.000000pt;}
.fs0_c00385{font-size:85.120000pt;}
.y0_c00385{bottom:0.000000pt;}
.y1_c00385{bottom:56.800000pt;}
.h1_c00385{height:87.489947pt;}
.h0_c00385{height:720.000000pt;}
.w1_c00385{width:959.999986pt;}
.w0_c00385{width:960.000000pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b056ad0c06623fb52e41eaa7.woff')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.402354;font-style:normal;font-weight:normal;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_f3d4d667d2b37ac2bcac0505.woff')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.130371;font-style:normal;font-weight:normal;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_a0e3ed1073adaba4ac2b1688.woff')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.149414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00386;src:url('chunks/assets/font_199e3512cfb54200a2176d83.woff')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00386;src:url('chunks/assets/font_2b343b6d346260bd0b32c339.woff')format("woff");}.ff5_c00386{font-family:ff5_c00386;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00386;src:url('chunks/assets/font_ec84a083684823d5f6c8dbc3.woff')format("woff");}.ff6_c00386{font-family:ff6_c00386;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:ff7_c00386;src:url('chunks/assets/font_14903af8301c7288d6824ab4.woff')format("woff");}.ff7_c00386{font-family:ff7_c00386;line-height:0.942383;font-style: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;}
.ls9_c00386{letter-spacing:-0.361200px;}
.lsa_c00386{letter-spacing:-0.288000px;}
.ls8_c00386{letter-spacing:0.000000px;}
.ls7_c00386{letter-spacing:0.037440px;}
.lsc_c00386{letter-spacing:0.165600px;}
.lsb_c00386{letter-spacing:0.238200px;}
.lsd_c00386{letter-spacing:0.277200px;}
.ls6_c00386{letter-spacing:30.240000px;}
.ls4_c00386{letter-spacing:32.112000px;}
.ls3_c00386{letter-spacing:32.211936px;}
.ls2_c00386{letter-spacing:32.256000px;}
.ls1_c00386{letter-spacing:41.616000px;}
.ls0_c00386{letter-spacing:41.760000px;}
.ls5_c00386{letter-spacing:115.833600px;}
.sc__c00386{text-shadow:none;}
.sc1_c00386{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_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;}
.sc1_c00386{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00386{word-spacing:-37.946304px;}
.ws5_c00386{word-spacing:-32.544000px;}
.ws6_c00386{word-spacing:-29.777760px;}
.ws2_c00386{word-spacing:-1.492200px;}
.ws3_c00386{word-spacing:-1.452960px;}
.ws7_c00386{word-spacing:0.000000px;}
.ws1_c00386{word-spacing:0.144000px;}
.ws4_c00386{word-spacing:0.185040px;}
._5_c00386{margin-left:-8.046144px;}
._4_c00386{margin-left:-6.207120px;}
._2_c00386{margin-left:-4.697280px;}
._3_c00386{margin-left:-3.355200px;}
._0_c00386{margin-left:-2.013120px;}
._1_c00386{margin-left:-1.006560px;}
._6_c00386{width:1.236960px;}
.fc2_c00386{color:rgb(192,0,0);}
.fc1_c00386{color:rgb(0,0,0);}
.fc0_c00386{color:rgb(206,55,54);}
.fs0_c00386{font-size:95.760000px;}
.fs5_c00386{font-size:120.240000px;}
.fs6_c00386{font-size:120.384000px;}
.fs8_c00386{font-size:131.760000px;}
.fs7_c00386{font-size:131.904000px;}
.fs4_c00386{font-size:144.000000px;}
.fs3_c00386{font-size:144.144000px;}
.fs1_c00386{font-size:167.760000px;}
.fs2_c00386{font-size:167.904000px;}
.y0_c00386{bottom:0.000000px;}
.y1_c00386{bottom:63.900000px;}
.y17_c00386{bottom:97.956000px;}
.yc_c00386{bottom:129.636000px;}
.y16_c00386{bottom:144.576000px;}
.yb_c00386{bottom:179.130000px;}
.y15_c00386{bottom:191.190000px;}
.ya_c00386{bottom:228.855000px;}
.y14_c00386{bottom:238.035000px;}
.y9_c00386{bottom:278.355000px;}
.y13_c00386{bottom:316.335000px;}
.y12_c00386{bottom:348.015000px;}
.y8_c00386{bottom:376.125000px;}
.y11_c00386{bottom:379.725000px;}
.y10_c00386{bottom:411.405000px;}
.y7_c00386{bottom:412.305000px;}
.yf_c00386{bottom:443.085000px;}
.y6_c00386{bottom:448.665000px;}
.y5_c00386{bottom:486.465000px;}
.ye_c00386{bottom:506.445000px;}
.y4_c00386{bottom:536.010000px;}
.yd_c00386{bottom:538.170000px;}
.y3_c00386{bottom:587.340000px;}
.y2_c00386{bottom:632.700000px;}
.h1_c00386{height:98.426190px;}
.hb_c00386{height:100.621406px;}
.hc_c00386{height:100.731375px;}
.h6_c00386{height:119.594180px;}
.h7_c00386{height:119.737406px;}
.ha_c00386{height:131.052305px;}
.h9_c00386{height:131.195531px;}
.h5_c00386{height:143.226562px;}
.h8_c00386{height:143.369789px;}
.h4_c00386{height:147.592758px;}
.h2_c00386{height:159.732422px;}
.h3_c00386{height:159.869531px;}
.h0_c00386{height:810.000000px;}
.w1_c00386{width:1079.999984px;}
.w0_c00386{width:1080.000000px;}
.x0_c00386{left:0.000000px;}
.x6_c00386{left:73.079984px;}
.x7_c00386{left:113.579984px;}
.x2_c00386{left:127.871984px;}
.x3_c00386{left:487.544984px;}
.x4_c00386{left:573.299984px;}
.x5_c00386{left:627.299984px;}
.x1_c00386{left:992.774984px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls9_c00386{letter-spacing:-0.321067pt;}
.lsa_c00386{letter-spacing:-0.256000pt;}
.ls8_c00386{letter-spacing:0.000000pt;}
.ls7_c00386{letter-spacing:0.033280pt;}
.lsc_c00386{letter-spacing:0.147200pt;}
.lsb_c00386{letter-spacing:0.211733pt;}
.lsd_c00386{letter-spacing:0.246400pt;}
.ls6_c00386{letter-spacing:26.880000pt;}
.ls4_c00386{letter-spacing:28.544000pt;}
.ls3_c00386{letter-spacing:28.632832pt;}
.ls2_c00386{letter-spacing:28.672000pt;}
.ls1_c00386{letter-spacing:36.992000pt;}
.ls0_c00386{letter-spacing:37.120000pt;}
.ls5_c00386{letter-spacing:102.963200pt;}
.ws0_c00386{word-spacing:-33.730048pt;}
.ws5_c00386{word-spacing:-28.928000pt;}
.ws6_c00386{word-spacing:-26.469120pt;}
.ws2_c00386{word-spacing:-1.326400pt;}
.ws3_c00386{word-spacing:-1.291520pt;}
.ws7_c00386{word-spacing:0.000000pt;}
.ws1_c00386{word-spacing:0.128000pt;}
.ws4_c00386{word-spacing:0.164480pt;}
._5_c00386{margin-left:-7.152128pt;}
._4_c00386{margin-left:-5.517440pt;}
._2_c00386{margin-left:-4.175360pt;}
._3_c00386{margin-left:-2.982400pt;}
._0_c00386{margin-left:-1.789440pt;}
._1_c00386{margin-left:-0.894720pt;}
._6_c00386{width:1.099520pt;}
.fs0_c00386{font-size:85.120000pt;}
.fs5_c00386{font-size:106.880000pt;}
.fs6_c00386{font-size:107.008000pt;}
.fs8_c00386{font-size:117.120000pt;}
.fs7_c00386{font-size:117.248000pt;}
.fs4_c00386{font-size:128.000000pt;}
.fs3_c00386{font-size:128.128000pt;}
.fs1_c00386{font-size:149.120000pt;}
.fs2_c00386{font-size:149.248000pt;}
.y0_c00386{bottom:0.000000pt;}
.y1_c00386{bottom:56.800000pt;}
.y17_c00386{bottom:87.072000pt;}
.yc_c00386{bottom:115.232000pt;}
.y16_c00386{bottom:128.512000pt;}
.yb_c00386{bottom:159.226667pt;}
.y15_c00386{bottom:169.946667pt;}
.ya_c00386{bottom:203.426667pt;}
.y14_c00386{bottom:211.586667pt;}
.y9_c00386{bottom:247.426667pt;}
.y13_c00386{bottom:281.186667pt;}
.y12_c00386{bottom:309.346667pt;}
.y8_c00386{bottom:334.333333pt;}
.y11_c00386{bottom:337.533333pt;}
.y10_c00386{bottom:365.693333pt;}
.y7_c00386{bottom:366.493333pt;}
.yf_c00386{bottom:393.853333pt;}
.y6_c00386{bottom:398.813333pt;}
.y5_c00386{bottom:432.413333pt;}
.ye_c00386{bottom:450.173333pt;}
.y4_c00386{bottom:476.453333pt;}
.yd_c00386{bottom:478.373333pt;}
.y3_c00386{bottom:522.080000pt;}
.y2_c00386{bottom:562.400000pt;}
.h1_c00386{height:87.489947pt;}
.hb_c00386{height:89.441250pt;}
.hc_c00386{height:89.539000pt;}
.h6_c00386{height:106.305937pt;}
.h7_c00386{height:106.433250pt;}
.ha_c00386{height:116.490937pt;}
.h9_c00386{height:116.618250pt;}
.h5_c00386{height:127.312500pt;}
.h8_c00386{height:127.439813pt;}
.h4_c00386{height:131.193562pt;}
.h2_c00386{height:141.984375pt;}
.h3_c00386{height:142.106250pt;}
.h0_c00386{height:720.000000pt;}
.w1_c00386{width:959.999986pt;}
.w0_c00386{width:960.000000pt;}
.x0_c00386{left:0.000000pt;}
.x6_c00386{left:64.959986pt;}
.x7_c00386{left:100.959986pt;}
.x2_c00386{left:113.663986pt;}
.x3_c00386{left:433.373319pt;}
.x4_c00386{left:509.599986pt;}
.x5_c00386{left:557.599986pt;}
.x1_c00386{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_572f2d0422e6468e6a2e31f5.woff')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.402354;font-style: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;}
.ls0_c00387{letter-spacing:0.037440px;}
.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:0.000000px;}
.fc1_c00387{color:transparent;}
.fc0_c00387{color:rgb(206,55,54);}
.fs0_c00387{font-size:95.760000px;}
.y0_c00387{bottom:0.000000px;}
.y1_c00387{bottom:63.900000px;}
.h1_c00387{height:98.426190px;}
.h0_c00387{height:810.000000px;}
.w1_c00387{width:1079.999984px;}
.w0_c00387{width:1080.000000px;}
.x0_c00387{left:0.000000px;}
.x1_c00387{left:992.774984px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls0_c00387{letter-spacing:0.033280pt;}
.ws0_c00387{word-spacing:0.000000pt;}
.fs0_c00387{font-size:85.120000pt;}
.y0_c00387{bottom:0.000000pt;}
.y1_c00387{bottom:56.800000pt;}
.h1_c00387{height:87.489947pt;}
.h0_c00387{height:720.000000pt;}
.w1_c00387{width:959.999986pt;}
.w0_c00387{width:960.000000pt;}
.x0_c00387{left:0.000000pt;}
.x1_c00387{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f0ef59774840b7ae7030b833.woff')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.402354;font-style: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;}
.ls0_c00388{letter-spacing:0.037440px;}
.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:0.000000px;}
.fc1_c00388{color:transparent;}
.fc0_c00388{color:rgb(206,55,54);}
.fs0_c00388{font-size:95.760000px;}
.y0_c00388{bottom:0.000000px;}
.y1_c00388{bottom:63.900000px;}
.h1_c00388{height:98.426190px;}
.h0_c00388{height:810.000000px;}
.w1_c00388{width:1079.999984px;}
.w0_c00388{width:1080.000000px;}
.x0_c00388{left:0.000000px;}
.x1_c00388{left:992.774984px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls0_c00388{letter-spacing:0.033280pt;}
.ws0_c00388{word-spacing:0.000000pt;}
.fs0_c00388{font-size:85.120000pt;}
.y0_c00388{bottom:0.000000pt;}
.y1_c00388{bottom:56.800000pt;}
.h1_c00388{height:87.489947pt;}
.h0_c00388{height:720.000000pt;}
.w1_c00388{width:959.999986pt;}
.w0_c00388{width:960.000000pt;}
.x0_c00388{left:0.000000pt;}
.x1_c00388{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ec4931d0a131a9a0029ad96.woff')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.402354;font-style:normal;font-weight:normal;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_2199867b39c26be8bcc949dd.woff')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.130371;font-style:normal;font-weight:normal;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_ba9099e59c0ec748c30bbbe4.woff')format("woff");}.ff3_c00389{font-family:ff3_c00389;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:ff4_c00389;src:url('chunks/assets/font_6dcb41ddd2347431eaf944da.woff')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00389;src:url('chunks/assets/font_5fa1926b8b9a51e5fce08234.woff')format("woff");}.ff5_c00389{font-family:ff5_c00389;line-height:1.172852;font-style: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;}
.ls4_c00389{letter-spacing:-0.000006px;}
.ls3_c00389{letter-spacing:0.000000px;}
.ls2_c00389{letter-spacing:0.037440px;}
.ls5_c00389{letter-spacing:0.432000px;}
.ls1_c00389{letter-spacing:84.909600px;}
.ls0_c00389{letter-spacing:84.960000px;}
.sc__c00389{text-shadow:none;}
.sc1_c00389{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_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;}
.sc1_c00389{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00389{word-spacing:0.000000px;}
.ws0_c00389{word-spacing:0.388368px;}
._2_c00389{margin-left:-5.876640px;}
._4_c00389{margin-left:-4.365504px;}
._0_c00389{margin-left:-3.190176px;}
._1_c00389{margin-left:-2.182752px;}
._3_c00389{margin-left:-1.007424px;}
._5_c00389{width:1.151424px;}
.fc2_c00389{color:rgb(192,0,0);}
.fc1_c00389{color:rgb(0,0,0);}
.fc0_c00389{color:rgb(206,55,54);}
.fs0_c00389{font-size:95.760000px;}
.fs2_c00389{font-size:144.000000px;}
.fs3_c00389{font-size:144.144000px;}
.fs1_c00389{font-size:167.904000px;}
.y0_c00389{bottom:0.000000px;}
.y1_c00389{bottom:63.900000px;}
.y9_c00389{bottom:176.220000px;}
.y8_c00389{bottom:215.100000px;}
.y7_c00389{bottom:269.130000px;}
.y6_c00389{bottom:322.950000px;}
.y5_c00389{bottom:376.770000px;}
.y4_c00389{bottom:415.695000px;}
.y3_c00389{bottom:469.695000px;}
.y2_c00389{bottom:613.950000px;}
.h1_c00389{height:98.426190px;}
.h3_c00389{height:143.226562px;}
.h4_c00389{height:143.369789px;}
.h2_c00389{height:159.869531px;}
.h0_c00389{height:810.000000px;}
.w1_c00389{width:1079.999984px;}
.w0_c00389{width:1080.000000px;}
.x0_c00389{left:0.000000px;}
.x3_c00389{left:66.851984px;}
.x4_c00389{left:100.691984px;}
.x2_c00389{left:342.689984px;}
.x1_c00389{left:992.774984px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls4_c00389{letter-spacing:-0.000005pt;}
.ls3_c00389{letter-spacing:0.000000pt;}
.ls2_c00389{letter-spacing:0.033280pt;}
.ls5_c00389{letter-spacing:0.384000pt;}
.ls1_c00389{letter-spacing:75.475200pt;}
.ls0_c00389{letter-spacing:75.520000pt;}
.ws1_c00389{word-spacing:0.000000pt;}
.ws0_c00389{word-spacing:0.345216pt;}
._2_c00389{margin-left:-5.223680pt;}
._4_c00389{margin-left:-3.880448pt;}
._0_c00389{margin-left:-2.835712pt;}
._1_c00389{margin-left:-1.940224pt;}
._3_c00389{margin-left:-0.895488pt;}
._5_c00389{width:1.023488pt;}
.fs0_c00389{font-size:85.120000pt;}
.fs2_c00389{font-size:128.000000pt;}
.fs3_c00389{font-size:128.128000pt;}
.fs1_c00389{font-size:149.248000pt;}
.y0_c00389{bottom:0.000000pt;}
.y1_c00389{bottom:56.800000pt;}
.y9_c00389{bottom:156.640000pt;}
.y8_c00389{bottom:191.200000pt;}
.y7_c00389{bottom:239.226667pt;}
.y6_c00389{bottom:287.066667pt;}
.y5_c00389{bottom:334.906667pt;}
.y4_c00389{bottom:369.506667pt;}
.y3_c00389{bottom:417.506667pt;}
.y2_c00389{bottom:545.733333pt;}
.h1_c00389{height:87.489947pt;}
.h3_c00389{height:127.312500pt;}
.h4_c00389{height:127.439813pt;}
.h2_c00389{height:142.106250pt;}
.h0_c00389{height:720.000000pt;}
.w1_c00389{width:959.999986pt;}
.w0_c00389{width:960.000000pt;}
.x0_c00389{left:0.000000pt;}
.x3_c00389{left:59.423986pt;}
.x4_c00389{left:89.503986pt;}
.x2_c00389{left:304.613319pt;}
.x1_c00389{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac173d6b1b55fceee8de4e73.woff')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.402354;font-style:normal;font-weight:normal;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_ba9099e59c0ec748c30bbbe4.woff')format("woff");}.ff2_c00390{font-family:ff2_c00390;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:ff3_c00390;src:url('chunks/assets/font_5c426b492c64c52c6c8a6a69.woff')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.172852;font-style:normal;font-weight:normal;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_665a0e239a76a60a4484e654.woff')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.172852;font-style:normal;font-weight:normal;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_fbdd62fc9059fc3688a8f349.woff')format("woff");}.ff5_c00390{font-family:ff5_c00390;line-height:1.130371;font-style: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;}
.ls3_c00390{letter-spacing:0.000000px;}
.ls2_c00390{letter-spacing:0.037440px;}
.ls1_c00390{letter-spacing:111.549600px;}
.ls0_c00390{letter-spacing:111.600000px;}
.sc__c00390{text-shadow:none;}
.sc1_c00390{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_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;}
.sc1_c00390{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00390{word-spacing:-167.904000px;}
.ws2_c00390{word-spacing:-32.544000px;}
.ws0_c00390{word-spacing:-0.300000px;}
.ws1_c00390{word-spacing:-0.108000px;}
.ws4_c00390{word-spacing:0.000000px;}
._3_c00390{margin-left:-5.316000px;}
._4_c00390{margin-left:-3.562848px;}
._0_c00390{margin-left:-2.448000px;}
._2_c00390{margin-left:-1.428000px;}
._1_c00390{width:1.728000px;}
.fc2_c00390{color:rgb(0,0,0);}
.fc1_c00390{color:rgb(192,0,0);}
.fc0_c00390{color:rgb(206,55,54);}
.fs0_c00390{font-size:95.760000px;}
.fs1_c00390{font-size:144.000000px;}
.fs2_c00390{font-size:144.144000px;}
.fs3_c00390{font-size:167.904000px;}
.y0_c00390{bottom:0.000000px;}
.y1_c00390{bottom:63.900000px;}
.y8_c00390{bottom:189.180000px;}
.y7_c00390{bottom:297.000000px;}
.y6_c00390{bottom:350.850000px;}
.y5_c00390{bottom:404.670000px;}
.y4_c00390{bottom:443.550000px;}
.y3_c00390{bottom:497.595000px;}
.y2_c00390{bottom:536.475000px;}
.y9_c00390{bottom:613.950000px;}
.h1_c00390{height:98.426190px;}
.h2_c00390{height:143.226562px;}
.h3_c00390{height:143.369789px;}
.h4_c00390{height:159.869531px;}
.h0_c00390{height:810.000000px;}
.w1_c00390{width:1079.999984px;}
.w0_c00390{width:1080.000000px;}
.x0_c00390{left:0.000000px;}
.x2_c00390{left:66.851984px;}
.x3_c00390{left:107.351984px;}
.x4_c00390{left:491.729984px;}
.x1_c00390{left:992.774984px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls3_c00390{letter-spacing:0.000000pt;}
.ls2_c00390{letter-spacing:0.033280pt;}
.ls1_c00390{letter-spacing:99.155200pt;}
.ls0_c00390{letter-spacing:99.200000pt;}
.ws3_c00390{word-spacing:-149.248000pt;}
.ws2_c00390{word-spacing:-28.928000pt;}
.ws0_c00390{word-spacing:-0.266667pt;}
.ws1_c00390{word-spacing:-0.096000pt;}
.ws4_c00390{word-spacing:0.000000pt;}
._3_c00390{margin-left:-4.725333pt;}
._4_c00390{margin-left:-3.166976pt;}
._0_c00390{margin-left:-2.176000pt;}
._2_c00390{margin-left:-1.269333pt;}
._1_c00390{width:1.536000pt;}
.fs0_c00390{font-size:85.120000pt;}
.fs1_c00390{font-size:128.000000pt;}
.fs2_c00390{font-size:128.128000pt;}
.fs3_c00390{font-size:149.248000pt;}
.y0_c00390{bottom:0.000000pt;}
.y1_c00390{bottom:56.800000pt;}
.y8_c00390{bottom:168.160000pt;}
.y7_c00390{bottom:264.000000pt;}
.y6_c00390{bottom:311.866667pt;}
.y5_c00390{bottom:359.706667pt;}
.y4_c00390{bottom:394.266667pt;}
.y3_c00390{bottom:442.306667pt;}
.y2_c00390{bottom:476.866667pt;}
.y9_c00390{bottom:545.733333pt;}
.h1_c00390{height:87.489947pt;}
.h2_c00390{height:127.312500pt;}
.h3_c00390{height:127.439813pt;}
.h4_c00390{height:142.106250pt;}
.h0_c00390{height:720.000000pt;}
.w1_c00390{width:959.999986pt;}
.w0_c00390{width:960.000000pt;}
.x0_c00390{left:0.000000pt;}
.x2_c00390{left:59.423986pt;}
.x3_c00390{left:95.423986pt;}
.x4_c00390{left:437.093319pt;}
.x1_c00390{left:882.466652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fff108681fde35aa3c616e24.woff')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.130371;font-style: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);}
.m1_c00391{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls0_c00391{letter-spacing:0.000000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00391{word-spacing:0.000000px;}
._2_c00391{margin-left:-6.713280px;}
._1_c00391{margin-left:-4.795200px;}
._0_c00391{margin-left:-2.157840px;}
.fc0_c00391{color:rgb(0,0,0);}
.fs0_c00391{font-size:239.760000px;}
.y0_c00391{bottom:0.000000px;}
.y1_c00391{bottom:420.585000px;}
.h1_c00391{height:228.287109px;}
.h0_c00391{height:810.000000px;}
.w1_c00391{width:1079.999984px;}
.w0_c00391{width:1080.000000px;}
.x0_c00391{left:0.000000px;}
.x1_c00391{left:293.504984px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws0_c00391{word-spacing:0.000000pt;}
._2_c00391{margin-left:-5.967360pt;}
._1_c00391{margin-left:-4.262400pt;}
._0_c00391{margin-left:-1.918080pt;}
.fs0_c00391{font-size:213.120000pt;}
.y0_c00391{bottom:0.000000pt;}
.y1_c00391{bottom:373.853333pt;}
.h1_c00391{height:202.921875pt;}
.h0_c00391{height:720.000000pt;}
.w1_c00391{width:959.999986pt;}
.w0_c00391{width:960.000000pt;}
.x0_c00391{left:0.000000pt;}
.x1_c00391{left:260.893319pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f2bc66db52501ce4f7d15d0.woff')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:0.899414;font-style:normal;font-weight:normal;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_b4a10021bc100fad97865b64.woff')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_0b61ceaf4c3fa91560fd558e.woff')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00392;src:url('chunks/assets/font_e26000cebdf81afe925ac920.woff')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.172852;font-style: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;}
.ls2_c00392{letter-spacing:0.000000px;}
.ls0_c00392{letter-spacing:0.420000px;}
.ls1_c00392{letter-spacing:18.818496px;}
.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:0.000000px;}
._0_c00392{margin-left:-3.240000px;}
._2_c00392{margin-left:-1.080000px;}
._1_c00392{width:1.080000px;}
._3_c00392{width:1595.130432px;}
.fc1_c00392{color:rgb(255,255,255);}
.fc0_c00392{color:rgb(158,54,17);}
.fs1_c00392{font-size:84.384000px;}
.fs0_c00392{font-size:216.000000px;}
.y0_c00392{bottom:0.000000px;}
.y3_c00392{bottom:23.724000px;}
.y2_c00392{bottom:280.410000px;}
.y1_c00392{bottom:377.640000px;}
.h2_c00392{height:86.402953px;}
.h1_c00392{height:221.167969px;}
.h0_c00392{height:810.000000px;}
.w1_c00392{width:1079.999984px;}
.w0_c00392{width:1080.000000px;}
.x0_c00392{left:0.000000px;}
.x3_c00392{left:32.003984px;}
.x1_c00392{left:133.127984px;}
.x2_c00392{left:157.604984px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls2_c00392{letter-spacing:0.000000pt;}
.ls0_c00392{letter-spacing:0.373333pt;}
.ls1_c00392{letter-spacing:16.727552pt;}
.ws0_c00392{word-spacing:0.000000pt;}
._0_c00392{margin-left:-2.880000pt;}
._2_c00392{margin-left:-0.960000pt;}
._1_c00392{width:0.960000pt;}
._3_c00392{width:1417.893717pt;}
.fs1_c00392{font-size:75.008000pt;}
.fs0_c00392{font-size:192.000000pt;}
.y0_c00392{bottom:0.000000pt;}
.y3_c00392{bottom:21.088000pt;}
.y2_c00392{bottom:249.253333pt;}
.y1_c00392{bottom:335.680000pt;}
.h2_c00392{height:76.802625pt;}
.h1_c00392{height:196.593750pt;}
.h0_c00392{height:720.000000pt;}
.w1_c00392{width:959.999986pt;}
.w0_c00392{width:960.000000pt;}
.x0_c00392{left:0.000000pt;}
.x3_c00392{left:28.447986pt;}
.x1_c00392{left:118.335986pt;}
.x2_c00392{left:140.093319pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b8b5effc2df5b7ee56229ade.woff')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.130371;font-style:normal;font-weight:normal;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_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:0.739746;font-style:normal;font-weight:normal;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_b2e0ebcc897a346182cdd377.woff')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.172852;font-style:normal;font-weight:normal;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_017cfae049c69f8953b1b0d9.woff')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00393;src:url('chunks/assets/font_56fa9b1cd399a5d4faddc73e.woff')format("woff");}.ff5_c00393{font-family:ff5_c00393;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00393;src:url('chunks/assets/font_3645d505154bbbfcfbf1d8ce.woff')format("woff");}.ff6_c00393{font-family:ff6_c00393;line-height:1.202148;font-style: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;}
.ls4_c00393{letter-spacing:-0.302400px;}
.ls3_c00393{letter-spacing:-0.158400px;}
.ls2_c00393{letter-spacing:0.000000px;}
.ls0_c00393{letter-spacing:1.260000px;}
.ls1_c00393{letter-spacing:18.818496px;}
.sc__c00393{text-shadow:none;}
.sc1_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00393{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc1_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00393{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
}
.ws0_c00393{word-spacing:-27.174240px;}
.ws4_c00393{word-spacing:-19.070784px;}
.ws1_c00393{word-spacing:-1.534752px;}
.ws2_c00393{word-spacing:-0.372960px;}
.ws5_c00393{word-spacing:0.000000px;}
.ws3_c00393{word-spacing:1576.776192px;}
._0_c00393{margin-left:-8.856000px;}
._3_c00393{margin-left:-6.696000px;}
._2_c00393{margin-left:-5.616000px;}
._1_c00393{margin-left:-3.888000px;}
._6_c00393{margin-left:-2.845440px;}
._4_c00393{margin-left:-1.803600px;}
._5_c00393{width:1.563120px;}
._7_c00393{width:2.724480px;}
.fc3_c00393{color:rgb(255,255,255);}
.fc2_c00393{color:rgb(64,64,64);}
.fc1_c00393{color:rgb(211,72,23);}
.fc0_c00393{color:rgb(158,54,17);}
.fs3_c00393{font-size:84.384000px;}
.fs1_c00393{font-size:120.240000px;}
.fs2_c00393{font-size:120.384000px;}
.fs0_c00393{font-size:216.000000px;}
.y0_c00393{bottom:0.000000px;}
.y10_c00393{bottom:23.724000px;}
.yf_c00393{bottom:68.760000px;}
.ye_c00393{bottom:101.160000px;}
.yd_c00393{bottom:145.656000px;}
.yc_c00393{bottom:178.050000px;}
.yb_c00393{bottom:222.330000px;}
.ya_c00393{bottom:254.730000px;}
.y9_c00393{bottom:287.130000px;}
.y8_c00393{bottom:331.635000px;}
.y7_c00393{bottom:376.095000px;}
.y6_c00393{bottom:420.375000px;}
.y5_c00393{bottom:452.775000px;}
.y4_c00393{bottom:497.265000px;}
.y3_c00393{bottom:529.665000px;}
.y2_c00393{bottom:562.065000px;}
.y1_c00393{bottom:661.170000px;}
.h5_c00393{height:86.402953px;}
.h2_c00393{height:119.594180px;}
.h3_c00393{height:119.737406px;}
.h4_c00393{height:123.116836px;}
.h1_c00393{height:205.664062px;}
.h0_c00393{height:810.000000px;}
.w1_c00393{width:1079.999984px;}
.w0_c00393{width:1080.000000px;}
.x0_c00393{left:0.000000px;}
.x4_c00393{left:32.003984px;}
.x2_c00393{left:97.199984px;}
.x3_c00393{left:108.035984px;}
.x1_c00393{left:245.264984px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls4_c00393{letter-spacing:-0.268800pt;}
.ls3_c00393{letter-spacing:-0.140800pt;}
.ls2_c00393{letter-spacing:0.000000pt;}
.ls0_c00393{letter-spacing:1.120000pt;}
.ls1_c00393{letter-spacing:16.727552pt;}
.ws0_c00393{word-spacing:-24.154880pt;}
.ws4_c00393{word-spacing:-16.951808pt;}
.ws1_c00393{word-spacing:-1.364224pt;}
.ws2_c00393{word-spacing:-0.331520pt;}
.ws5_c00393{word-spacing:0.000000pt;}
.ws3_c00393{word-spacing:1401.578837pt;}
._0_c00393{margin-left:-7.872000pt;}
._3_c00393{margin-left:-5.952000pt;}
._2_c00393{margin-left:-4.992000pt;}
._1_c00393{margin-left:-3.456000pt;}
._6_c00393{margin-left:-2.529280pt;}
._4_c00393{margin-left:-1.603200pt;}
._5_c00393{width:1.389440pt;}
._7_c00393{width:2.421760pt;}
.fs3_c00393{font-size:75.008000pt;}
.fs1_c00393{font-size:106.880000pt;}
.fs2_c00393{font-size:107.008000pt;}
.fs0_c00393{font-size:192.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y10_c00393{bottom:21.088000pt;}
.yf_c00393{bottom:61.120000pt;}
.ye_c00393{bottom:89.920000pt;}
.yd_c00393{bottom:129.472000pt;}
.yc_c00393{bottom:158.266667pt;}
.yb_c00393{bottom:197.626667pt;}
.ya_c00393{bottom:226.426667pt;}
.y9_c00393{bottom:255.226667pt;}
.y8_c00393{bottom:294.786667pt;}
.y7_c00393{bottom:334.306667pt;}
.y6_c00393{bottom:373.666667pt;}
.y5_c00393{bottom:402.466667pt;}
.y4_c00393{bottom:442.013333pt;}
.y3_c00393{bottom:470.813333pt;}
.y2_c00393{bottom:499.613333pt;}
.y1_c00393{bottom:587.706667pt;}
.h5_c00393{height:76.802625pt;}
.h2_c00393{height:106.305937pt;}
.h3_c00393{height:106.433250pt;}
.h4_c00393{height:109.437187pt;}
.h1_c00393{height:182.812500pt;}
.h0_c00393{height:720.000000pt;}
.w1_c00393{width:959.999986pt;}
.w0_c00393{width:960.000000pt;}
.x0_c00393{left:0.000000pt;}
.x4_c00393{left:28.447986pt;}
.x2_c00393{left:86.399986pt;}
.x3_c00393{left:96.031986pt;}
.x1_c00393{left:218.013319pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4514e7d4aaa641d368930a45.woff')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.130371;font-style:normal;font-weight:normal;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_3c1f2356288aa6367e4fe440.woff')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.172852;font-style:normal;font-weight:normal;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_e8223f140c0ac12a54feb92a.woff')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00394;src:url('chunks/assets/font_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00394;src:url('chunks/assets/font_7c233d1774d0fb85453e80e6.woff')format("woff");}.ff5_c00394{font-family:ff5_c00394;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00394;src:url('chunks/assets/font_3645d505154bbbfcfbf1d8ce.woff')format("woff");}.ff6_c00394{font-family:ff6_c00394;line-height:1.202148;font-style: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;}
.ls5_c00394{letter-spacing:-0.302400px;}
.ls4_c00394{letter-spacing:-0.158400px;}
.ls3_c00394{letter-spacing:0.000000px;}
.ls2_c00394{letter-spacing:18.818496px;}
.ls1_c00394{letter-spacing:165.417600px;}
.ls0_c00394{letter-spacing:165.468000px;}
.sc__c00394{text-shadow:none;}
.sc1_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00394{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc1_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00394{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
}
.ws2_c00394{word-spacing:-66.847968px;}
.ws0_c00394{word-spacing:-35.342784px;}
.ws1_c00394{word-spacing:-35.310240px;}
.ws5_c00394{word-spacing:-19.070784px;}
.ws3_c00394{word-spacing:-0.372960px;}
.ws6_c00394{word-spacing:0.000000px;}
.ws4_c00394{word-spacing:1576.776192px;}
._0_c00394{margin-left:-8.856000px;}
._2_c00394{margin-left:-7.776000px;}
._1_c00394{margin-left:-6.048000px;}
._3_c00394{margin-left:-4.752000px;}
._4_c00394{margin-left:-3.672000px;}
._7_c00394{margin-left:-2.499840px;}
._5_c00394{margin-left:-1.405440px;}
._6_c00394{width:1.015920px;}
.fc2_c00394{color:rgb(211,72,23);}
.fc3_c00394{color:rgb(255,255,255);}
.fc1_c00394{color:rgb(64,64,64);}
.fc0_c00394{color:rgb(158,54,17);}
.fs5_c00394{font-size:84.384000px;}
.fs3_c00394{font-size:144.720000px;}
.fs4_c00394{font-size:144.864000px;}
.fs1_c00394{font-size:156.240000px;}
.fs2_c00394{font-size:156.384000px;}
.fs0_c00394{font-size:216.000000px;}
.y0_c00394{bottom:0.000000px;}
.ya_c00394{bottom:23.724000px;}
.y9_c00394{bottom:144.756000px;}
.y8_c00394{bottom:182.190000px;}
.y7_c00394{bottom:219.630000px;}
.y6_c00394{bottom:300.495000px;}
.y5_c00394{bottom:381.495000px;}
.y4_c00394{bottom:418.935000px;}
.y3_c00394{bottom:499.785000px;}
.y2_c00394{bottom:537.225000px;}
.y1_c00394{bottom:686.595000px;}
.h4_c00394{height:86.402953px;}
.h2_c00394{height:155.400820px;}
.h3_c00394{height:155.544047px;}
.h1_c00394{height:205.664062px;}
.h0_c00394{height:810.000000px;}
.w1_c00394{width:1079.999984px;}
.w0_c00394{width:1080.000000px;}
.x0_c00394{left:0.000000px;}
.x5_c00394{left:32.003984px;}
.x3_c00394{left:97.199984px;}
.x2_c00394{left:101.519984px;}
.x1_c00394{left:138.707984px;}
.x4_c00394{left:144.755984px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls5_c00394{letter-spacing:-0.268800pt;}
.ls4_c00394{letter-spacing:-0.140800pt;}
.ls3_c00394{letter-spacing:0.000000pt;}
.ls2_c00394{letter-spacing:16.727552pt;}
.ls1_c00394{letter-spacing:147.037867pt;}
.ls0_c00394{letter-spacing:147.082667pt;}
.ws2_c00394{word-spacing:-59.420416pt;}
.ws0_c00394{word-spacing:-31.415808pt;}
.ws1_c00394{word-spacing:-31.386880pt;}
.ws5_c00394{word-spacing:-16.951808pt;}
.ws3_c00394{word-spacing:-0.331520pt;}
.ws6_c00394{word-spacing:0.000000pt;}
.ws4_c00394{word-spacing:1401.578837pt;}
._0_c00394{margin-left:-7.872000pt;}
._2_c00394{margin-left:-6.912000pt;}
._1_c00394{margin-left:-5.376000pt;}
._3_c00394{margin-left:-4.224000pt;}
._4_c00394{margin-left:-3.264000pt;}
._7_c00394{margin-left:-2.222080pt;}
._5_c00394{margin-left:-1.249280pt;}
._6_c00394{width:0.903040pt;}
.fs5_c00394{font-size:75.008000pt;}
.fs3_c00394{font-size:128.640000pt;}
.fs4_c00394{font-size:128.768000pt;}
.fs1_c00394{font-size:138.880000pt;}
.fs2_c00394{font-size:139.008000pt;}
.fs0_c00394{font-size:192.000000pt;}
.y0_c00394{bottom:0.000000pt;}
.ya_c00394{bottom:21.088000pt;}
.y9_c00394{bottom:128.672000pt;}
.y8_c00394{bottom:161.946667pt;}
.y7_c00394{bottom:195.226667pt;}
.y6_c00394{bottom:267.106667pt;}
.y5_c00394{bottom:339.106667pt;}
.y4_c00394{bottom:372.386667pt;}
.y3_c00394{bottom:444.253333pt;}
.y2_c00394{bottom:477.533333pt;}
.y1_c00394{bottom:610.306667pt;}
.h4_c00394{height:76.802625pt;}
.h2_c00394{height:138.134062pt;}
.h3_c00394{height:138.261375pt;}
.h1_c00394{height:182.812500pt;}
.h0_c00394{height:720.000000pt;}
.w1_c00394{width:959.999986pt;}
.w0_c00394{width:960.000000pt;}
.x0_c00394{left:0.000000pt;}
.x5_c00394{left:28.447986pt;}
.x3_c00394{left:86.399986pt;}
.x2_c00394{left:90.239986pt;}
.x1_c00394{left:123.295986pt;}
.x4_c00394{left:128.671986pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfa2de87b7e4b532bc6acdf3.woff')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.130371;font-style:normal;font-weight:normal;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_7224616397255d8c636cbf7a.woff')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.172852;font-style:normal;font-weight:normal;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_4b1718f67d40085cc86e226e.woff')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.172852;font-style:normal;font-weight:normal;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_aeb943923248f00b0361d457.woff')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00395;src:url('chunks/assets/font_3645d505154bbbfcfbf1d8ce.woff')format("woff");}.ff5_c00395{font-family:ff5_c00395;line-height:1.202148;font-style: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;}
.ls5_c00395{letter-spacing:-0.302400px;}
.ls4_c00395{letter-spacing:-0.158400px;}
.ls2_c00395{letter-spacing:-0.086400px;}
.ls3_c00395{letter-spacing:-0.013680px;}
.ls1_c00395{letter-spacing:0.000000px;}
.ls0_c00395{letter-spacing:18.818496px;}
.sc__c00395{text-shadow:none;}
.sc1_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00395{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc1_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00395{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
}
.ws4_c00395{word-spacing:-66.847968px;}
.ws3_c00395{word-spacing:-35.342784px;}
.ws7_c00395{word-spacing:-19.070784px;}
.ws5_c00395{word-spacing:-0.372960px;}
.ws8_c00395{word-spacing:0.000000px;}
.ws0_c00395{word-spacing:6.096000px;}
.ws2_c00395{word-spacing:89.648640px;}
.ws1_c00395{word-spacing:89.724960px;}
.ws6_c00395{word-spacing:1576.776192px;}
._2_c00395{margin-left:-7.776000px;}
._1_c00395{margin-left:-5.832000px;}
._0_c00395{margin-left:-4.536000px;}
._3_c00395{margin-left:-3.240000px;}
._5_c00395{margin-left:-2.186352px;}
._4_c00395{margin-left:-1.094688px;}
._6_c00395{width:1.317936px;}
.fc2_c00395{color:rgb(255,255,255);}
.fc1_c00395{color:rgb(0,0,0);}
.fc0_c00395{color:rgb(158,54,17);}
.fs3_c00395{font-size:84.384000px;}
.fs2_c00395{font-size:156.240000px;}
.fs1_c00395{font-size:156.384000px;}
.fs0_c00395{font-size:216.000000px;}
.y0_c00395{bottom:0.000000px;}
.yb_c00395{bottom:23.724000px;}
.ya_c00395{bottom:141.624000px;}
.y9_c00395{bottom:188.430000px;}
.y8_c00395{bottom:235.230000px;}
.y7_c00395{bottom:282.030000px;}
.y6_c00395{bottom:328.860000px;}
.y5_c00395{bottom:375.660000px;}
.y4_c00395{bottom:422.460000px;}
.y3_c00395{bottom:469.260000px;}
.y2_c00395{bottom:516.090000px;}
.y1_c00395{bottom:671.685000px;}
.h4_c00395{height:86.402953px;}
.h3_c00395{height:155.400820px;}
.h2_c00395{height:155.544047px;}
.h1_c00395{height:205.664062px;}
.h0_c00395{height:810.000000px;}
.w1_c00395{width:1079.999984px;}
.w0_c00395{width:1080.000000px;}
.x0_c00395{left:0.000000px;}
.x4_c00395{left:32.003984px;}
.x2_c00395{left:66.023984px;}
.x3_c00395{left:126.899984px;}
.x1_c00395{left:379.949984px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls5_c00395{letter-spacing:-0.268800pt;}
.ls4_c00395{letter-spacing:-0.140800pt;}
.ls2_c00395{letter-spacing:-0.076800pt;}
.ls3_c00395{letter-spacing:-0.012160pt;}
.ls1_c00395{letter-spacing:0.000000pt;}
.ls0_c00395{letter-spacing:16.727552pt;}
.ws4_c00395{word-spacing:-59.420416pt;}
.ws3_c00395{word-spacing:-31.415808pt;}
.ws7_c00395{word-spacing:-16.951808pt;}
.ws5_c00395{word-spacing:-0.331520pt;}
.ws8_c00395{word-spacing:0.000000pt;}
.ws0_c00395{word-spacing:5.418667pt;}
.ws2_c00395{word-spacing:79.687680pt;}
.ws1_c00395{word-spacing:79.755520pt;}
.ws6_c00395{word-spacing:1401.578837pt;}
._2_c00395{margin-left:-6.912000pt;}
._1_c00395{margin-left:-5.184000pt;}
._0_c00395{margin-left:-4.032000pt;}
._3_c00395{margin-left:-2.880000pt;}
._5_c00395{margin-left:-1.943424pt;}
._4_c00395{margin-left:-0.973056pt;}
._6_c00395{width:1.171499pt;}
.fs3_c00395{font-size:75.008000pt;}
.fs2_c00395{font-size:138.880000pt;}
.fs1_c00395{font-size:139.008000pt;}
.fs0_c00395{font-size:192.000000pt;}
.y0_c00395{bottom:0.000000pt;}
.yb_c00395{bottom:21.088000pt;}
.ya_c00395{bottom:125.888000pt;}
.y9_c00395{bottom:167.493333pt;}
.y8_c00395{bottom:209.093333pt;}
.y7_c00395{bottom:250.693333pt;}
.y6_c00395{bottom:292.320000pt;}
.y5_c00395{bottom:333.920000pt;}
.y4_c00395{bottom:375.520000pt;}
.y3_c00395{bottom:417.120000pt;}
.y2_c00395{bottom:458.746667pt;}
.y1_c00395{bottom:597.053333pt;}
.h4_c00395{height:76.802625pt;}
.h3_c00395{height:138.134062pt;}
.h2_c00395{height:138.261375pt;}
.h1_c00395{height:182.812500pt;}
.h0_c00395{height:720.000000pt;}
.w1_c00395{width:959.999986pt;}
.w0_c00395{width:960.000000pt;}
.x0_c00395{left:0.000000pt;}
.x4_c00395{left:28.447986pt;}
.x2_c00395{left:58.687986pt;}
.x3_c00395{left:112.799986pt;}
.x1_c00395{left:337.733319pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f39ac21dbfff0dafb6b857d0.woff')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.130371;font-style:normal;font-weight:normal;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_8ae20b14555bc5c7b8d40c9b.woff')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.172852;font-style:normal;font-weight:normal;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_9d084a9ddf7cfd92ec23d446.woff')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00396;src:url('chunks/assets/font_3645d505154bbbfcfbf1d8ce.woff')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00396;src:url('chunks/assets/font_df8f1054b0e0c55e65dc5f09.woff')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:1.172852;font-style: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;}
.ls3_c00396{letter-spacing:-0.302400px;}
.ls2_c00396{letter-spacing:-0.158400px;}
.ls1_c00396{letter-spacing:0.000000px;}
.ls0_c00396{letter-spacing:18.818496px;}
.sc__c00396{text-shadow:none;}
.sc1_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00396{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc1_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00396{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
}
.ws1_c00396{word-spacing:-66.847968px;}
.ws0_c00396{word-spacing:-31.242240px;}
.ws4_c00396{word-spacing:-19.070784px;}
.ws2_c00396{word-spacing:-0.372960px;}
.ws5_c00396{word-spacing:0.000000px;}
.ws3_c00396{word-spacing:1576.776192px;}
._0_c00396{margin-left:-8.856000px;}
._4_c00396{margin-left:-7.560000px;}
._3_c00396{margin-left:-6.048000px;}
._2_c00396{margin-left:-4.968000px;}
._1_c00396{margin-left:-3.888000px;}
._5_c00396{margin-left:-1.797120px;}
._6_c00396{width:1.244160px;}
.fc2_c00396{color:rgb(255,255,255);}
.fc1_c00396{color:rgb(64,64,64);}
.fc0_c00396{color:rgb(158,54,17);}
.fs3_c00396{font-size:84.384000px;}
.fs1_c00396{font-size:138.240000px;}
.fs2_c00396{font-size:138.384000px;}
.fs0_c00396{font-size:216.000000px;}
.y0_c00396{bottom:0.000000px;}
.ye_c00396{bottom:23.724000px;}
.yd_c00396{bottom:95.364000px;}
.yc_c00396{bottom:132.660000px;}
.yb_c00396{bottom:169.920000px;}
.ya_c00396{bottom:225.180000px;}
.y9_c00396{bottom:262.440000px;}
.y8_c00396{bottom:299.730000px;}
.y7_c00396{bottom:354.990000px;}
.y6_c00396{bottom:392.250000px;}
.y5_c00396{bottom:429.510000px;}
.y4_c00396{bottom:484.815000px;}
.y3_c00396{bottom:522.075000px;}
.y2_c00396{bottom:559.335000px;}
.y1_c00396{bottom:668.520000px;}
.h4_c00396{height:86.402953px;}
.h2_c00396{height:137.497500px;}
.h3_c00396{height:137.640727px;}
.h1_c00396{height:205.664062px;}
.h0_c00396{height:810.000000px;}
.w1_c00396{width:1079.999984px;}
.w0_c00396{width:1080.000000px;}
.x0_c00396{left:0.000000px;}
.x3_c00396{left:32.003984px;}
.x2_c00396{left:108.035984px;}
.x1_c00396{left:296.099984px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls3_c00396{letter-spacing:-0.268800pt;}
.ls2_c00396{letter-spacing:-0.140800pt;}
.ls1_c00396{letter-spacing:0.000000pt;}
.ls0_c00396{letter-spacing:16.727552pt;}
.ws1_c00396{word-spacing:-59.420416pt;}
.ws0_c00396{word-spacing:-27.770880pt;}
.ws4_c00396{word-spacing:-16.951808pt;}
.ws2_c00396{word-spacing:-0.331520pt;}
.ws5_c00396{word-spacing:0.000000pt;}
.ws3_c00396{word-spacing:1401.578837pt;}
._0_c00396{margin-left:-7.872000pt;}
._4_c00396{margin-left:-6.720000pt;}
._3_c00396{margin-left:-5.376000pt;}
._2_c00396{margin-left:-4.416000pt;}
._1_c00396{margin-left:-3.456000pt;}
._5_c00396{margin-left:-1.597440pt;}
._6_c00396{width:1.105920pt;}
.fs3_c00396{font-size:75.008000pt;}
.fs1_c00396{font-size:122.880000pt;}
.fs2_c00396{font-size:123.008000pt;}
.fs0_c00396{font-size:192.000000pt;}
.y0_c00396{bottom:0.000000pt;}
.ye_c00396{bottom:21.088000pt;}
.yd_c00396{bottom:84.768000pt;}
.yc_c00396{bottom:117.920000pt;}
.yb_c00396{bottom:151.040000pt;}
.ya_c00396{bottom:200.160000pt;}
.y9_c00396{bottom:233.280000pt;}
.y8_c00396{bottom:266.426667pt;}
.y7_c00396{bottom:315.546667pt;}
.y6_c00396{bottom:348.666667pt;}
.y5_c00396{bottom:381.786667pt;}
.y4_c00396{bottom:430.946667pt;}
.y3_c00396{bottom:464.066667pt;}
.y2_c00396{bottom:497.186667pt;}
.y1_c00396{bottom:594.240000pt;}
.h4_c00396{height:76.802625pt;}
.h2_c00396{height:122.220000pt;}
.h3_c00396{height:122.347313pt;}
.h1_c00396{height:182.812500pt;}
.h0_c00396{height:720.000000pt;}
.w1_c00396{width:959.999986pt;}
.w0_c00396{width:960.000000pt;}
.x0_c00396{left:0.000000pt;}
.x3_c00396{left:28.447986pt;}
.x2_c00396{left:96.031986pt;}
.x1_c00396{left:263.199986pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6e038d80c0cbaea5f388c88.woff')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.130371;font-style:normal;font-weight:normal;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_2b472775b7ae23557e923846.woff')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.202148;font-style:normal;font-weight:normal;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_ce4f3e0c966cdd99853c850c.woff')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.202148;font-style:normal;font-weight:normal;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_73346f8181b203db94a0d8a6.woff')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.172852;font-style:normal;font-weight:normal;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_151ffb52a6bb1cfdbc197350.woff')format("woff");}.ff5_c00397{font-family:ff5_c00397;line-height:1.172852;font-style: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;}
.ls6_c00397{letter-spacing:-0.302400px;}
.ls5_c00397{letter-spacing:-0.158400px;}
.ls2_c00397{letter-spacing:0.000000px;}
.ls3_c00397{letter-spacing:0.106800px;}
.ls4_c00397{letter-spacing:0.180000px;}
.ls1_c00397{letter-spacing:18.818496px;}
.ls0_c00397{letter-spacing:40.680000px;}
.sc__c00397{text-shadow:none;}
.sc1_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00397{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc1_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00397{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
}
.ws0_c00397{word-spacing:-40.680000px;}
.ws5_c00397{word-spacing:-19.070784px;}
.ws2_c00397{word-spacing:-1.534752px;}
.ws1_c00397{word-spacing:-0.720000px;}
.ws3_c00397{word-spacing:-0.372960px;}
.ws6_c00397{word-spacing:0.000000px;}
.ws4_c00397{word-spacing:1576.776192px;}
._3_c00397{margin-left:-9.288000px;}
._4_c00397{margin-left:-7.344000px;}
._1_c00397{margin-left:-6.048000px;}
._0_c00397{margin-left:-4.536000px;}
._2_c00397{margin-left:-3.240000px;}
._5_c00397{margin-left:-1.980000px;}
._6_c00397{width:1.812000px;}
._7_c00397{width:20.272032px;}
.fc3_c00397{color:rgb(255,255,255);}
.fc2_c00397{color:rgb(64,64,64);}
.fc1_c00397{color:rgb(0,32,96);}
.fc0_c00397{color:rgb(158,54,17);}
.fs5_c00397{font-size:84.384000px;}
.fs3_c00397{font-size:144.000000px;}
.fs4_c00397{font-size:144.144000px;}
.fs2_c00397{font-size:180.000000px;}
.fs1_c00397{font-size:180.144000px;}
.fs0_c00397{font-size:216.000000px;}
.y0_c00397{bottom:0.000000px;}
.yc_c00397{bottom:23.724000px;}
.yb_c00397{bottom:133.200000px;}
.ya_c00397{bottom:174.960000px;}
.y9_c00397{bottom:216.930000px;}
.y8_c00397{bottom:261.210000px;}
.y7_c00397{bottom:312.870000px;}
.y6_c00397{bottom:380.055000px;}
.y5_c00397{bottom:421.995000px;}
.y4_c00397{bottom:463.755000px;}
.y3_c00397{bottom:508.035000px;}
.y2_c00397{bottom:559.725000px;}
.y1_c00397{bottom:671.190000px;}
.h6_c00397{height:86.402953px;}
.h4_c00397{height:143.226562px;}
.h5_c00397{height:143.369789px;}
.h3_c00397{height:184.306641px;}
.h2_c00397{height:184.454086px;}
.h1_c00397{height:205.664062px;}
.h0_c00397{height:810.000000px;}
.w1_c00397{width:1079.999984px;}
.w0_c00397{width:1080.000000px;}
.x0_c00397{left:0.000000px;}
.x5_c00397{left:32.003984px;}
.x1_c00397{left:105.335984px;}
.x4_c00397{left:107.315984px;}
.x3_c00397{left:133.415984px;}
.x2_c00397{left:494.354984px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls6_c00397{letter-spacing:-0.268800pt;}
.ls5_c00397{letter-spacing:-0.140800pt;}
.ls2_c00397{letter-spacing:0.000000pt;}
.ls3_c00397{letter-spacing:0.094933pt;}
.ls4_c00397{letter-spacing:0.160000pt;}
.ls1_c00397{letter-spacing:16.727552pt;}
.ls0_c00397{letter-spacing:36.160000pt;}
.ws0_c00397{word-spacing:-36.160000pt;}
.ws5_c00397{word-spacing:-16.951808pt;}
.ws2_c00397{word-spacing:-1.364224pt;}
.ws1_c00397{word-spacing:-0.640000pt;}
.ws3_c00397{word-spacing:-0.331520pt;}
.ws6_c00397{word-spacing:0.000000pt;}
.ws4_c00397{word-spacing:1401.578837pt;}
._3_c00397{margin-left:-8.256000pt;}
._4_c00397{margin-left:-6.528000pt;}
._1_c00397{margin-left:-5.376000pt;}
._0_c00397{margin-left:-4.032000pt;}
._2_c00397{margin-left:-2.880000pt;}
._5_c00397{margin-left:-1.760000pt;}
._6_c00397{width:1.610667pt;}
._7_c00397{width:18.019584pt;}
.fs5_c00397{font-size:75.008000pt;}
.fs3_c00397{font-size:128.000000pt;}
.fs4_c00397{font-size:128.128000pt;}
.fs2_c00397{font-size:160.000000pt;}
.fs1_c00397{font-size:160.128000pt;}
.fs0_c00397{font-size:192.000000pt;}
.y0_c00397{bottom:0.000000pt;}
.yc_c00397{bottom:21.088000pt;}
.yb_c00397{bottom:118.400000pt;}
.ya_c00397{bottom:155.520000pt;}
.y9_c00397{bottom:192.826667pt;}
.y8_c00397{bottom:232.186667pt;}
.y7_c00397{bottom:278.106667pt;}
.y6_c00397{bottom:337.826667pt;}
.y5_c00397{bottom:375.106667pt;}
.y4_c00397{bottom:412.226667pt;}
.y3_c00397{bottom:451.586667pt;}
.y2_c00397{bottom:497.533333pt;}
.y1_c00397{bottom:596.613333pt;}
.h6_c00397{height:76.802625pt;}
.h4_c00397{height:127.312500pt;}
.h5_c00397{height:127.439813pt;}
.h3_c00397{height:163.828125pt;}
.h2_c00397{height:163.959187pt;}
.h1_c00397{height:182.812500pt;}
.h0_c00397{height:720.000000pt;}
.w1_c00397{width:959.999986pt;}
.w0_c00397{width:960.000000pt;}
.x0_c00397{left:0.000000pt;}
.x5_c00397{left:28.447986pt;}
.x1_c00397{left:93.631986pt;}
.x4_c00397{left:95.391986pt;}
.x3_c00397{left:118.591986pt;}
.x2_c00397{left:439.426652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ddd8bf8f3293631fbc609336.woff')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.130371;font-style:normal;font-weight:normal;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_9acc452d4d908a90391600ac.woff')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.202148;font-style:normal;font-weight:normal;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_36cf466c98c7a5d644a35185.woff')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_a6d96cc4d555ac98cc3573a0.woff')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00398;src:url('chunks/assets/font_6f7d343801b41ce6393f90fe.woff')format("woff");}.ff5_c00398{font-family:ff5_c00398;line-height:1.172852;font-style: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;}
.ls3_c00398{letter-spacing:-0.360000px;}
.ls7_c00398{letter-spacing:-0.302400px;}
.ls4_c00398{letter-spacing:-0.180000px;}
.ls6_c00398{letter-spacing:-0.158400px;}
.ls1_c00398{letter-spacing:0.000000px;}
.ls5_c00398{letter-spacing:0.106800px;}
.ls2_c00398{letter-spacing:0.180000px;}
.ls0_c00398{letter-spacing:18.818496px;}
.sc__c00398{text-shadow:none;}
.sc1_c00398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00398{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00398{-webkit-text-stroke:0px transparent;}
.sc1_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00398{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
}
.ws2_c00398{word-spacing:-40.680000px;}
.ws6_c00398{word-spacing:-35.310240px;}
.wsa_c00398{word-spacing:-19.070784px;}
.ws5_c00398{word-spacing:-2.824080px;}
.ws7_c00398{word-spacing:-1.534752px;}
.ws3_c00398{word-spacing:-1.356720px;}
.ws1_c00398{word-spacing:-1.080000px;}
.ws4_c00398{word-spacing:-0.385200px;}
.ws8_c00398{word-spacing:-0.372960px;}
.wsb_c00398{word-spacing:0.000000px;}
.ws0_c00398{word-spacing:0.696000px;}
.ws9_c00398{word-spacing:1576.776192px;}
._3_c00398{margin-left:-9.288000px;}
._4_c00398{margin-left:-7.344000px;}
._1_c00398{margin-left:-6.048000px;}
._0_c00398{margin-left:-4.536000px;}
._2_c00398{margin-left:-3.240000px;}
._5_c00398{margin-left:-1.620000px;}
._6_c00398{width:1.440000px;}
.fc3_c00398{color:rgb(255,255,255);}
.fc2_c00398{color:rgb(64,64,64);}
.fc1_c00398{color:rgb(0,32,96);}
.fc0_c00398{color:rgb(158,54,17);}
.fs5_c00398{font-size:84.384000px;}
.fs2_c00398{font-size:156.240000px;}
.fs4_c00398{font-size:156.384000px;}
.fs1_c00398{font-size:180.000000px;}
.fs3_c00398{font-size:180.144000px;}
.fs0_c00398{font-size:216.000000px;}
.y0_c00398{bottom:0.000000px;}
.yb_c00398{bottom:23.724000px;}
.ya_c00398{bottom:84.492000px;}
.y9_c00398{bottom:147.492000px;}
.y8_c00398{bottom:212.295000px;}
.y7_c00398{bottom:263.985000px;}
.y6_c00398{bottom:331.845000px;}
.y5_c00398{bottom:395.025000px;}
.y4_c00398{bottom:459.870000px;}
.y3_c00398{bottom:511.350000px;}
.y2_c00398{bottom:563.010000px;}
.y1_c00398{bottom:679.290000px;}
.h6_c00398{height:86.402953px;}
.h3_c00398{height:155.400820px;}
.h5_c00398{height:155.544047px;}
.h2_c00398{height:184.306641px;}
.h4_c00398{height:184.454086px;}
.h1_c00398{height:205.664062px;}
.h0_c00398{height:810.000000px;}
.w1_c00398{width:1079.999984px;}
.w0_c00398{width:1080.000000px;}
.x0_c00398{left:0.000000px;}
.x7_c00398{left:32.003984px;}
.x3_c00398{left:71.459984px;}
.x6_c00398{left:86.939984px;}
.x1_c00398{left:105.335984px;}
.x5_c00398{left:107.315984px;}
.x4_c00398{left:137.015984px;}
.x2_c00398{left:494.354984px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls3_c00398{letter-spacing:-0.320000pt;}
.ls7_c00398{letter-spacing:-0.268800pt;}
.ls4_c00398{letter-spacing:-0.160000pt;}
.ls6_c00398{letter-spacing:-0.140800pt;}
.ls1_c00398{letter-spacing:0.000000pt;}
.ls5_c00398{letter-spacing:0.094933pt;}
.ls2_c00398{letter-spacing:0.160000pt;}
.ls0_c00398{letter-spacing:16.727552pt;}
.ws2_c00398{word-spacing:-36.160000pt;}
.ws6_c00398{word-spacing:-31.386880pt;}
.wsa_c00398{word-spacing:-16.951808pt;}
.ws5_c00398{word-spacing:-2.510293pt;}
.ws7_c00398{word-spacing:-1.364224pt;}
.ws3_c00398{word-spacing:-1.205973pt;}
.ws1_c00398{word-spacing:-0.960000pt;}
.ws4_c00398{word-spacing:-0.342400pt;}
.ws8_c00398{word-spacing:-0.331520pt;}
.wsb_c00398{word-spacing:0.000000pt;}
.ws0_c00398{word-spacing:0.618667pt;}
.ws9_c00398{word-spacing:1401.578837pt;}
._3_c00398{margin-left:-8.256000pt;}
._4_c00398{margin-left:-6.528000pt;}
._1_c00398{margin-left:-5.376000pt;}
._0_c00398{margin-left:-4.032000pt;}
._2_c00398{margin-left:-2.880000pt;}
._5_c00398{margin-left:-1.440000pt;}
._6_c00398{width:1.280000pt;}
.fs5_c00398{font-size:75.008000pt;}
.fs2_c00398{font-size:138.880000pt;}
.fs4_c00398{font-size:139.008000pt;}
.fs1_c00398{font-size:160.000000pt;}
.fs3_c00398{font-size:160.128000pt;}
.fs0_c00398{font-size:192.000000pt;}
.y0_c00398{bottom:0.000000pt;}
.yb_c00398{bottom:21.088000pt;}
.ya_c00398{bottom:75.104000pt;}
.y9_c00398{bottom:131.104000pt;}
.y8_c00398{bottom:188.706667pt;}
.y7_c00398{bottom:234.653333pt;}
.y6_c00398{bottom:294.973333pt;}
.y5_c00398{bottom:351.133333pt;}
.y4_c00398{bottom:408.773333pt;}
.y3_c00398{bottom:454.533333pt;}
.y2_c00398{bottom:500.453333pt;}
.y1_c00398{bottom:603.813333pt;}
.h6_c00398{height:76.802625pt;}
.h3_c00398{height:138.134062pt;}
.h5_c00398{height:138.261375pt;}
.h2_c00398{height:163.828125pt;}
.h4_c00398{height:163.959187pt;}
.h1_c00398{height:182.812500pt;}
.h0_c00398{height:720.000000pt;}
.w1_c00398{width:959.999986pt;}
.w0_c00398{width:960.000000pt;}
.x0_c00398{left:0.000000pt;}
.x7_c00398{left:28.447986pt;}
.x3_c00398{left:63.519986pt;}
.x6_c00398{left:77.279986pt;}
.x1_c00398{left:93.631986pt;}
.x5_c00398{left:95.391986pt;}
.x4_c00398{left:121.791986pt;}
.x2_c00398{left:439.426652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a560d08e8e49132bd3193d05.woff')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.130371;font-style:normal;font-weight:normal;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_a04a1ee5617c437ad7eeba38.woff')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.202148;font-style:normal;font-weight:normal;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_12b25422e4dd6fb4df037741.woff')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00399;src:url('chunks/assets/font_344086b16b886762b11c1bd9.woff')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00399;src:url('chunks/assets/font_a1ed0d06ba37a9053552dcbe.woff')format("woff");}.ff5_c00399{font-family:ff5_c00399;line-height:1.172852;font-style: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;}
.ls4_c00399{letter-spacing:-0.302400px;}
.ls3_c00399{letter-spacing:-0.158400px;}
.ls2_c00399{letter-spacing:-0.094200px;}
.ls1_c00399{letter-spacing:0.000000px;}
.ls0_c00399{letter-spacing:18.818496px;}
.sc__c00399{text-shadow:none;}
.sc1_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00399{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc1_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00399{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
}
.ws0_c00399{word-spacing:-32.544000px;}
.ws4_c00399{word-spacing:-19.070784px;}
.ws1_c00399{word-spacing:-1.534752px;}
.ws2_c00399{word-spacing:-0.372960px;}
.ws5_c00399{word-spacing:0.000000px;}
.ws3_c00399{word-spacing:1576.776192px;}
._3_c00399{margin-left:-9.510336px;}
._5_c00399{margin-left:-7.845840px;}
._1_c00399{margin-left:-6.268176px;}
._0_c00399{margin-left:-4.755168px;}
._2_c00399{margin-left:-3.242160px;}
._4_c00399{margin-left:-1.296000px;}
.fc3_c00399{color:rgb(255,255,255);}
.fc2_c00399{color:rgb(64,64,64);}
.fc1_c00399{color:rgb(0,32,96);}
.fc0_c00399{color:rgb(158,54,17);}
.fs3_c00399{font-size:84.384000px;}
.fs2_c00399{font-size:144.000000px;}
.fs1_c00399{font-size:167.760000px;}
.fs0_c00399{font-size:216.144000px;}
.y0_c00399{bottom:0.000000px;}
.y7_c00399{bottom:23.724000px;}
.y6_c00399{bottom:382.245000px;}
.y5_c00399{bottom:424.185000px;}
.y4_c00399{bottom:490.110000px;}
.y3_c00399{bottom:564.090000px;}
.y2_c00399{bottom:607.650000px;}
.y1_c00399{bottom:694.590000px;}
.h5_c00399{height:86.402953px;}
.h4_c00399{height:143.226562px;}
.h3_c00399{height:147.445312px;}
.h2_c00399{height:171.773789px;}
.h1_c00399{height:205.801172px;}
.h0_c00399{height:810.000000px;}
.w1_c00399{width:1079.999984px;}
.w0_c00399{width:1080.000000px;}
.x0_c00399{left:0.000000px;}
.x6_c00399{left:32.003984px;}
.x4_c00399{left:71.855984px;}
.x1_c00399{left:120.167984px;}
.x3_c00399{left:164.909984px;}
.x5_c00399{left:171.749984px;}
.x2_c00399{left:507.344984px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls4_c00399{letter-spacing:-0.268800pt;}
.ls3_c00399{letter-spacing:-0.140800pt;}
.ls2_c00399{letter-spacing:-0.083733pt;}
.ls1_c00399{letter-spacing:0.000000pt;}
.ls0_c00399{letter-spacing:16.727552pt;}
.ws0_c00399{word-spacing:-28.928000pt;}
.ws4_c00399{word-spacing:-16.951808pt;}
.ws1_c00399{word-spacing:-1.364224pt;}
.ws2_c00399{word-spacing:-0.331520pt;}
.ws5_c00399{word-spacing:0.000000pt;}
.ws3_c00399{word-spacing:1401.578837pt;}
._3_c00399{margin-left:-8.453632pt;}
._5_c00399{margin-left:-6.974080pt;}
._1_c00399{margin-left:-5.571712pt;}
._0_c00399{margin-left:-4.226816pt;}
._2_c00399{margin-left:-2.881920pt;}
._4_c00399{margin-left:-1.152000pt;}
.fs3_c00399{font-size:75.008000pt;}
.fs2_c00399{font-size:128.000000pt;}
.fs1_c00399{font-size:149.120000pt;}
.fs0_c00399{font-size:192.128000pt;}
.y0_c00399{bottom:0.000000pt;}
.y7_c00399{bottom:21.088000pt;}
.y6_c00399{bottom:339.773333pt;}
.y5_c00399{bottom:377.053333pt;}
.y4_c00399{bottom:435.653333pt;}
.y3_c00399{bottom:501.413333pt;}
.y2_c00399{bottom:540.133333pt;}
.y1_c00399{bottom:617.413333pt;}
.h5_c00399{height:76.802625pt;}
.h4_c00399{height:127.312500pt;}
.h3_c00399{height:131.062500pt;}
.h2_c00399{height:152.687812pt;}
.h1_c00399{height:182.934375pt;}
.h0_c00399{height:720.000000pt;}
.w1_c00399{width:959.999986pt;}
.w0_c00399{width:960.000000pt;}
.x0_c00399{left:0.000000pt;}
.x6_c00399{left:28.447986pt;}
.x4_c00399{left:63.871986pt;}
.x1_c00399{left:106.815986pt;}
.x3_c00399{left:146.586652pt;}
.x5_c00399{left:152.666652pt;}
.x2_c00399{left:450.973319pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec6613329908510b4562ea46.woff')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.130371;font-style:normal;font-weight:normal;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_3645d505154bbbfcfbf1d8ce.woff')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.202148;font-style:normal;font-weight:normal;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_968ddd89c627e73f110b395b.woff')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.202148;font-style:normal;font-weight:normal;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_e0db61476886892f304185ee.woff')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.172852;font-style:normal;font-weight:normal;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_15f942ab245cc6a62b0d2f5c.woff')format("woff");}.ff5_c00400{font-family:ff5_c00400;line-height:1.172852;font-style: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;}
.ls5_c00400{letter-spacing:-0.302400px;}
.ls4_c00400{letter-spacing:-0.158400px;}
.ls3_c00400{letter-spacing:-0.094200px;}
.ls2_c00400{letter-spacing:0.000000px;}
.ls1_c00400{letter-spacing:18.818496px;}
.ls0_c00400{letter-spacing:38.621376px;}
.sc__c00400{text-shadow:none;}
.sc1_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00400{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc1_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00400{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
}
.ws0_c00400{word-spacing:-37.946304px;}
.ws1_c00400{word-spacing:-37.913760px;}
.ws5_c00400{word-spacing:-19.070784px;}
.ws2_c00400{word-spacing:-1.534752px;}
.ws3_c00400{word-spacing:-0.372960px;}
.ws6_c00400{word-spacing:0.000000px;}
.ws4_c00400{word-spacing:1576.776192px;}
._3_c00400{margin-left:-9.288000px;}
._4_c00400{margin-left:-7.344000px;}
._1_c00400{margin-left:-6.048000px;}
._0_c00400{margin-left:-4.536000px;}
._2_c00400{margin-left:-3.240000px;}
._8_c00400{margin-left:-2.216448px;}
._6_c00400{margin-left:-1.031040px;}
._5_c00400{width:1.345824px;}
._7_c00400{width:3.302016px;}
.fc3_c00400{color:rgb(255,255,255);}
.fc2_c00400{color:rgb(64,64,64);}
.fc1_c00400{color:rgb(0,32,96);}
.fc0_c00400{color:rgb(158,54,17);}
.fs3_c00400{font-size:84.384000px;}
.fs1_c00400{font-size:167.760000px;}
.fs2_c00400{font-size:167.904000px;}
.fs0_c00400{font-size:216.000000px;}
.y0_c00400{bottom:0.000000px;}
.y6_c00400{bottom:23.724000px;}
.y5_c00400{bottom:416.190000px;}
.y4_c00400{bottom:464.610000px;}
.y3_c00400{bottom:561.315000px;}
.y2_c00400{bottom:609.735000px;}
.y1_c00400{bottom:691.635000px;}
.h5_c00400{height:86.402953px;}
.h4_c00400{height:166.858945px;}
.h2_c00400{height:171.773789px;}
.h3_c00400{height:171.921234px;}
.h1_c00400{height:205.664062px;}
.h0_c00400{height:810.000000px;}
.w1_c00400{width:1079.999984px;}
.w0_c00400{width:1080.000000px;}
.x0_c00400{left:0.000000px;}
.x5_c00400{left:32.003984px;}
.x1_c00400{left:112.643984px;}
.x4_c00400{left:155.849984px;}
.x3_c00400{left:178.889984px;}
.x2_c00400{left:504.929984px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls5_c00400{letter-spacing:-0.268800pt;}
.ls4_c00400{letter-spacing:-0.140800pt;}
.ls3_c00400{letter-spacing:-0.083733pt;}
.ls2_c00400{letter-spacing:0.000000pt;}
.ls1_c00400{letter-spacing:16.727552pt;}
.ls0_c00400{letter-spacing:34.330112pt;}
.ws0_c00400{word-spacing:-33.730048pt;}
.ws1_c00400{word-spacing:-33.701120pt;}
.ws5_c00400{word-spacing:-16.951808pt;}
.ws2_c00400{word-spacing:-1.364224pt;}
.ws3_c00400{word-spacing:-0.331520pt;}
.ws6_c00400{word-spacing:0.000000pt;}
.ws4_c00400{word-spacing:1401.578837pt;}
._3_c00400{margin-left:-8.256000pt;}
._4_c00400{margin-left:-6.528000pt;}
._1_c00400{margin-left:-5.376000pt;}
._0_c00400{margin-left:-4.032000pt;}
._2_c00400{margin-left:-2.880000pt;}
._8_c00400{margin-left:-1.970176pt;}
._6_c00400{margin-left:-0.916480pt;}
._5_c00400{width:1.196288pt;}
._7_c00400{width:2.935125pt;}
.fs3_c00400{font-size:75.008000pt;}
.fs1_c00400{font-size:149.120000pt;}
.fs2_c00400{font-size:149.248000pt;}
.fs0_c00400{font-size:192.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y6_c00400{bottom:21.088000pt;}
.y5_c00400{bottom:369.946667pt;}
.y4_c00400{bottom:412.986667pt;}
.y3_c00400{bottom:498.946667pt;}
.y2_c00400{bottom:541.986667pt;}
.y1_c00400{bottom:614.786667pt;}
.h5_c00400{height:76.802625pt;}
.h4_c00400{height:148.319063pt;}
.h2_c00400{height:152.687812pt;}
.h3_c00400{height:152.818875pt;}
.h1_c00400{height:182.812500pt;}
.h0_c00400{height:720.000000pt;}
.w1_c00400{width:959.999986pt;}
.w0_c00400{width:960.000000pt;}
.x0_c00400{left:0.000000pt;}
.x5_c00400{left:28.447986pt;}
.x1_c00400{left:100.127986pt;}
.x4_c00400{left:138.533319pt;}
.x3_c00400{left:159.013319pt;}
.x2_c00400{left:448.826652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2fcc5ed38b9c9535000911de.woff')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.130371;font-style:normal;font-weight:normal;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_3645d505154bbbfcfbf1d8ce.woff')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.202148;font-style:normal;font-weight:normal;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_f28732f41f778473a98aef08.woff')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.202148;font-style:normal;font-weight:normal;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_0f747c53aca82a26577268f4.woff')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.172852;font-style:normal;font-weight:normal;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_91163748d90be363ee768ac5.woff')format("woff");}.ff5_c00401{font-family:ff5_c00401;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls6_c00401{letter-spacing:-0.302400px;}
.ls5_c00401{letter-spacing:-0.158400px;}
.ls4_c00401{letter-spacing:-0.096600px;}
.ls2_c00401{letter-spacing:0.000000px;}
.ls3_c00401{letter-spacing:0.049680px;}
.ls1_c00401{letter-spacing:18.818496px;}
.ls0_c00401{letter-spacing:26.522496px;}
.sc__c00401{text-shadow:none;}
.sc1_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00401{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc1_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00401{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
}
.ws0_c00401{word-spacing:-27.206784px;}
.ws4_c00401{word-spacing:-19.070784px;}
.ws1_c00401{word-spacing:-1.534752px;}
.ws2_c00401{word-spacing:-0.372960px;}
.ws5_c00401{word-spacing:0.000000px;}
.ws3_c00401{word-spacing:1576.776192px;}
._3_c00401{margin-left:-9.288000px;}
._4_c00401{margin-left:-7.344000px;}
._1_c00401{margin-left:-6.048000px;}
._0_c00401{margin-left:-4.536000px;}
._2_c00401{margin-left:-3.240000px;}
._5_c00401{margin-left:-1.203840px;}
._6_c00401{width:1.987104px;}
.fc3_c00401{color:rgb(255,255,255);}
.fc2_c00401{color:rgb(64,64,64);}
.fc1_c00401{color:rgb(0,32,96);}
.fc0_c00401{color:rgb(158,54,17);}
.fs3_c00401{font-size:84.384000px;}
.fs2_c00401{font-size:120.384000px;}
.fs1_c00401{font-size:167.760000px;}
.fs0_c00401{font-size:216.000000px;}
.y0_c00401{bottom:0.000000px;}
.y6_c00401{bottom:23.724000px;}
.y5_c00401{bottom:446.010000px;}
.y4_c00401{bottom:512.250000px;}
.y3_c00401{bottom:575.460000px;}
.y2_c00401{bottom:614.160000px;}
.y1_c00401{bottom:695.445000px;}
.h5_c00401{height:86.402953px;}
.h3_c00401{height:123.264281px;}
.h4_c00401{height:166.858945px;}
.h2_c00401{height:171.773789px;}
.h1_c00401{height:205.664062px;}
.h0_c00401{height:810.000000px;}
.w1_c00401{width:1079.999984px;}
.w0_c00401{width:1080.000000px;}
.x0_c00401{left:0.000000px;}
.x5_c00401{left:32.003984px;}
.x4_c00401{left:69.047984px;}
.x3_c00401{left:92.843984px;}
.x1_c00401{left:104.219984px;}
.x2_c00401{left:501.839984px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls6_c00401{letter-spacing:-0.268800pt;}
.ls5_c00401{letter-spacing:-0.140800pt;}
.ls4_c00401{letter-spacing:-0.085867pt;}
.ls2_c00401{letter-spacing:0.000000pt;}
.ls3_c00401{letter-spacing:0.044160pt;}
.ls1_c00401{letter-spacing:16.727552pt;}
.ls0_c00401{letter-spacing:23.575552pt;}
.ws0_c00401{word-spacing:-24.183808pt;}
.ws4_c00401{word-spacing:-16.951808pt;}
.ws1_c00401{word-spacing:-1.364224pt;}
.ws2_c00401{word-spacing:-0.331520pt;}
.ws5_c00401{word-spacing:0.000000pt;}
.ws3_c00401{word-spacing:1401.578837pt;}
._3_c00401{margin-left:-8.256000pt;}
._4_c00401{margin-left:-6.528000pt;}
._1_c00401{margin-left:-5.376000pt;}
._0_c00401{margin-left:-4.032000pt;}
._2_c00401{margin-left:-2.880000pt;}
._5_c00401{margin-left:-1.070080pt;}
._6_c00401{width:1.766315pt;}
.fs3_c00401{font-size:75.008000pt;}
.fs2_c00401{font-size:107.008000pt;}
.fs1_c00401{font-size:149.120000pt;}
.fs0_c00401{font-size:192.000000pt;}
.y0_c00401{bottom:0.000000pt;}
.y6_c00401{bottom:21.088000pt;}
.y5_c00401{bottom:396.453333pt;}
.y4_c00401{bottom:455.333333pt;}
.y3_c00401{bottom:511.520000pt;}
.y2_c00401{bottom:545.920000pt;}
.y1_c00401{bottom:618.173333pt;}
.h5_c00401{height:76.802625pt;}
.h3_c00401{height:109.568250pt;}
.h4_c00401{height:148.319063pt;}
.h2_c00401{height:152.687812pt;}
.h1_c00401{height:182.812500pt;}
.h0_c00401{height:720.000000pt;}
.w1_c00401{width:959.999986pt;}
.w0_c00401{width:960.000000pt;}
.x0_c00401{left:0.000000pt;}
.x5_c00401{left:28.447986pt;}
.x4_c00401{left:61.375986pt;}
.x3_c00401{left:82.527986pt;}
.x1_c00401{left:92.639986pt;}
.x2_c00401{left:446.079986pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1397107b3d1d254f52e8f70.woff')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.202148;font-style:normal;font-weight:normal;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_d59284a916c65e1571530c67.woff')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.202148;font-style:normal;font-weight:normal;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_3709ed3248bf011e74418b29.woff')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.172852;font-style:normal;font-weight:normal;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_9ad21e3d992ca4e33e147eca.woff')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00402;src:url('chunks/assets/font_e760c5f662fe6e9f1ea5e93b.woff')format("woff");}.ff5_c00402{font-family:ff5_c00402;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls4_c00402{letter-spacing:-0.302400px;}
.ls1_c00402{letter-spacing:-0.288000px;}
.ls3_c00402{letter-spacing:-0.158400px;}
.ls2_c00402{letter-spacing:0.000000px;}
.ls0_c00402{letter-spacing:18.818496px;}
.sc__c00402{text-shadow:none;}
.sc1_c00402{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
.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;}
.sc1_c00402{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00402{word-spacing:-32.544000px;}
.ws4_c00402{word-spacing:-19.070784px;}
.ws1_c00402{word-spacing:-1.534752px;}
.ws2_c00402{word-spacing:-0.372960px;}
.ws5_c00402{word-spacing:0.000000px;}
.ws3_c00402{word-spacing:1576.776192px;}
._6_c00402{margin-left:-9.645120px;}
._0_c00402{margin-left:-7.495488px;}
._5_c00402{margin-left:-6.048000px;}
._4_c00402{margin-left:-4.536000px;}
._2_c00402{margin-left:-2.882880px;}
._1_c00402{margin-left:-1.297296px;}
._3_c00402{width:1.585584px;}
.fc2_c00402{color:rgb(158,54,17);}
.fc3_c00402{color:rgb(255,255,255);}
.fc1_c00402{color:rgb(64,64,64);}
.fc0_c00402{color:rgb(0,32,96);}
.fs5_c00402{font-size:84.384000px;}
.fs0_c00402{font-size:144.000000px;}
.fs1_c00402{font-size:144.144000px;}
.fs2_c00402{font-size:156.240000px;}
.fs3_c00402{font-size:156.384000px;}
.fs4_c00402{font-size:216.000000px;}
.y0_c00402{bottom:0.000000px;}
.y7_c00402{bottom:23.724000px;}
.y5_c00402{bottom:407.310000px;}
.y4_c00402{bottom:470.490000px;}
.y3_c00402{bottom:532.770000px;}
.y2_c00402{bottom:571.680000px;}
.y1_c00402{bottom:613.620000px;}
.y6_c00402{bottom:695.445000px;}
.h6_c00402{height:86.402953px;}
.h1_c00402{height:147.445312px;}
.h2_c00402{height:147.592758px;}
.h3_c00402{height:155.400820px;}
.h4_c00402{height:155.544047px;}
.h5_c00402{height:205.664062px;}
.h0_c00402{height:810.000000px;}
.w1_c00402{width:1079.999984px;}
.w0_c00402{width:1080.000000px;}
.x0_c00402{left:0.000000px;}
.x6_c00402{left:32.003984px;}
.x4_c00402{left:68.939984px;}
.x5_c00402{left:104.219984px;}
.x2_c00402{left:127.475984px;}
.x3_c00402{left:486.614984px;}
.x1_c00402{left:507.854984px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls4_c00402{letter-spacing:-0.268800pt;}
.ls1_c00402{letter-spacing:-0.256000pt;}
.ls3_c00402{letter-spacing:-0.140800pt;}
.ls2_c00402{letter-spacing:0.000000pt;}
.ls0_c00402{letter-spacing:16.727552pt;}
.ws0_c00402{word-spacing:-28.928000pt;}
.ws4_c00402{word-spacing:-16.951808pt;}
.ws1_c00402{word-spacing:-1.364224pt;}
.ws2_c00402{word-spacing:-0.331520pt;}
.ws5_c00402{word-spacing:0.000000pt;}
.ws3_c00402{word-spacing:1401.578837pt;}
._6_c00402{margin-left:-8.573440pt;}
._0_c00402{margin-left:-6.662656pt;}
._5_c00402{margin-left:-5.376000pt;}
._4_c00402{margin-left:-4.032000pt;}
._2_c00402{margin-left:-2.562560pt;}
._1_c00402{margin-left:-1.153152pt;}
._3_c00402{width:1.409408pt;}
.fs5_c00402{font-size:75.008000pt;}
.fs0_c00402{font-size:128.000000pt;}
.fs1_c00402{font-size:128.128000pt;}
.fs2_c00402{font-size:138.880000pt;}
.fs3_c00402{font-size:139.008000pt;}
.fs4_c00402{font-size:192.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.y7_c00402{bottom:21.088000pt;}
.y5_c00402{bottom:362.053333pt;}
.y4_c00402{bottom:418.213333pt;}
.y3_c00402{bottom:473.573333pt;}
.y2_c00402{bottom:508.160000pt;}
.y1_c00402{bottom:545.440000pt;}
.y6_c00402{bottom:618.173333pt;}
.h6_c00402{height:76.802625pt;}
.h1_c00402{height:131.062500pt;}
.h2_c00402{height:131.193562pt;}
.h3_c00402{height:138.134062pt;}
.h4_c00402{height:138.261375pt;}
.h5_c00402{height:182.812500pt;}
.h0_c00402{height:720.000000pt;}
.w1_c00402{width:959.999986pt;}
.w0_c00402{width:960.000000pt;}
.x0_c00402{left:0.000000pt;}
.x6_c00402{left:28.447986pt;}
.x4_c00402{left:61.279986pt;}
.x5_c00402{left:92.639986pt;}
.x2_c00402{left:113.311986pt;}
.x3_c00402{left:432.546652pt;}
.x1_c00402{left:451.426652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a6d4f7859ada86ba230cbfd.woff')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.202148;font-style:normal;font-weight:normal;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_4c3339a1ad5ff0a259231b2d.woff')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.202148;font-style:normal;font-weight:normal;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_59dc63ca84a8b89240078c94.woff')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.172852;font-style:normal;font-weight:normal;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_19be17a70c86f76d326791c8.woff')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00403;src:url('chunks/assets/font_d96cb3c4feebe9451ec91d6f.woff')format("woff");}.ff5_c00403{font-family:ff5_c00403;line-height:1.130371;font-style: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;}
.ls6_c00403{letter-spacing:-0.302400px;}
.ls5_c00403{letter-spacing:-0.158400px;}
.ls2_c00403{letter-spacing:-0.094200px;}
.ls3_c00403{letter-spacing:0.000000px;}
.ls4_c00403{letter-spacing:0.198000px;}
.ls1_c00403{letter-spacing:18.818496px;}
.ls0_c00403{letter-spacing:32.976000px;}
.sc__c00403{text-shadow:none;}
.sc1_c00403{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
.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;}
.sc1_c00403{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00403{word-spacing:-122.907600px;}
.ws6_c00403{word-spacing:-84.384000px;}
.ws4_c00403{word-spacing:-65.686176px;}
.ws1_c00403{word-spacing:-32.544000px;}
.ws3_c00403{word-spacing:-1.534752px;}
.ws0_c00403{word-spacing:-0.120000px;}
.ws7_c00403{word-spacing:0.000000px;}
.ws5_c00403{word-spacing:1576.776192px;}
._4_c00403{margin-left:-11.520000px;}
._8_c00403{margin-left:-9.360000px;}
._0_c00403{margin-left:-8.064000px;}
._7_c00403{margin-left:-6.048000px;}
._6_c00403{margin-left:-4.536000px;}
._2_c00403{margin-left:-3.168000px;}
._1_c00403{margin-left:-1.440000px;}
._3_c00403{width:1.008000px;}
._5_c00403{width:1515.714240px;}
.fc2_c00403{color:rgb(158,54,17);}
.fc3_c00403{color:rgb(255,255,255);}
.fc1_c00403{color:rgb(64,64,64);}
.fc0_c00403{color:rgb(0,32,96);}
.fs4_c00403{font-size:84.384000px;}
.fs1_c00403{font-size:144.000000px;}
.fs2_c00403{font-size:156.240000px;}
.fs0_c00403{font-size:167.760000px;}
.fs3_c00403{font-size:216.000000px;}
.y0_c00403{bottom:0.000000px;}
.y6_c00403{bottom:23.724000px;}
.y4_c00403{bottom:468.000000px;}
.y3_c00403{bottom:530.280000px;}
.y2_c00403{bottom:569.190000px;}
.y1_c00403{bottom:612.750000px;}
.y5_c00403{bottom:696.270000px;}
.h5_c00403{height:86.402953px;}
.h2_c00403{height:147.445312px;}
.h3_c00403{height:155.400820px;}
.h1_c00403{height:171.773789px;}
.h4_c00403{height:205.664062px;}
.h0_c00403{height:810.000000px;}
.w1_c00403{width:1079.999984px;}
.w0_c00403{width:1080.000000px;}
.x0_c00403{left:0.000000px;}
.x6_c00403{left:32.003984px;}
.x4_c00403{left:76.607984px;}
.x5_c00403{left:110.447984px;}
.x2_c00403{left:138.167984px;}
.x3_c00403{left:374.729984px;}
.x1_c00403{left:509.399984px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls6_c00403{letter-spacing:-0.268800pt;}
.ls5_c00403{letter-spacing:-0.140800pt;}
.ls2_c00403{letter-spacing:-0.083733pt;}
.ls3_c00403{letter-spacing:0.000000pt;}
.ls4_c00403{letter-spacing:0.176000pt;}
.ls1_c00403{letter-spacing:16.727552pt;}
.ls0_c00403{letter-spacing:29.312000pt;}
.ws2_c00403{word-spacing:-109.251200pt;}
.ws6_c00403{word-spacing:-75.008000pt;}
.ws4_c00403{word-spacing:-58.387712pt;}
.ws1_c00403{word-spacing:-28.928000pt;}
.ws3_c00403{word-spacing:-1.364224pt;}
.ws0_c00403{word-spacing:-0.106667pt;}
.ws7_c00403{word-spacing:0.000000pt;}
.ws5_c00403{word-spacing:1401.578837pt;}
._4_c00403{margin-left:-10.240000pt;}
._8_c00403{margin-left:-8.320000pt;}
._0_c00403{margin-left:-7.168000pt;}
._7_c00403{margin-left:-5.376000pt;}
._6_c00403{margin-left:-4.032000pt;}
._2_c00403{margin-left:-2.816000pt;}
._1_c00403{margin-left:-1.280000pt;}
._3_c00403{width:0.896000pt;}
._5_c00403{width:1347.301547pt;}
.fs4_c00403{font-size:75.008000pt;}
.fs1_c00403{font-size:128.000000pt;}
.fs2_c00403{font-size:138.880000pt;}
.fs0_c00403{font-size:149.120000pt;}
.fs3_c00403{font-size:192.000000pt;}
.y0_c00403{bottom:0.000000pt;}
.y6_c00403{bottom:21.088000pt;}
.y4_c00403{bottom:416.000000pt;}
.y3_c00403{bottom:471.360000pt;}
.y2_c00403{bottom:505.946667pt;}
.y1_c00403{bottom:544.666667pt;}
.y5_c00403{bottom:618.906667pt;}
.h5_c00403{height:76.802625pt;}
.h2_c00403{height:131.062500pt;}
.h3_c00403{height:138.134062pt;}
.h1_c00403{height:152.687812pt;}
.h4_c00403{height:182.812500pt;}
.h0_c00403{height:720.000000pt;}
.w1_c00403{width:959.999986pt;}
.w0_c00403{width:960.000000pt;}
.x0_c00403{left:0.000000pt;}
.x6_c00403{left:28.447986pt;}
.x4_c00403{left:68.095986pt;}
.x5_c00403{left:98.175986pt;}
.x2_c00403{left:122.815986pt;}
.x3_c00403{left:333.093319pt;}
.x1_c00403{left:452.799986pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3645d505154bbbfcfbf1d8ce.woff')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.202148;font-style:normal;font-weight:normal;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_4444ae7f29453167c4cf8043.woff')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.202148;font-style:normal;font-weight:normal;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_d316ae93a6ace0c08547da35.woff')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_6716c87265cc7b47f7145f78.woff')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00404;src:url('chunks/assets/font_996a86cadaf9e371b7813c4e.woff')format("woff");}.ff5_c00404{font-family:ff5_c00404;line-height:1.172852;font-style: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;}
.ls4_c00404{letter-spacing:-0.302400px;}
.ls3_c00404{letter-spacing:-0.158400px;}
.ls1_c00404{letter-spacing:-0.013680px;}
.ls2_c00404{letter-spacing:0.000000px;}
.ls0_c00404{letter-spacing:18.818496px;}
.sc__c00404{text-shadow:none;}
.sc1_c00404{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
.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;}
.sc1_c00404{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:-128.107968px;}
.ws1_c00404{word-spacing:-127.779360px;}
.ws5_c00404{word-spacing:-84.384000px;}
.ws3_c00404{word-spacing:-65.686176px;}
.ws2_c00404{word-spacing:-1.534752px;}
.ws6_c00404{word-spacing:0.000000px;}
.ws4_c00404{word-spacing:1576.776192px;}
._4_c00404{margin-left:-9.394560px;}
._1_c00404{margin-left:-8.280720px;}
._6_c00404{margin-left:-6.704640px;}
._7_c00404{margin-left:-5.492160px;}
._5_c00404{margin-left:-4.371840px;}
._2_c00404{margin-left:-2.343600px;}
._0_c00404{margin-left:-1.249920px;}
._3_c00404{width:1.093680px;}
.fc2_c00404{color:rgb(158,54,17);}
.fc3_c00404{color:rgb(255,255,255);}
.fc1_c00404{color:rgb(64,64,64);}
.fc0_c00404{color:rgb(0,32,96);}
.fs4_c00404{font-size:84.384000px;}
.fs0_c00404{font-size:156.240000px;}
.fs2_c00404{font-size:167.760000px;}
.fs1_c00404{font-size:167.904000px;}
.fs3_c00404{font-size:216.000000px;}
.y0_c00404{bottom:0.000000px;}
.y6_c00404{bottom:23.724000px;}
.y4_c00404{bottom:461.775000px;}
.y3_c00404{bottom:518.145000px;}
.y2_c00404{bottom:573.765000px;}
.y1_c00404{bottom:609.405000px;}
.y5_c00404{bottom:683.130000px;}
.h5_c00404{height:86.402953px;}
.h1_c00404{height:159.978164px;}
.h3_c00404{height:166.858945px;}
.h2_c00404{height:167.002172px;}
.h4_c00404{height:205.664062px;}
.h0_c00404{height:810.000000px;}
.w1_c00404{width:1079.999984px;}
.w0_c00404{width:1080.000000px;}
.x0_c00404{left:0.000000px;}
.x5_c00404{left:32.003984px;}
.x3_c00404{left:66.635984px;}
.x4_c00404{left:110.447984px;}
.x2_c00404{left:186.329984px;}
.x1_c00404{left:502.304984px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls4_c00404{letter-spacing:-0.268800pt;}
.ls3_c00404{letter-spacing:-0.140800pt;}
.ls1_c00404{letter-spacing:-0.012160pt;}
.ls2_c00404{letter-spacing:0.000000pt;}
.ls0_c00404{letter-spacing:16.727552pt;}
.ws0_c00404{word-spacing:-113.873749pt;}
.ws1_c00404{word-spacing:-113.581653pt;}
.ws5_c00404{word-spacing:-75.008000pt;}
.ws3_c00404{word-spacing:-58.387712pt;}
.ws2_c00404{word-spacing:-1.364224pt;}
.ws6_c00404{word-spacing:0.000000pt;}
.ws4_c00404{word-spacing:1401.578837pt;}
._4_c00404{margin-left:-8.350720pt;}
._1_c00404{margin-left:-7.360640pt;}
._6_c00404{margin-left:-5.959680pt;}
._7_c00404{margin-left:-4.881920pt;}
._5_c00404{margin-left:-3.886080pt;}
._2_c00404{margin-left:-2.083200pt;}
._0_c00404{margin-left:-1.111040pt;}
._3_c00404{width:0.972160pt;}
.fs4_c00404{font-size:75.008000pt;}
.fs0_c00404{font-size:138.880000pt;}
.fs2_c00404{font-size:149.120000pt;}
.fs1_c00404{font-size:149.248000pt;}
.fs3_c00404{font-size:192.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.y6_c00404{bottom:21.088000pt;}
.y4_c00404{bottom:410.466667pt;}
.y3_c00404{bottom:460.573333pt;}
.y2_c00404{bottom:510.013333pt;}
.y1_c00404{bottom:541.693333pt;}
.y5_c00404{bottom:607.226667pt;}
.h5_c00404{height:76.802625pt;}
.h1_c00404{height:142.202812pt;}
.h3_c00404{height:148.319063pt;}
.h2_c00404{height:148.446375pt;}
.h4_c00404{height:182.812500pt;}
.h0_c00404{height:720.000000pt;}
.w1_c00404{width:959.999986pt;}
.w0_c00404{width:960.000000pt;}
.x0_c00404{left:0.000000pt;}
.x5_c00404{left:28.447986pt;}
.x3_c00404{left:59.231986pt;}
.x4_c00404{left:98.175986pt;}
.x2_c00404{left:165.626652pt;}
.x1_c00404{left:446.493319pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3645d505154bbbfcfbf1d8ce.woff')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.202148;font-style:normal;font-weight:normal;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_b8703d828ba2d7413ef164fc.woff')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.202148;font-style:normal;font-weight:normal;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_8af08951f2e2ccee93a204d3.woff')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00405;src:url('chunks/assets/font_8be9dfc2133032e233a42481.woff')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00405;src:url('chunks/assets/font_e2e51bbdda03b374bac81b93.woff')format("woff");}.ff5_c00405{font-family:ff5_c00405;line-height:1.172852;font-style: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;}
.ls4_c00405{letter-spacing:-0.302400px;}
.ls3_c00405{letter-spacing:-0.158400px;}
.ls1_c00405{letter-spacing:-0.013680px;}
.ls2_c00405{letter-spacing:0.000000px;}
.ls0_c00405{letter-spacing:18.818496px;}
.sc__c00405{text-shadow:none;}
.sc1_c00405{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
.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;}
.sc1_c00405{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00405{word-spacing:-19.070784px;}
.ws0_c00405{word-spacing:-1.534752px;}
.ws1_c00405{word-spacing:-0.372960px;}
.ws4_c00405{word-spacing:0.000000px;}
.ws2_c00405{word-spacing:1576.776192px;}
._5_c00405{margin-left:-9.783936px;}
._6_c00405{margin-left:-7.406352px;}
._4_c00405{margin-left:-6.268176px;}
._3_c00405{margin-left:-4.755168px;}
._1_c00405{margin-left:-2.968560px;}
._0_c00405{margin-left:-1.874880px;}
._2_c00405{width:1.718640px;}
._7_c00405{width:20.192112px;}
.fc2_c00405{color:rgb(158,54,17);}
.fc3_c00405{color:rgb(255,255,255);}
.fc1_c00405{color:rgb(64,64,64);}
.fc0_c00405{color:rgb(0,32,96);}
.fs3_c00405{font-size:84.384000px;}
.fs1_c00405{font-size:144.000000px;}
.fs0_c00405{font-size:156.240000px;}
.fs2_c00405{font-size:216.144000px;}
.y0_c00405{bottom:0.000000px;}
.y7_c00405{bottom:23.724000px;}
.y5_c00405{bottom:446.430000px;}
.y4_c00405{bottom:497.550000px;}
.y3_c00405{bottom:548.895000px;}
.y2_c00405{bottom:605.595000px;}
.y1_c00405{bottom:642.675000px;}
.y6_c00405{bottom:706.245000px;}
.h4_c00405{height:86.402953px;}
.h2_c00405{height:143.226562px;}
.h1_c00405{height:159.978164px;}
.h3_c00405{height:205.801172px;}
.h0_c00405{height:810.000000px;}
.w1_c00405{width:1079.999984px;}
.w0_c00405{width:1080.000000px;}
.x0_c00405{left:0.000000px;}
.x6_c00405{left:32.003984px;}
.x3_c00405{left:64.799984px;}
.x5_c00405{left:122.183984px;}
.x4_c00405{left:270.029984px;}
.x2_c00405{left:279.029984px;}
.x1_c00405{left:500.474984px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls4_c00405{letter-spacing:-0.268800pt;}
.ls3_c00405{letter-spacing:-0.140800pt;}
.ls1_c00405{letter-spacing:-0.012160pt;}
.ls2_c00405{letter-spacing:0.000000pt;}
.ls0_c00405{letter-spacing:16.727552pt;}
.ws3_c00405{word-spacing:-16.951808pt;}
.ws0_c00405{word-spacing:-1.364224pt;}
.ws1_c00405{word-spacing:-0.331520pt;}
.ws4_c00405{word-spacing:0.000000pt;}
.ws2_c00405{word-spacing:1401.578837pt;}
._5_c00405{margin-left:-8.696832pt;}
._6_c00405{margin-left:-6.583424pt;}
._4_c00405{margin-left:-5.571712pt;}
._3_c00405{margin-left:-4.226816pt;}
._1_c00405{margin-left:-2.638720pt;}
._0_c00405{margin-left:-1.666560pt;}
._2_c00405{width:1.527680pt;}
._7_c00405{width:17.948544pt;}
.fs3_c00405{font-size:75.008000pt;}
.fs1_c00405{font-size:128.000000pt;}
.fs0_c00405{font-size:138.880000pt;}
.fs2_c00405{font-size:192.128000pt;}
.y0_c00405{bottom:0.000000pt;}
.y7_c00405{bottom:21.088000pt;}
.y5_c00405{bottom:396.826667pt;}
.y4_c00405{bottom:442.266667pt;}
.y3_c00405{bottom:487.906667pt;}
.y2_c00405{bottom:538.306667pt;}
.y1_c00405{bottom:571.266667pt;}
.y6_c00405{bottom:627.773333pt;}
.h4_c00405{height:76.802625pt;}
.h2_c00405{height:127.312500pt;}
.h1_c00405{height:142.202812pt;}
.h3_c00405{height:182.934375pt;}
.h0_c00405{height:720.000000pt;}
.w1_c00405{width:959.999986pt;}
.w0_c00405{width:960.000000pt;}
.x0_c00405{left:0.000000pt;}
.x6_c00405{left:28.447986pt;}
.x3_c00405{left:57.599986pt;}
.x5_c00405{left:108.607986pt;}
.x4_c00405{left:240.026652pt;}
.x2_c00405{left:248.026652pt;}
.x1_c00405{left:444.866652pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1242c0464dc56244200d6904.woff')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.130371;font-style:normal;font-weight:normal;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_dba1ad0577a48ad2ff746493.woff')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.202148;font-style:normal;font-weight:normal;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_3645d505154bbbfcfbf1d8ce.woff')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00406;src:url('chunks/assets/font_21d569f0c934ff82617ebb7d.woff')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00406;src:url('chunks/assets/font_78bcac84e607f8e95620b967.woff')format("woff");}.ff5_c00406{font-family:ff5_c00406;line-height:1.172852;font-style: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;}
.ls3_c00406{letter-spacing:-0.302400px;}
.ls2_c00406{letter-spacing:-0.158400px;}
.ls1_c00406{letter-spacing:0.000000px;}
.ls0_c00406{letter-spacing:18.818496px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00406{word-spacing:-84.384000px;}
.ws0_c00406{word-spacing:-66.847968px;}
.ws1_c00406{word-spacing:-65.686176px;}
.ws4_c00406{word-spacing:0.000000px;}
.ws2_c00406{word-spacing:1576.776192px;}
._2_c00406{margin-left:-7.381440px;}
._4_c00406{margin-left:-6.039360px;}
._3_c00406{margin-left:-4.529520px;}
._0_c00406{margin-left:-3.187440px;}
._1_c00406{margin-left:-1.845360px;}
.fc1_c00406{color:rgb(255,255,255);}
.fc0_c00406{color:rgb(158,54,17);}
.fs1_c00406{font-size:84.384000px;}
.fs0_c00406{font-size:167.760000px;}
.y0_c00406{bottom:0.000000px;}
.y3_c00406{bottom:23.724000px;}
.y2_c00406{bottom:641.235000px;}
.y1_c00406{bottom:684.075000px;}
.h2_c00406{height:86.402953px;}
.h1_c00406{height:159.732422px;}
.h0_c00406{height:810.000000px;}
.w1_c00406{width:1079.999984px;}
.w0_c00406{width:1080.000000px;}
.x0_c00406{left:0.000000px;}
.x3_c00406{left:32.003984px;}
.x1_c00406{left:162.329984px;}
.x2_c00406{left:367.019984px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls3_c00406{letter-spacing:-0.268800pt;}
.ls2_c00406{letter-spacing:-0.140800pt;}
.ls1_c00406{letter-spacing:0.000000pt;}
.ls0_c00406{letter-spacing:16.727552pt;}
.ws3_c00406{word-spacing:-75.008000pt;}
.ws0_c00406{word-spacing:-59.420416pt;}
.ws1_c00406{word-spacing:-58.387712pt;}
.ws4_c00406{word-spacing:0.000000pt;}
.ws2_c00406{word-spacing:1401.578837pt;}
._2_c00406{margin-left:-6.561280pt;}
._4_c00406{margin-left:-5.368320pt;}
._3_c00406{margin-left:-4.026240pt;}
._0_c00406{margin-left:-2.833280pt;}
._1_c00406{margin-left:-1.640320pt;}
.fs1_c00406{font-size:75.008000pt;}
.fs0_c00406{font-size:149.120000pt;}
.y0_c00406{bottom:0.000000pt;}
.y3_c00406{bottom:21.088000pt;}
.y2_c00406{bottom:569.986667pt;}
.y1_c00406{bottom:608.066667pt;}
.h2_c00406{height:76.802625pt;}
.h1_c00406{height:141.984375pt;}
.h0_c00406{height:720.000000pt;}
.w1_c00406{width:959.999986pt;}
.w0_c00406{width:960.000000pt;}
.x0_c00406{left:0.000000pt;}
.x3_c00406{left:28.447986pt;}
.x1_c00406{left:144.293319pt;}
.x2_c00406{left:326.239986pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6caf47d9cbc708db65bc91.woff')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_4df09a9601267521f38eebc5.woff')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.172852;font-style:normal;font-weight:normal;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_f840dd1b70be6901d34d1c0e.woff')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.172852;font-style:normal;font-weight:normal;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_fee0dca894a5b5df11e28e57.woff')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00407;src:url('chunks/assets/font_3645d505154bbbfcfbf1d8ce.woff')format("woff");}.ff5_c00407{font-family:ff5_c00407;line-height:1.202148;font-style: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);}
.m1_c00407{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls5_c00407{letter-spacing:-0.302400px;}
.ls4_c00407{letter-spacing:-0.158400px;}
.ls3_c00407{letter-spacing:0.000000px;}
.ls0_c00407{letter-spacing:0.175800px;}
.ls1_c00407{letter-spacing:18.252480px;}
.ls2_c00407{letter-spacing:18.818496px;}
.sc__c00407{text-shadow:none;}
.sc1_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00407{text-shadow:-0.015em 0 rgb(158,54,17),0 0.015em rgb(158,54,17),0.015em 0 rgb(158,54,17),0 -0.015em  rgb(158,54,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc1_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00407{-webkit-text-stroke:0.015em rgb(158,54,17);text-shadow:none;}
}
.ws4_c00407{word-spacing:-66.847968px;}
.ws7_c00407{word-spacing:-19.070784px;}
.ws1_c00407{word-spacing:-17.573760px;}
.ws5_c00407{word-spacing:-0.372960px;}
.ws8_c00407{word-spacing:0.000000px;}
.ws0_c00407{word-spacing:0.250080px;}
.ws2_c00407{word-spacing:1.045440px;}
.ws3_c00407{word-spacing:1.156176px;}
.ws6_c00407{word-spacing:1576.776192px;}
._2_c00407{margin-left:-7.497360px;}
._1_c00407{margin-left:-5.767200px;}
._0_c00407{margin-left:-4.421520px;}
._6_c00407{margin-left:-3.349872px;}
._3_c00407{margin-left:-1.244160px;}
._5_c00407{width:1.244160px;}
._4_c00407{width:2.410560px;}
._7_c00407{width:19.741680px;}
.fc3_c00407{color:rgb(255,255,255);}
.fc2_c00407{color:rgb(204,153,0);}
.fc1_c00407{color:rgb(64,64,64);}
.fc0_c00407{color:rgb(158,54,17);}
.fs1_c00407{font-size:77.760000px;}
.fs2_c00407{font-size:77.904000px;}
.fs3_c00407{font-size:84.384000px;}
.fs0_c00407{font-size:192.240000px;}
.y0_c00407{bottom:0.000000px;}
.yd_c00407{bottom:23.724000px;}
.y7_c00407{bottom:151.170000px;}
.yc_c00407{bottom:152.925000px;}
.y6_c00407{bottom:174.570000px;}
.yb_c00407{bottom:178.665000px;}
.y5_c00407{bottom:197.970000px;}
.ya_c00407{bottom:204.405000px;}
.y4_c00407{bottom:221.370000px;}
.y9_c00407{bottom:230.145000px;}
.y3_c00407{bottom:244.800000px;}
.y8_c00407{bottom:255.885000px;}
.y2_c00407{bottom:268.200000px;}
.y1_c00407{bottom:622.830000px;}
.h2_c00407{height:77.342344px;}
.h3_c00407{height:77.485570px;}
.h4_c00407{height:86.402953px;}
.h1_c00407{height:158.541680px;}
.h0_c00407{height:810.000000px;}
.w1_c00407{width:1079.999984px;}
.w0_c00407{width:1080.000000px;}
.x0_c00407{left:0.000000px;}
.xd_c00407{left:32.003984px;}
.x1_c00407{left:108.035984px;}
.x2_c00407{left:147.095984px;}
.x6_c00407{left:179.489984px;}
.x5_c00407{left:188.129984px;}
.x3_c00407{left:194.249984px;}
.x7_c00407{left:200.009984px;}
.x4_c00407{left:207.389984px;}
.x8_c00407{left:600.659984px;}
.xa_c00407{left:611.819984px;}
.xc_c00407{left:659.699984px;}
.xb_c00407{left:682.199984px;}
.x9_c00407{left:725.579984px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls5_c00407{letter-spacing:-0.268800pt;}
.ls4_c00407{letter-spacing:-0.140800pt;}
.ls3_c00407{letter-spacing:0.000000pt;}
.ls0_c00407{letter-spacing:0.156267pt;}
.ls1_c00407{letter-spacing:16.224427pt;}
.ls2_c00407{letter-spacing:16.727552pt;}
.ws4_c00407{word-spacing:-59.420416pt;}
.ws7_c00407{word-spacing:-16.951808pt;}
.ws1_c00407{word-spacing:-15.621120pt;}
.ws5_c00407{word-spacing:-0.331520pt;}
.ws8_c00407{word-spacing:0.000000pt;}
.ws0_c00407{word-spacing:0.222293pt;}
.ws2_c00407{word-spacing:0.929280pt;}
.ws3_c00407{word-spacing:1.027712pt;}
.ws6_c00407{word-spacing:1401.578837pt;}
._2_c00407{margin-left:-6.664320pt;}
._1_c00407{margin-left:-5.126400pt;}
._0_c00407{margin-left:-3.930240pt;}
._6_c00407{margin-left:-2.977664pt;}
._3_c00407{margin-left:-1.105920pt;}
._5_c00407{width:1.105920pt;}
._4_c00407{width:2.142720pt;}
._7_c00407{width:17.548160pt;}
.fs1_c00407{font-size:69.120000pt;}
.fs2_c00407{font-size:69.248000pt;}
.fs3_c00407{font-size:75.008000pt;}
.fs0_c00407{font-size:170.880000pt;}
.y0_c00407{bottom:0.000000pt;}
.yd_c00407{bottom:21.088000pt;}
.y7_c00407{bottom:134.373333pt;}
.yc_c00407{bottom:135.933333pt;}
.y6_c00407{bottom:155.173333pt;}
.yb_c00407{bottom:158.813333pt;}
.y5_c00407{bottom:175.973333pt;}
.ya_c00407{bottom:181.693333pt;}
.y4_c00407{bottom:196.773333pt;}
.y9_c00407{bottom:204.573333pt;}
.y3_c00407{bottom:217.600000pt;}
.y8_c00407{bottom:227.453333pt;}
.y2_c00407{bottom:238.400000pt;}
.y1_c00407{bottom:553.626667pt;}
.h2_c00407{height:68.748750pt;}
.h3_c00407{height:68.876063pt;}
.h4_c00407{height:76.802625pt;}
.h1_c00407{height:140.925938pt;}
.h0_c00407{height:720.000000pt;}
.w1_c00407{width:959.999986pt;}
.w0_c00407{width:960.000000pt;}
.x0_c00407{left:0.000000pt;}
.xd_c00407{left:28.447986pt;}
.x1_c00407{left:96.031986pt;}
.x2_c00407{left:130.751986pt;}
.x6_c00407{left:159.546652pt;}
.x5_c00407{left:167.226652pt;}
.x3_c00407{left:172.666652pt;}
.x7_c00407{left:177.786652pt;}
.x4_c00407{left:184.346652pt;}
.x8_c00407{left:533.919986pt;}
.xa_c00407{left:543.839986pt;}
.xc_c00407{left:586.399986pt;}
.xb_c00407{left:606.399986pt;}
.x9_c00407{left:644.959986pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4350b1888c0e8071a458d9ea.woff')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.132812;font-style:normal;font-weight:normal;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_28ffc70add3e1c21155c9c29.woff')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.147949;font-style:normal;font-weight:normal;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_88c12a572b7985a8d3579d3a.woff')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.147949;font-style: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;}
.ls0_c00408{letter-spacing:0.000000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00408{word-spacing:-32.508000px;}
.ws1_c00408{word-spacing:0.000000px;}
._1_c00408{margin-left:-14.113728px;}
._2_c00408{margin-left:-3.888000px;}
._3_c00408{margin-left:-1.081440px;}
._0_c00408{width:1.319040px;}
._4_c00408{width:2.340000px;}
.fc2_c00408{color:rgb(146,208,80);}
.fc1_c00408{color:rgb(0,0,0);}
.fc0_c00408{color:rgb(144,194,38);}
.fs2_c00408{font-size:108.000000px;}
.fs3_c00408{font-size:108.144000px;}
.fs1_c00408{font-size:131.760000px;}
.fs0_c00408{font-size:131.904000px;}
.y0_c00408{bottom:0.000000px;}
.y7_c00408{bottom:108.540000px;}
.y6_c00408{bottom:220.755000px;}
.y5_c00408{bottom:253.185000px;}
.y4_c00408{bottom:346.860000px;}
.y3_c00408{bottom:379.260000px;}
.y2_c00408{bottom:529.710000px;}
.y1_c00408{bottom:565.380000px;}
.h3_c00408{height:101.408203px;}
.h4_c00408{height:101.543414px;}
.h2_c00408{height:122.238281px;}
.h1_c00408{height:122.371875px;}
.h0_c00408{height:810.000000px;}
.w1_c00408{width:1439.999979px;}
.w0_c00408{width:1440.000000px;}
.x0_c00408{left:0.000000px;}
.x3_c00408{left:678.959979px;}
.x1_c00408{left:681.809979px;}
.x4_c00408{left:748.079979px;}
.x2_c00408{left:770.909979px;}
.x7_c00408{left:775.724979px;}
.x5_c00408{left:792.899979px;}
.x6_c00408{left:841.139979px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ws0_c00408{word-spacing:-28.896000pt;}
.ws1_c00408{word-spacing:0.000000pt;}
._1_c00408{margin-left:-12.545536pt;}
._2_c00408{margin-left:-3.456000pt;}
._3_c00408{margin-left:-0.961280pt;}
._0_c00408{width:1.172480pt;}
._4_c00408{width:2.080000pt;}
.fs2_c00408{font-size:96.000000pt;}
.fs3_c00408{font-size:96.128000pt;}
.fs1_c00408{font-size:117.120000pt;}
.fs0_c00408{font-size:117.248000pt;}
.y0_c00408{bottom:0.000000pt;}
.y7_c00408{bottom:96.480000pt;}
.y6_c00408{bottom:196.226667pt;}
.y5_c00408{bottom:225.053333pt;}
.y4_c00408{bottom:308.320000pt;}
.y3_c00408{bottom:337.120000pt;}
.y2_c00408{bottom:470.853333pt;}
.y1_c00408{bottom:502.560000pt;}
.h3_c00408{height:90.140625pt;}
.h4_c00408{height:90.260813pt;}
.h2_c00408{height:108.656250pt;}
.h1_c00408{height:108.775000pt;}
.h0_c00408{height:720.000000pt;}
.w1_c00408{width:1279.999981pt;}
.w0_c00408{width:1280.000000pt;}
.x0_c00408{left:0.000000pt;}
.x3_c00408{left:603.519981pt;}
.x1_c00408{left:606.053314pt;}
.x4_c00408{left:664.959981pt;}
.x2_c00408{left:685.253314pt;}
.x7_c00408{left:689.533314pt;}
.x5_c00408{left:704.799981pt;}
.x6_c00408{left:747.679981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f757db02d94d52afade2fba4.woff')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.132812;font-style:normal;font-weight:normal;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_241c07ff9b3b231b8aeb95e6.woff')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:0.834473;font-style:normal;font-weight:normal;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_8b71f2299259d42dff97cca1.woff')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.147949;font-style: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;}
.ls2_c00409{letter-spacing:0.000000px;}
.ls0_c00409{letter-spacing:85.927824px;}
.ls1_c00409{letter-spacing:86.054400px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00409{word-spacing:0.000000px;}
._1_c00409{margin-left:-6.920640px;}
._2_c00409{margin-left:-5.574960px;}
._4_c00409{margin-left:-4.212000px;}
._0_c00409{margin-left:-1.730160px;}
._3_c00409{width:1.081152px;}
.fc1_c00409{color:rgb(64,64,64);}
.fc0_c00409{color:rgb(144,194,38);}
.fs3_c00409{font-size:86.400000px;}
.fs1_c00409{font-size:86.544000px;}
.fs4_c00409{font-size:108.000000px;}
.fs2_c00409{font-size:108.144000px;}
.fs0_c00409{font-size:192.240000px;}
.y0_c00409{bottom:0.000000px;}
.y7_c00409{bottom:301.065000px;}
.y6_c00409{bottom:348.450000px;}
.y5_c00409{bottom:395.970000px;}
.y4_c00409{bottom:428.370000px;}
.y3_c00409{bottom:475.710000px;}
.y2_c00409{bottom:523.080000px;}
.y1_c00409{bottom:685.950000px;}
.h3_c00409{height:101.408203px;}
.h2_c00409{height:101.543414px;}
.h1_c00409{height:178.347656px;}
.h0_c00409{height:810.000000px;}
.w1_c00409{width:1439.999979px;}
.w0_c00409{width:1440.000000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:90.827979px;}
.x2_c00409{left:131.327979px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls2_c00409{letter-spacing:0.000000pt;}
.ls0_c00409{letter-spacing:76.380288pt;}
.ls1_c00409{letter-spacing:76.492800pt;}
.ws0_c00409{word-spacing:0.000000pt;}
._1_c00409{margin-left:-6.151680pt;}
._2_c00409{margin-left:-4.955520pt;}
._4_c00409{margin-left:-3.744000pt;}
._0_c00409{margin-left:-1.537920pt;}
._3_c00409{width:0.961024pt;}
.fs3_c00409{font-size:76.800000pt;}
.fs1_c00409{font-size:76.928000pt;}
.fs4_c00409{font-size:96.000000pt;}
.fs2_c00409{font-size:96.128000pt;}
.fs0_c00409{font-size:170.880000pt;}
.y0_c00409{bottom:0.000000pt;}
.y7_c00409{bottom:267.613333pt;}
.y6_c00409{bottom:309.733333pt;}
.y5_c00409{bottom:351.973333pt;}
.y4_c00409{bottom:380.773333pt;}
.y3_c00409{bottom:422.853333pt;}
.y2_c00409{bottom:464.960000pt;}
.y1_c00409{bottom:609.733333pt;}
.h3_c00409{height:90.140625pt;}
.h2_c00409{height:90.260813pt;}
.h1_c00409{height:158.531250pt;}
.h0_c00409{height:720.000000pt;}
.w1_c00409{width:1279.999981pt;}
.w0_c00409{width:1280.000000pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:80.735981pt;}
.x2_c00409{left:116.735981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_153b2283745bce2d46722c82.woff')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.147949;font-style:normal;font-weight:normal;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_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:0.739746;font-style:normal;font-weight:normal;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_a5f4e4d87ee5b5f5d085d9e9.woff')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.147949;font-style: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;}
.ls1_c00410{letter-spacing:0.000000px;}
.ls0_c00410{letter-spacing:84.960000px;}
.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;}
}
.ws1_c00410{word-spacing:-43.387344px;}
.ws0_c00410{word-spacing:-43.344000px;}
.ws2_c00410{word-spacing:0.000000px;}
._1_c00410{margin-left:-8.195904px;}
._3_c00410{margin-left:-6.192000px;}
._0_c00410{margin-left:-1.057536px;}
._4_c00410{width:1.296000px;}
._2_c00410{width:44.928000px;}
.fc1_c00410{color:rgb(0,0,0);}
.fc0_c00410{color:rgb(144,194,38);}
.fs1_c00410{font-size:144.000000px;}
.fs2_c00410{font-size:144.144000px;}
.fs0_c00410{font-size:264.384000px;}
.y0_c00410{bottom:0.000000px;}
.y1_c00410{bottom:150.990000px;}
.y6_c00410{bottom:477.795000px;}
.y5_c00410{bottom:520.995000px;}
.y4_c00410{bottom:564.195000px;}
.y3_c00410{bottom:607.425000px;}
.y2_c00410{bottom:650.625000px;}
.h2_c00410{height:135.210938px;}
.h3_c00410{height:135.346148px;}
.h1_c00410{height:248.247281px;}
.h0_c00410{height:810.000000px;}
.w1_c00410{width:1439.999979px;}
.w0_c00410{width:1440.000000px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:649.649979px;}
.x2_c00410{left:763.589979px;}
.x3_c00410{left:797.429979px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls1_c00410{letter-spacing:0.000000pt;}
.ls0_c00410{letter-spacing:75.520000pt;}
.ws1_c00410{word-spacing:-38.566528pt;}
.ws0_c00410{word-spacing:-38.528000pt;}
.ws2_c00410{word-spacing:0.000000pt;}
._1_c00410{margin-left:-7.285248pt;}
._3_c00410{margin-left:-5.504000pt;}
._0_c00410{margin-left:-0.940032pt;}
._4_c00410{width:1.152000pt;}
._2_c00410{width:39.936000pt;}
.fs1_c00410{font-size:128.000000pt;}
.fs2_c00410{font-size:128.128000pt;}
.fs0_c00410{font-size:235.008000pt;}
.y0_c00410{bottom:0.000000pt;}
.y1_c00410{bottom:134.213333pt;}
.y6_c00410{bottom:424.706667pt;}
.y5_c00410{bottom:463.106667pt;}
.y4_c00410{bottom:501.506667pt;}
.y3_c00410{bottom:539.933333pt;}
.y2_c00410{bottom:578.333333pt;}
.h2_c00410{height:120.187500pt;}
.h3_c00410{height:120.307688pt;}
.h1_c00410{height:220.664250pt;}
.h0_c00410{height:720.000000pt;}
.w1_c00410{width:1279.999981pt;}
.w0_c00410{width:1280.000000pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:577.466648pt;}
.x2_c00410{left:678.746648pt;}
.x3_c00410{left:708.826648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f66fa8b63112fb53005d1fab.woff')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.147949;font-style: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;}
.ls0_c00411{letter-spacing:0.000000px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00411{word-spacing:-65.059344px;}
.ws1_c00411{word-spacing:0.000000px;}
._0_c00411{width:1.080000px;}
.fc0_c00411{color:rgb(144,194,38);}
.fs0_c00411{font-size:216.000000px;}
.fs1_c00411{font-size:216.144000px;}
.y0_c00411{bottom:0.000000px;}
.y2_c00411{bottom:615.390000px;}
.y1_c00411{bottom:680.190000px;}
.h1_c00411{height:202.816406px;}
.h2_c00411{height:202.951617px;}
.h0_c00411{height:810.000000px;}
.w1_c00411{width:1439.999979px;}
.w0_c00411{width:1440.000000px;}
.x0_c00411{left:0.000000px;}
.x1_c00411{left:502.094979px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls0_c00411{letter-spacing:0.000000pt;}
.ws0_c00411{word-spacing:-57.830528pt;}
.ws1_c00411{word-spacing:0.000000pt;}
._0_c00411{width:0.960000pt;}
.fs0_c00411{font-size:192.000000pt;}
.fs1_c00411{font-size:192.128000pt;}
.y0_c00411{bottom:0.000000pt;}
.y2_c00411{bottom:547.013333pt;}
.y1_c00411{bottom:604.613333pt;}
.h1_c00411{height:180.281250pt;}
.h2_c00411{height:180.401437pt;}
.h0_c00411{height:720.000000pt;}
.w1_c00411{width:1279.999981pt;}
.w0_c00411{width:1280.000000pt;}
.x0_c00411{left:0.000000pt;}
.x1_c00411{left:446.306648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6a8473940ae7d0028334bce.woff')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.132812;font-style:normal;font-weight:normal;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_59c4deca73f0484921b7cb23.woff')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.132812;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_231b754dcad2f2ed35b2516c.woff')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:0.834473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_1e5d4f107cbebbc570711269.woff')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:1.147949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00412;src:url('chunks/assets/font_175e2059c561b0ab1ca18b98.woff')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:1.147949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls2_c00412{letter-spacing:0.000000px;}
.ls1_c00412{letter-spacing:34.351920px;}
.ls0_c00412{letter-spacing:77.826960px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00412{word-spacing:-36.192240px;}
.ws1_c00412{word-spacing:0.000000px;}
._4_c00412{margin-left:-15.901920px;}
._5_c00412{margin-left:-3.559680px;}
._0_c00412{margin-left:-2.306880px;}
._2_c00412{margin-left:-1.153440px;}
._3_c00412{width:1.537920px;}
._1_c00412{width:115.185120px;}
.fc2_c00412{color:transparent;}
.fc1_c00412{color:rgb(64,64,64);}
.fc0_c00412{color:rgb(144,194,38);}
.fs1_c00412{font-size:95.760000px;}
.fs2_c00412{font-size:120.240000px;}
.fs3_c00412{font-size:120.384000px;}
.fs0_c00412{font-size:192.240000px;}
.y0_c00412{bottom:0.000000px;}
.ya_c00412{bottom:148.320000px;}
.y9_c00412{bottom:184.350000px;}
.y8_c00412{bottom:220.350000px;}
.y7_c00412{bottom:271.470000px;}
.y6_c00412{bottom:322.410000px;}
.y5_c00412{bottom:358.455000px;}
.y4_c00412{bottom:394.455000px;}
.y3_c00412{bottom:445.395000px;}
.y2_c00412{bottom:628.350000px;}
.y1_c00412{bottom:685.950000px;}
.h2_c00412{height:112.901133px;}
.h3_c00412{height:113.036344px;}
.h1_c00412{height:178.347656px;}
.h0_c00412{height:810.000000px;}
.w1_c00412{width:1439.999979px;}
.w0_c00412{width:1440.000000px;}
.x0_c00412{left:0.000000px;}
.x1_c00412{left:90.827979px;}
.x2_c00412{left:107.423979px;}
.x3_c00412{left:147.923979px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls2_c00412{letter-spacing:0.000000pt;}
.ls1_c00412{letter-spacing:30.535040pt;}
.ls0_c00412{letter-spacing:69.179520pt;}
.ws0_c00412{word-spacing:-32.170880pt;}
.ws1_c00412{word-spacing:0.000000pt;}
._4_c00412{margin-left:-14.135040pt;}
._5_c00412{margin-left:-3.164160pt;}
._0_c00412{margin-left:-2.050560pt;}
._2_c00412{margin-left:-1.025280pt;}
._3_c00412{width:1.367040pt;}
._1_c00412{width:102.386773pt;}
.fs1_c00412{font-size:85.120000pt;}
.fs2_c00412{font-size:106.880000pt;}
.fs3_c00412{font-size:107.008000pt;}
.fs0_c00412{font-size:170.880000pt;}
.y0_c00412{bottom:0.000000pt;}
.ya_c00412{bottom:131.840000pt;}
.y9_c00412{bottom:163.866667pt;}
.y8_c00412{bottom:195.866667pt;}
.y7_c00412{bottom:241.306667pt;}
.y6_c00412{bottom:286.586667pt;}
.y5_c00412{bottom:318.626667pt;}
.y4_c00412{bottom:350.626667pt;}
.y3_c00412{bottom:395.906667pt;}
.y2_c00412{bottom:558.533333pt;}
.y1_c00412{bottom:609.733333pt;}
.h2_c00412{height:100.356562pt;}
.h3_c00412{height:100.476750pt;}
.h1_c00412{height:158.531250pt;}
.h0_c00412{height:720.000000pt;}
.w1_c00412{width:1279.999981pt;}
.w0_c00412{width:1280.000000pt;}
.x0_c00412{left:0.000000pt;}
.x1_c00412{left:80.735981pt;}
.x2_c00412{left:95.487981pt;}
.x3_c00412{left:131.487981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36d7065ad005b5aca4d09bb6.woff')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.147949;font-style:normal;font-weight:normal;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_a4292ea0b90fc97159b590fe.woff')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.147949;font-style: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;}
.ls0_c00413{letter-spacing:0.000000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00413{word-spacing:-50.495760px;}
.ws1_c00413{word-spacing:0.000000px;}
._0_c00413{margin-left:-5.205024px;}
._1_c00413{margin-left:-1.175328px;}
.fc0_c00413{color:rgb(144,194,38);}
.fs1_c00413{font-size:167.760000px;}
.fs0_c00413{font-size:167.904000px;}
.y0_c00413{bottom:0.000000px;}
.y3_c00413{bottom:601.635000px;}
.y2_c00413{bottom:646.995000px;}
.y1_c00413{bottom:692.385000px;}
.h2_c00413{height:157.520742px;}
.h1_c00413{height:157.655953px;}
.h0_c00413{height:810.000000px;}
.w1_c00413{width:1439.999979px;}
.w0_c00413{width:1440.000000px;}
.x0_c00413{left:0.000000px;}
.x1_c00413{left:90.827979px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls0_c00413{letter-spacing:0.000000pt;}
.ws0_c00413{word-spacing:-44.885120pt;}
.ws1_c00413{word-spacing:0.000000pt;}
._0_c00413{margin-left:-4.626688pt;}
._1_c00413{margin-left:-1.044736pt;}
.fs1_c00413{font-size:149.120000pt;}
.fs0_c00413{font-size:149.248000pt;}
.y0_c00413{bottom:0.000000pt;}
.y3_c00413{bottom:534.786667pt;}
.y2_c00413{bottom:575.106667pt;}
.y1_c00413{bottom:615.453333pt;}
.h2_c00413{height:140.018437pt;}
.h1_c00413{height:140.138625pt;}
.h0_c00413{height:720.000000pt;}
.w1_c00413{width:1279.999981pt;}
.w0_c00413{width:1280.000000pt;}
.x0_c00413{left:0.000000pt;}
.x1_c00413{left:80.735981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1543ab53080576ee786b3b56.woff')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.147949;font-style:normal;font-weight:normal;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_1fc90e953a8214d10b7b87d6.woff')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:0.834473;font-style:normal;font-weight:normal;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_7577e15d2d275d339e551bd9.woff')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.147949;font-style: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.000000px;}
.ls1_c00414{letter-spacing:60.612624px;}
.ls0_c00414{letter-spacing:60.739200px;}
.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:-43.387344px;}
.ws0_c00414{word-spacing:-43.344000px;}
.ws2_c00414{word-spacing:0.000000px;}
._2_c00414{margin-left:-20.160000px;}
._0_c00414{margin-left:-10.368000px;}
._6_c00414{margin-left:-6.192000px;}
._5_c00414{margin-left:-4.612608px;}
._4_c00414{margin-left:-1.152000px;}
._1_c00414{width:1.440000px;}
._3_c00414{width:2.448000px;}
.fc1_c00414{color:rgb(64,64,64);}
.fc0_c00414{color:rgb(144,194,38);}
.fs1_c00414{font-size:115.200000px;}
.fs3_c00414{font-size:115.344000px;}
.fs2_c00414{font-size:144.000000px;}
.fs4_c00414{font-size:144.144000px;}
.fs0_c00414{font-size:216.000000px;}
.y0_c00414{bottom:0.000000px;}
.y7_c00414{bottom:220.425000px;}
.y6_c00414{bottom:263.625000px;}
.y5_c00414{bottom:321.765000px;}
.y4_c00414{bottom:365.010000px;}
.y3_c00414{bottom:423.150000px;}
.y2_c00414{bottom:466.350000px;}
.y1_c00414{bottom:680.190000px;}
.h2_c00414{height:135.210938px;}
.h3_c00414{height:135.346148px;}
.h1_c00414{height:202.816406px;}
.h0_c00414{height:810.000000px;}
.w1_c00414{width:1439.999979px;}
.w0_c00414{width:1440.000000px;}
.x0_c00414{left:0.000000px;}
.x2_c00414{left:83.627979px;}
.x1_c00414{left:90.827979px;}
.x3_c00414{left:124.127979px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls2_c00414{letter-spacing:0.000000pt;}
.ls1_c00414{letter-spacing:53.877888pt;}
.ls0_c00414{letter-spacing:53.990400pt;}
.ws1_c00414{word-spacing:-38.566528pt;}
.ws0_c00414{word-spacing:-38.528000pt;}
.ws2_c00414{word-spacing:0.000000pt;}
._2_c00414{margin-left:-17.920000pt;}
._0_c00414{margin-left:-9.216000pt;}
._6_c00414{margin-left:-5.504000pt;}
._5_c00414{margin-left:-4.100096pt;}
._4_c00414{margin-left:-1.024000pt;}
._1_c00414{width:1.280000pt;}
._3_c00414{width:2.176000pt;}
.fs1_c00414{font-size:102.400000pt;}
.fs3_c00414{font-size:102.528000pt;}
.fs2_c00414{font-size:128.000000pt;}
.fs4_c00414{font-size:128.128000pt;}
.fs0_c00414{font-size:192.000000pt;}
.y0_c00414{bottom:0.000000pt;}
.y7_c00414{bottom:195.933333pt;}
.y6_c00414{bottom:234.333333pt;}
.y5_c00414{bottom:286.013333pt;}
.y4_c00414{bottom:324.453333pt;}
.y3_c00414{bottom:376.133333pt;}
.y2_c00414{bottom:414.533333pt;}
.y1_c00414{bottom:604.613333pt;}
.h2_c00414{height:120.187500pt;}
.h3_c00414{height:120.307688pt;}
.h1_c00414{height:180.281250pt;}
.h0_c00414{height:720.000000pt;}
.w1_c00414{width:1279.999981pt;}
.w0_c00414{width:1280.000000pt;}
.x0_c00414{left:0.000000pt;}
.x2_c00414{left:74.335981pt;}
.x1_c00414{left:80.735981pt;}
.x3_c00414{left:110.335981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9eb37ab6a02f54e35cd31cd.woff')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.132812;font-style:normal;font-weight:normal;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_f04ce3d7d5d8e42e8a289c62.woff')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:0.834473;font-style:normal;font-weight:normal;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_ad221c39a1ef04f2b7842d49.woff')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.147949;font-style:normal;font-weight:normal;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_fdb79e921fe1f99b8a247ee5.woff')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:1.147949;font-style: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;}
.ls2_c00415{letter-spacing:0.000000px;}
.ls1_c00415{letter-spacing:31.644000px;}
.ls0_c00415{letter-spacing:86.054400px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00415{word-spacing:0.000000px;}
._6_c00415{margin-left:-15.349680px;}
._1_c00415{margin-left:-4.361760px;}
._3_c00415{margin-left:-2.180880px;}
._0_c00415{margin-left:-1.174320px;}
._2_c00415{width:1.174320px;}
._5_c00415{width:2.230560px;}
._4_c00415{width:4.529520px;}
.fc1_c00415{color:rgb(64,64,64);}
.fc0_c00415{color:rgb(144,194,38);}
.fs2_c00415{font-size:86.400000px;}
.fs3_c00415{font-size:108.000000px;}
.fs0_c00415{font-size:167.760000px;}
.fs1_c00415{font-size:167.904000px;}
.y0_c00415{bottom:0.000000px;}
.y9_c00415{bottom:201.090000px;}
.y8_c00415{bottom:233.490000px;}
.y7_c00415{bottom:328.215000px;}
.y6_c00415{bottom:360.615000px;}
.y5_c00415{bottom:455.505000px;}
.y4_c00415{bottom:540.645000px;}
.y3_c00415{bottom:591.090000px;}
.y2_c00415{bottom:641.490000px;}
.y1_c00415{bottom:691.890000px;}
.h3_c00415{height:101.408203px;}
.h1_c00415{height:155.636719px;}
.h2_c00415{height:155.770312px;}
.h0_c00415{height:810.000000px;}
.w1_c00415{width:1439.999979px;}
.w0_c00415{width:1440.000000px;}
.x0_c00415{left:0.000000px;}
.x1_c00415{left:90.827979px;}
.x2_c00415{left:131.327979px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls2_c00415{letter-spacing:0.000000pt;}
.ls1_c00415{letter-spacing:28.128000pt;}
.ls0_c00415{letter-spacing:76.492800pt;}
.ws0_c00415{word-spacing:0.000000pt;}
._6_c00415{margin-left:-13.644160pt;}
._1_c00415{margin-left:-3.877120pt;}
._3_c00415{margin-left:-1.938560pt;}
._0_c00415{margin-left:-1.043840pt;}
._2_c00415{width:1.043840pt;}
._5_c00415{width:1.982720pt;}
._4_c00415{width:4.026240pt;}
.fs2_c00415{font-size:76.800000pt;}
.fs3_c00415{font-size:96.000000pt;}
.fs0_c00415{font-size:149.120000pt;}
.fs1_c00415{font-size:149.248000pt;}
.y0_c00415{bottom:0.000000pt;}
.y9_c00415{bottom:178.746667pt;}
.y8_c00415{bottom:207.546667pt;}
.y7_c00415{bottom:291.746667pt;}
.y6_c00415{bottom:320.546667pt;}
.y5_c00415{bottom:404.893333pt;}
.y4_c00415{bottom:480.573333pt;}
.y3_c00415{bottom:525.413333pt;}
.y2_c00415{bottom:570.213333pt;}
.y1_c00415{bottom:615.013333pt;}
.h3_c00415{height:90.140625pt;}
.h1_c00415{height:138.343750pt;}
.h2_c00415{height:138.462500pt;}
.h0_c00415{height:720.000000pt;}
.w1_c00415{width:1279.999981pt;}
.w0_c00415{width:1280.000000pt;}
.x0_c00415{left:0.000000pt;}
.x1_c00415{left:80.735981pt;}
.x2_c00415{left:116.735981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5c7164255e0c348b0450b0a.woff')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.147949;font-style:normal;font-weight:normal;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_8a3354e2c1c0f170166a2910.woff')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.147949;font-style: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);}
.v1_c00416{vertical-align:-14.880000px;}
.v0_c00416{vertical-align:0.000000px;}
.ls3_c00416{letter-spacing:-0.363600px;}
.ls0_c00416{letter-spacing:-0.288000px;}
.ls1_c00416{letter-spacing:-0.144000px;}
.ls2_c00416{letter-spacing:0.000000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00416{word-spacing:-21.672000px;}
.ws6_c00416{word-spacing:0.000000px;}
.ws5_c00416{word-spacing:97.176720px;}
.ws2_c00416{word-spacing:468.888960px;}
.ws3_c00416{word-spacing:527.597760px;}
.ws4_c00416{word-spacing:571.667520px;}
.ws0_c00416{word-spacing:659.616000px;}
._2_c00416{margin-left:-7.884720px;}
._1_c00416{margin-left:-1.179360px;}
._0_c00416{width:498.426240px;}
.fc1_c00416{color:rgb(89,89,89);}
.fc0_c00416{color:rgb(64,64,64);}
.fs0_c00416{font-size:72.000000px;}
.fs1_c00416{font-size:72.144000px;}
.fs2_c00416{font-size:84.240000px;}
.fs3_c00416{font-size:167.760000px;}
.y0_c00416{bottom:0.000000px;}
.y13_c00416{bottom:18.540000px;}
.y11_c00416{bottom:56.235000px;}
.yb_c00416{bottom:83.415000px;}
.y1_c00416{bottom:106.920000px;}
.y5_c00416{bottom:176.220000px;}
.yc_c00416{bottom:176.550000px;}
.y9_c00416{bottom:189.255000px;}
.y4_c00416{bottom:202.290000px;}
.y2_c00416{bottom:219.060000px;}
.y3_c00416{bottom:254.445000px;}
.ya_c00416{bottom:265.605000px;}
.yd_c00416{bottom:269.640000px;}
.y6_c00416{bottom:271.185000px;}
.y8_c00416{bottom:274.935000px;}
.ye_c00416{bottom:362.775000px;}
.yf_c00416{bottom:455.865000px;}
.y7_c00416{bottom:543.090000px;}
.y10_c00416{bottom:549.000000px;}
.y12_c00416{bottom:584.280000px;}
.h2_c00416{height:67.605469px;}
.h3_c00416{height:67.740680px;}
.h4_c00416{height:79.098398px;}
.h5_c00416{height:157.520742px;}
.h1_c00416{height:635.040000px;}
.h0_c00416{height:810.000000px;}
.w1_c00416{width:1015.380000px;}
.w0_c00416{width:1440.000000px;}
.x0_c00416{left:0.000000px;}
.xd_c00416{left:9.900000px;}
.xc_c00416{left:19.296000px;}
.xb_c00416{left:28.728000px;}
.x1_c00416{left:79.920000px;}
.x2_c00416{left:112.395000px;}
.xe_c00416{left:118.230000px;}
.x6_c00416{left:166.215000px;}
.x3_c00416{left:301.350000px;}
.x7_c00416{left:350.490000px;}
.xf_c00416{left:366.300000px;}
.x10_c00416{left:459.975000px;}
.x4_c00416{left:490.350000px;}
.x8_c00416{left:544.140000px;}
.x9_c00416{left:733.140000px;}
.x5_c00416{left:868.320000px;}
.xa_c00416{left:922.110000px;}
@media print{
.v1_c00416{vertical-align:-13.226667pt;}
.v0_c00416{vertical-align:0.000000pt;}
.ls3_c00416{letter-spacing:-0.323200pt;}
.ls0_c00416{letter-spacing:-0.256000pt;}
.ls1_c00416{letter-spacing:-0.128000pt;}
.ls2_c00416{letter-spacing:0.000000pt;}
.ws1_c00416{word-spacing:-19.264000pt;}
.ws6_c00416{word-spacing:0.000000pt;}
.ws5_c00416{word-spacing:86.379307pt;}
.ws2_c00416{word-spacing:416.790187pt;}
.ws3_c00416{word-spacing:468.975787pt;}
.ws4_c00416{word-spacing:508.148907pt;}
.ws0_c00416{word-spacing:586.325333pt;}
._2_c00416{margin-left:-7.008640pt;}
._1_c00416{margin-left:-1.048320pt;}
._0_c00416{width:443.045547pt;}
.fs0_c00416{font-size:64.000000pt;}
.fs1_c00416{font-size:64.128000pt;}
.fs2_c00416{font-size:74.880000pt;}
.fs3_c00416{font-size:149.120000pt;}
.y0_c00416{bottom:0.000000pt;}
.y13_c00416{bottom:16.480000pt;}
.y11_c00416{bottom:49.986667pt;}
.yb_c00416{bottom:74.146667pt;}
.y1_c00416{bottom:95.040000pt;}
.y5_c00416{bottom:156.640000pt;}
.yc_c00416{bottom:156.933333pt;}
.y9_c00416{bottom:168.226667pt;}
.y4_c00416{bottom:179.813333pt;}
.y2_c00416{bottom:194.720000pt;}
.y3_c00416{bottom:226.173333pt;}
.ya_c00416{bottom:236.093333pt;}
.yd_c00416{bottom:239.680000pt;}
.y6_c00416{bottom:241.053333pt;}
.y8_c00416{bottom:244.386667pt;}
.ye_c00416{bottom:322.466667pt;}
.yf_c00416{bottom:405.213333pt;}
.y7_c00416{bottom:482.746667pt;}
.y10_c00416{bottom:488.000000pt;}
.y12_c00416{bottom:519.360000pt;}
.h2_c00416{height:60.093750pt;}
.h3_c00416{height:60.213937pt;}
.h4_c00416{height:70.309687pt;}
.h5_c00416{height:140.018437pt;}
.h1_c00416{height:564.480000pt;}
.h0_c00416{height:720.000000pt;}
.w1_c00416{width:902.560000pt;}
.w0_c00416{width:1280.000000pt;}
.x0_c00416{left:0.000000pt;}
.xd_c00416{left:8.800000pt;}
.xc_c00416{left:17.152000pt;}
.xb_c00416{left:25.536000pt;}
.x1_c00416{left:71.040000pt;}
.x2_c00416{left:99.906667pt;}
.xe_c00416{left:105.093333pt;}
.x6_c00416{left:147.746667pt;}
.x3_c00416{left:267.866667pt;}
.x7_c00416{left:311.546667pt;}
.xf_c00416{left:325.600000pt;}
.x10_c00416{left:408.866667pt;}
.x4_c00416{left:435.866667pt;}
.x8_c00416{left:483.680000pt;}
.x9_c00416{left:651.680000pt;}
.x5_c00416{left:771.840000pt;}
.xa_c00416{left:819.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3965ce464dc1c91b11376e72.woff')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.147949;font-style:normal;font-weight:normal;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_c702c5bb31f4168940502288.woff')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.147949;font-style:normal;font-weight:normal;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_7c0709648aa1cde6e2e99ef2.woff')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:0.834473;font-style: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;}
.ls2_c00417{letter-spacing:0.000000px;}
.ls0_c00417{letter-spacing:85.927824px;}
.ls1_c00417{letter-spacing:86.054400px;}
.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:0.000000px;}
._4_c00417{margin-left:-14.794560px;}
._1_c00417{margin-left:-3.888000px;}
._0_c00417{margin-left:-1.081440px;}
._2_c00417{width:1.104000px;}
._3_c00417{width:26.028000px;}
.fc1_c00417{color:rgb(64,64,64);}
.fc0_c00417{color:rgb(144,194,38);}
.fs4_c00417{font-size:86.400000px;}
.fs2_c00417{font-size:86.544000px;}
.fs5_c00417{font-size:108.000000px;}
.fs3_c00417{font-size:108.144000px;}
.fs0_c00417{font-size:239.760000px;}
.fs1_c00417{font-size:239.904000px;}
.y0_c00417{bottom:0.000000px;}
.y7_c00417{bottom:333.465000px;}
.y6_c00417{bottom:380.850000px;}
.y5_c00417{bottom:428.370000px;}
.y4_c00417{bottom:475.710000px;}
.y3_c00417{bottom:523.080000px;}
.y2_c00417{bottom:602.250000px;}
.y1_c00417{bottom:674.250000px;}
.h4_c00417{height:101.408203px;}
.h3_c00417{height:101.543414px;}
.h1_c00417{height:225.126211px;}
.h2_c00417{height:225.261422px;}
.h0_c00417{height:810.000000px;}
.w1_c00417{width:1439.999979px;}
.w0_c00417{width:1440.000000px;}
.x0_c00417{left:0.000000px;}
.x1_c00417{left:90.827979px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls2_c00417{letter-spacing:0.000000pt;}
.ls0_c00417{letter-spacing:76.380288pt;}
.ls1_c00417{letter-spacing:76.492800pt;}
.ws0_c00417{word-spacing:0.000000pt;}
._4_c00417{margin-left:-13.150720pt;}
._1_c00417{margin-left:-3.456000pt;}
._0_c00417{margin-left:-0.961280pt;}
._2_c00417{width:0.981333pt;}
._3_c00417{width:23.136000pt;}
.fs4_c00417{font-size:76.800000pt;}
.fs2_c00417{font-size:76.928000pt;}
.fs5_c00417{font-size:96.000000pt;}
.fs3_c00417{font-size:96.128000pt;}
.fs0_c00417{font-size:213.120000pt;}
.fs1_c00417{font-size:213.248000pt;}
.y0_c00417{bottom:0.000000pt;}
.y7_c00417{bottom:296.413333pt;}
.y6_c00417{bottom:338.533333pt;}
.y5_c00417{bottom:380.773333pt;}
.y4_c00417{bottom:422.853333pt;}
.y3_c00417{bottom:464.960000pt;}
.y2_c00417{bottom:535.333333pt;}
.y1_c00417{bottom:599.333333pt;}
.h4_c00417{height:90.140625pt;}
.h3_c00417{height:90.260813pt;}
.h1_c00417{height:200.112187pt;}
.h2_c00417{height:200.232375pt;}
.h0_c00417{height:720.000000pt;}
.w1_c00417{width:1279.999981pt;}
.w0_c00417{width:1280.000000pt;}
.x0_c00417{left:0.000000pt;}
.x1_c00417{left:80.735981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4fb5ceefa9775519a05f3e26.woff')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.147949;font-style:normal;font-weight:normal;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_550db62cdcb67704217505f7.woff')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:0.834473;font-style:normal;font-weight:normal;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_fc833620794724f0ea2e49f8.woff')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.147949;font-style: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;}
.ls5_c00418{letter-spacing:-0.430800px;}
.ls3_c00418{letter-spacing:-0.360000px;}
.ls4_c00418{letter-spacing:-0.286800px;}
.ls2_c00418{letter-spacing:0.000000px;}
.ls0_c00418{letter-spacing:86.047824px;}
.ls1_c00418{letter-spacing:86.174400px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00418{word-spacing:-32.508000px;}
.ws8_c00418{word-spacing:-0.792000px;}
.ws6_c00418{word-spacing:-0.725760px;}
.ws4_c00418{word-spacing:-0.649296px;}
.ws9_c00418{word-spacing:-0.540000px;}
.ws1_c00418{word-spacing:-0.432000px;}
.wsa_c00418{word-spacing:0.000000px;}
.ws3_c00418{word-spacing:0.138240px;}
.ws0_c00418{word-spacing:0.216000px;}
.ws5_c00418{word-spacing:0.670752px;}
.ws7_c00418{word-spacing:0.792000px;}
._2_c00418{margin-left:-4.464000px;}
._4_c00418{margin-left:-2.916000px;}
._1_c00418{margin-left:-1.070496px;}
._0_c00418{width:1.080000px;}
._3_c00418{width:34.272000px;}
.fc1_c00418{color:rgb(64,64,64);}
.fc0_c00418{color:rgb(144,194,38);}
.fs4_c00418{font-size:86.400000px;}
.fs1_c00418{font-size:86.544000px;}
.fs3_c00418{font-size:108.000000px;}
.fs2_c00418{font-size:108.144000px;}
.fs0_c00418{font-size:216.000000px;}
.y0_c00418{bottom:0.000000px;}
.y9_c00418{bottom:251.205000px;}
.y8_c00418{bottom:283.605000px;}
.y7_c00418{bottom:331.125000px;}
.y6_c00418{bottom:363.570000px;}
.y5_c00418{bottom:410.910000px;}
.y4_c00418{bottom:443.310000px;}
.y3_c00418{bottom:490.650000px;}
.y2_c00418{bottom:523.080000px;}
.y1_c00418{bottom:680.190000px;}
.h3_c00418{height:101.408203px;}
.h2_c00418{height:101.543414px;}
.h1_c00418{height:202.816406px;}
.h0_c00418{height:810.000000px;}
.w1_c00418{width:1439.999979px;}
.w0_c00418{width:1440.000000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:502.094979px;}
.x2_c00418{left:542.624979px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls5_c00418{letter-spacing:-0.382933pt;}
.ls3_c00418{letter-spacing:-0.320000pt;}
.ls4_c00418{letter-spacing:-0.254933pt;}
.ls2_c00418{letter-spacing:0.000000pt;}
.ls0_c00418{letter-spacing:76.486955pt;}
.ls1_c00418{letter-spacing:76.599467pt;}
.ws2_c00418{word-spacing:-28.896000pt;}
.ws8_c00418{word-spacing:-0.704000pt;}
.ws6_c00418{word-spacing:-0.645120pt;}
.ws4_c00418{word-spacing:-0.577152pt;}
.ws9_c00418{word-spacing:-0.480000pt;}
.ws1_c00418{word-spacing:-0.384000pt;}
.wsa_c00418{word-spacing:0.000000pt;}
.ws3_c00418{word-spacing:0.122880pt;}
.ws0_c00418{word-spacing:0.192000pt;}
.ws5_c00418{word-spacing:0.596224pt;}
.ws7_c00418{word-spacing:0.704000pt;}
._2_c00418{margin-left:-3.968000pt;}
._4_c00418{margin-left:-2.592000pt;}
._1_c00418{margin-left:-0.951552pt;}
._0_c00418{width:0.960000pt;}
._3_c00418{width:30.464000pt;}
.fs4_c00418{font-size:76.800000pt;}
.fs1_c00418{font-size:76.928000pt;}
.fs3_c00418{font-size:96.000000pt;}
.fs2_c00418{font-size:96.128000pt;}
.fs0_c00418{font-size:192.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.y9_c00418{bottom:223.293333pt;}
.y8_c00418{bottom:252.093333pt;}
.y7_c00418{bottom:294.333333pt;}
.y6_c00418{bottom:323.173333pt;}
.y5_c00418{bottom:365.253333pt;}
.y4_c00418{bottom:394.053333pt;}
.y3_c00418{bottom:436.133333pt;}
.y2_c00418{bottom:464.960000pt;}
.y1_c00418{bottom:604.613333pt;}
.h3_c00418{height:90.140625pt;}
.h2_c00418{height:90.260813pt;}
.h1_c00418{height:180.281250pt;}
.h0_c00418{height:720.000000pt;}
.w1_c00418{width:1279.999981pt;}
.w0_c00418{width:1280.000000pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:446.306648pt;}
.x2_c00418{left:482.333314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c44e726623aca84316362930.woff')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.147949;font-style:normal;font-weight:normal;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_b59437156fd4a83f4bbf85eb.woff')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:0.834473;font-style:normal;font-weight:normal;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_a1a049009f767d0b3f1ee660.woff')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.147949;font-style: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.000000px;}
.ls0_c00419{letter-spacing:86.054400px;}
.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:0.000000px;}
._1_c00419{margin-left:-3.888000px;}
._0_c00419{margin-left:-1.080000px;}
._2_c00419{width:1.512000px;}
.fc1_c00419{color:rgb(64,64,64);}
.fc0_c00419{color:rgb(144,194,38);}
.fs1_c00419{font-size:86.400000px;}
.fs2_c00419{font-size:108.000000px;}
.fs0_c00419{font-size:216.000000px;}
.y0_c00419{bottom:0.000000px;}
.y6_c00419{bottom:286.125000px;}
.y5_c00419{bottom:333.465000px;}
.y4_c00419{bottom:380.850000px;}
.y3_c00419{bottom:428.370000px;}
.y2_c00419{bottom:475.710000px;}
.y1_c00419{bottom:680.190000px;}
.h2_c00419{height:101.408203px;}
.h1_c00419{height:202.816406px;}
.h0_c00419{height:810.000000px;}
.w1_c00419{width:1439.999979px;}
.w0_c00419{width:1440.000000px;}
.x0_c00419{left:0.000000px;}
.x1_c00419{left:90.827979px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls1_c00419{letter-spacing:0.000000pt;}
.ls0_c00419{letter-spacing:76.492800pt;}
.ws0_c00419{word-spacing:0.000000pt;}
._1_c00419{margin-left:-3.456000pt;}
._0_c00419{margin-left:-0.960000pt;}
._2_c00419{width:1.344000pt;}
.fs1_c00419{font-size:76.800000pt;}
.fs2_c00419{font-size:96.000000pt;}
.fs0_c00419{font-size:192.000000pt;}
.y0_c00419{bottom:0.000000pt;}
.y6_c00419{bottom:254.333333pt;}
.y5_c00419{bottom:296.413333pt;}
.y4_c00419{bottom:338.533333pt;}
.y3_c00419{bottom:380.773333pt;}
.y2_c00419{bottom:422.853333pt;}
.y1_c00419{bottom:604.613333pt;}
.h2_c00419{height:90.140625pt;}
.h1_c00419{height:180.281250pt;}
.h0_c00419{height:720.000000pt;}
.w1_c00419{width:1279.999981pt;}
.w0_c00419{width:1280.000000pt;}
.x0_c00419{left:0.000000pt;}
.x1_c00419{left:80.735981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1672ba5db90195f6115e36e3.woff')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.147949;font-style:normal;font-weight:normal;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_e40541297befe6ffc3aa3aed.woff')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:0.834473;font-style:normal;font-weight:normal;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_c5cc52560c8fc0392d8c7921.woff')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.147949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls2_c00420{letter-spacing:0.000000px;}
.ls0_c00420{letter-spacing:43.644864px;}
.ls1_c00420{letter-spacing:43.771440px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00420{word-spacing:-50.539104px;}
.ws0_c00420{word-spacing:-50.495760px;}
.ws2_c00420{word-spacing:0.000000px;}
._1_c00420{margin-left:-1.511136px;}
._0_c00420{width:1.080000px;}
.fc1_c00420{color:rgb(64,64,64);}
.fc0_c00420{color:rgb(144,194,38);}
.fs3_c00420{font-size:134.640000px;}
.fs1_c00420{font-size:134.784000px;}
.fs4_c00420{font-size:167.760000px;}
.fs2_c00420{font-size:167.904000px;}
.fs0_c00420{font-size:216.000000px;}
.y0_c00420{bottom:0.000000px;}
.y7_c00420{bottom:211.605000px;}
.y6_c00420{bottom:262.005000px;}
.y5_c00420{bottom:327.345000px;}
.y4_c00420{bottom:392.730000px;}
.y3_c00420{bottom:443.130000px;}
.y2_c00420{bottom:508.680000px;}
.y1_c00420{bottom:680.190000px;}
.h3_c00420{height:157.520742px;}
.h2_c00420{height:157.655953px;}
.h1_c00420{height:202.816406px;}
.h0_c00420{height:810.000000px;}
.w1_c00420{width:1439.999979px;}
.w0_c00420{width:1440.000000px;}
.x0_c00420{left:0.000000px;}
.x1_c00420{left:502.094979px;}
.x2_c00420{left:542.624979px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls2_c00420{letter-spacing:0.000000pt;}
.ls0_c00420{letter-spacing:38.795435pt;}
.ls1_c00420{letter-spacing:38.907947pt;}
.ws1_c00420{word-spacing:-44.923648pt;}
.ws0_c00420{word-spacing:-44.885120pt;}
.ws2_c00420{word-spacing:0.000000pt;}
._1_c00420{margin-left:-1.343232pt;}
._0_c00420{width:0.960000pt;}
.fs3_c00420{font-size:119.680000pt;}
.fs1_c00420{font-size:119.808000pt;}
.fs4_c00420{font-size:149.120000pt;}
.fs2_c00420{font-size:149.248000pt;}
.fs0_c00420{font-size:192.000000pt;}
.y0_c00420{bottom:0.000000pt;}
.y7_c00420{bottom:188.093333pt;}
.y6_c00420{bottom:232.893333pt;}
.y5_c00420{bottom:290.973333pt;}
.y4_c00420{bottom:349.093333pt;}
.y3_c00420{bottom:393.893333pt;}
.y2_c00420{bottom:452.160000pt;}
.y1_c00420{bottom:604.613333pt;}
.h3_c00420{height:140.018437pt;}
.h2_c00420{height:140.138625pt;}
.h1_c00420{height:180.281250pt;}
.h0_c00420{height:720.000000pt;}
.w1_c00420{width:1279.999981pt;}
.w0_c00420{width:1280.000000pt;}
.x0_c00420{left:0.000000pt;}
.x1_c00420{left:446.306648pt;}
.x2_c00420{left:482.333314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_25105abad5908875dce283c2.woff')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.147949;font-style:normal;font-weight:normal;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_b975d9339590bd415d582c24.woff')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:0.834473;font-style:normal;font-weight:normal;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_0f93d6178c19fab9fd85a5c2.woff')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.147949;font-style: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;}
.ls2_c00421{letter-spacing:0.000000px;}
.ls0_c00421{letter-spacing:60.612624px;}
.ls1_c00421{letter-spacing:60.739200px;}
.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:-43.344000px;}
.ws1_c00421{word-spacing:0.000000px;}
._1_c00421{margin-left:-1.296000px;}
._0_c00421{width:1.080000px;}
._2_c00421{width:3.444000px;}
.fc1_c00421{color:rgb(64,64,64);}
.fc0_c00421{color:rgb(144,194,38);}
.fs3_c00421{font-size:115.200000px;}
.fs1_c00421{font-size:115.344000px;}
.fs4_c00421{font-size:144.000000px;}
.fs2_c00421{font-size:144.144000px;}
.fs0_c00421{font-size:216.000000px;}
.y0_c00421{bottom:0.000000px;}
.y5_c00421{bottom:339.765000px;}
.y4_c00421{bottom:397.950000px;}
.y3_c00421{bottom:456.270000px;}
.y2_c00421{bottom:514.440000px;}
.y1_c00421{bottom:680.190000px;}
.h3_c00421{height:135.210938px;}
.h2_c00421{height:135.346148px;}
.h1_c00421{height:202.816406px;}
.h0_c00421{height:810.000000px;}
.w1_c00421{width:1439.999979px;}
.w0_c00421{width:1440.000000px;}
.x0_c00421{left:0.000000px;}
.x1_c00421{left:90.827979px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls2_c00421{letter-spacing:0.000000pt;}
.ls0_c00421{letter-spacing:53.877888pt;}
.ls1_c00421{letter-spacing:53.990400pt;}
.ws0_c00421{word-spacing:-38.528000pt;}
.ws1_c00421{word-spacing:0.000000pt;}
._1_c00421{margin-left:-1.152000pt;}
._0_c00421{width:0.960000pt;}
._2_c00421{width:3.061333pt;}
.fs3_c00421{font-size:102.400000pt;}
.fs1_c00421{font-size:102.528000pt;}
.fs4_c00421{font-size:128.000000pt;}
.fs2_c00421{font-size:128.128000pt;}
.fs0_c00421{font-size:192.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.y5_c00421{bottom:302.013333pt;}
.y4_c00421{bottom:353.733333pt;}
.y3_c00421{bottom:405.573333pt;}
.y2_c00421{bottom:457.280000pt;}
.y1_c00421{bottom:604.613333pt;}
.h3_c00421{height:120.187500pt;}
.h2_c00421{height:120.307688pt;}
.h1_c00421{height:180.281250pt;}
.h0_c00421{height:720.000000pt;}
.w1_c00421{width:1279.999981pt;}
.w0_c00421{width:1280.000000pt;}
.x0_c00421{left:0.000000pt;}
.x1_c00421{left:80.735981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00422{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
}
.y0_c00422{bottom:0.000000px;}
.h0_c00422{height:810.000000px;}
.w0_c00422{width:1440.000000px;}
.x0_c00422{left:0.000000px;}
@media print{
.y0_c00422{bottom:0.000000pt;}
.h0_c00422{height:720.000000pt;}
.w0_c00422{width:1280.000000pt;}
.x0_c00422{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_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_bc8ab4443ade1c2a94be6dca.woff')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.147949;font-style:normal;font-weight:normal;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_4c8014a55ecc734fc848862b.woff')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:0.834473;font-style:normal;font-weight:normal;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_5803fe0bda537a41d9fe26f3.woff')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.147949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls3_c00423{letter-spacing:-0.130800px;}
.ls4_c00423{letter-spacing:-0.093600px;}
.ls2_c00423{letter-spacing:0.000000px;}
.ls5_c00423{letter-spacing:0.262800px;}
.ls1_c00423{letter-spacing:43.554000px;}
.ls0_c00423{letter-spacing:77.826960px;}
.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;}
}
.ws1_c00423{word-spacing:-36.192240px;}
.wse_c00423{word-spacing:0.000000px;}
.wsb_c00423{word-spacing:6.138720px;}
.wsc_c00423{word-spacing:6.471120px;}
.wsd_c00423{word-spacing:7.043040px;}
.ws4_c00423{word-spacing:22.525152px;}
.ws5_c00423{word-spacing:23.115744px;}
.ws6_c00423{word-spacing:23.137536px;}
.ws2_c00423{word-spacing:74.702880px;}
.ws0_c00423{word-spacing:75.082560px;}
.ws3_c00423{word-spacing:75.183120px;}
.ws9_c00423{word-spacing:86.370960px;}
.ws7_c00423{word-spacing:86.414640px;}
.ws8_c00423{word-spacing:86.643360px;}
.wsa_c00423{word-spacing:86.698080px;}
._4_c00423{margin-left:-14.732640px;}
._0_c00423{margin-left:-10.368000px;}
._1_c00423{margin-left:-2.044080px;}
._6_c00423{margin-left:-1.031280px;}
._2_c00423{width:1.082160px;}
._5_c00423{width:43.426320px;}
._3_c00423{width:111.915840px;}
.fc1_c00423{color:rgb(64,64,64);}
.fc0_c00423{color:rgb(144,194,38);}
.fs1_c00423{font-size:95.760000px;}
.fs2_c00423{font-size:120.240000px;}
.fs3_c00423{font-size:120.384000px;}
.fs0_c00423{font-size:216.000000px;}
.y0_c00423{bottom:0.000000px;}
.y9_c00423{bottom:257.325000px;}
.y8_c00423{bottom:293.325000px;}
.y7_c00423{bottom:329.325000px;}
.y6_c00423{bottom:365.370000px;}
.y5_c00423{bottom:401.370000px;}
.y4_c00423{bottom:452.490000px;}
.y3_c00423{bottom:503.430000px;}
.y2_c00423{bottom:554.400000px;}
.y1_c00423{bottom:680.190000px;}
.h2_c00423{height:112.901133px;}
.h3_c00423{height:113.036344px;}
.h1_c00423{height:202.816406px;}
.h0_c00423{height:810.000000px;}
.w1_c00423{width:1439.999979px;}
.w0_c00423{width:1440.000000px;}
.x0_c00423{left:0.000000px;}
.x2_c00423{left:81.827979px;}
.x1_c00423{left:90.827979px;}
.x3_c00423{left:122.327979px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls3_c00423{letter-spacing:-0.116267pt;}
.ls4_c00423{letter-spacing:-0.083200pt;}
.ls2_c00423{letter-spacing:0.000000pt;}
.ls5_c00423{letter-spacing:0.233600pt;}
.ls1_c00423{letter-spacing:38.714667pt;}
.ls0_c00423{letter-spacing:69.179520pt;}
.ws1_c00423{word-spacing:-32.170880pt;}
.wse_c00423{word-spacing:0.000000pt;}
.wsb_c00423{word-spacing:5.456640pt;}
.wsc_c00423{word-spacing:5.752107pt;}
.wsd_c00423{word-spacing:6.260480pt;}
.ws4_c00423{word-spacing:20.022357pt;}
.ws5_c00423{word-spacing:20.547328pt;}
.ws6_c00423{word-spacing:20.566699pt;}
.ws2_c00423{word-spacing:66.402560pt;}
.ws0_c00423{word-spacing:66.740053pt;}
.ws3_c00423{word-spacing:66.829440pt;}
.ws9_c00423{word-spacing:76.774187pt;}
.ws7_c00423{word-spacing:76.813013pt;}
.ws8_c00423{word-spacing:77.016320pt;}
.wsa_c00423{word-spacing:77.064960pt;}
._4_c00423{margin-left:-13.095680pt;}
._0_c00423{margin-left:-9.216000pt;}
._1_c00423{margin-left:-1.816960pt;}
._6_c00423{margin-left:-0.916693pt;}
._2_c00423{width:0.961920pt;}
._5_c00423{width:38.601173pt;}
._3_c00423{width:99.480747pt;}
.fs1_c00423{font-size:85.120000pt;}
.fs2_c00423{font-size:106.880000pt;}
.fs3_c00423{font-size:107.008000pt;}
.fs0_c00423{font-size:192.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y9_c00423{bottom:228.733333pt;}
.y8_c00423{bottom:260.733333pt;}
.y7_c00423{bottom:292.733333pt;}
.y6_c00423{bottom:324.773333pt;}
.y5_c00423{bottom:356.773333pt;}
.y4_c00423{bottom:402.213333pt;}
.y3_c00423{bottom:447.493333pt;}
.y2_c00423{bottom:492.800000pt;}
.y1_c00423{bottom:604.613333pt;}
.h2_c00423{height:100.356562pt;}
.h3_c00423{height:100.476750pt;}
.h1_c00423{height:180.281250pt;}
.h0_c00423{height:720.000000pt;}
.w1_c00423{width:1279.999981pt;}
.w0_c00423{width:1280.000000pt;}
.x0_c00423{left:0.000000pt;}
.x2_c00423{left:72.735981pt;}
.x1_c00423{left:80.735981pt;}
.x3_c00423{left:108.735981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36c9dce2da22873da2006ec2.woff')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.147949;font-style: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:0.000000px;}
._0_c00424{margin-left:-10.374912px;}
.fc0_c00424{color:rgb(144,194,38);}
.fs0_c00424{font-size:216.144000px;}
.y0_c00424{bottom:0.000000px;}
.y1_c00424{bottom:717.585000px;}
.h1_c00424{height:202.951617px;}
.h0_c00424{height:810.000000px;}
.w1_c00424{width:1439.999979px;}
.w0_c00424{width:1440.000000px;}
.x0_c00424{left:0.000000px;}
.x1_c00424{left:88.235979px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls0_c00424{letter-spacing:0.000000pt;}
.ws0_c00424{word-spacing:0.000000pt;}
._0_c00424{margin-left:-9.222144pt;}
.fs0_c00424{font-size:192.128000pt;}
.y0_c00424{bottom:0.000000pt;}
.y1_c00424{bottom:637.853333pt;}
.h1_c00424{height:180.401437pt;}
.h0_c00424{height:720.000000pt;}
.w1_c00424{width:1279.999981pt;}
.w0_c00424{width:1280.000000pt;}
.x0_c00424{left:0.000000pt;}
.x1_c00424{left:78.431981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ca2084daaf7e0ae4ab0fc3d.woff')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.147949;font-style:normal;font-weight:normal;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_bda66ac8fca79cd1f7b51eb5.woff')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.147949;font-style: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;}
.ls2_c00425{letter-spacing:-0.363600px;}
.ls3_c00425{letter-spacing:-0.288000px;}
.ls1_c00425{letter-spacing:0.000000px;}
.ls0_c00425{letter-spacing:0.029952px;}
.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:-65.059344px;}
.ws1_c00425{word-spacing:-21.672000px;}
.ws4_c00425{word-spacing:0.000000px;}
.ws3_c00425{word-spacing:83.352000px;}
.ws2_c00425{word-spacing:83.412000px;}
._0_c00425{margin-left:-10.368000px;}
._3_c00425{margin-left:-5.475456px;}
._2_c00425{margin-left:-1.512000px;}
._1_c00425{width:1.296000px;}
.fc1_c00425{color:rgb(89,89,89);}
.fc0_c00425{color:rgb(144,194,38);}
.fs2_c00425{font-size:72.000000px;}
.fs5_c00425{font-size:72.144000px;}
.fs4_c00425{font-size:111.600000px;}
.fs3_c00425{font-size:111.744000px;}
.fs0_c00425{font-size:216.000000px;}
.fs1_c00425{font-size:216.144000px;}
.y0_c00425{bottom:0.000000px;}
.y11_c00425{bottom:17.784000px;}
.y4_c00425{bottom:53.610000px;}
.y5_c00425{bottom:84.990000px;}
.y3_c00425{bottom:96.480000px;}
.y12_c00425{bottom:96.915000px;}
.y6_c00425{bottom:116.385000px;}
.y13_c00425{bottom:140.190000px;}
.y7_c00425{bottom:147.780000px;}
.y8_c00425{bottom:179.175000px;}
.y14_c00425{bottom:183.495000px;}
.y9_c00425{bottom:210.570000px;}
.y15_c00425{bottom:226.770000px;}
.ya_c00425{bottom:241.950000px;}
.y16_c00425{bottom:270.075000px;}
.yb_c00425{bottom:273.345000px;}
.yc_c00425{bottom:304.740000px;}
.y17_c00425{bottom:313.380000px;}
.yd_c00425{bottom:336.135000px;}
.y18_c00425{bottom:356.655000px;}
.ye_c00425{bottom:367.530000px;}
.y10_c00425{bottom:399.630000px;}
.y19_c00425{bottom:399.960000px;}
.yf_c00425{bottom:432.075000px;}
.y2_c00425{bottom:615.390000px;}
.y1_c00425{bottom:680.190000px;}
.h4_c00425{height:67.605469px;}
.h7_c00425{height:67.740680px;}
.h6_c00425{height:104.788477px;}
.h5_c00425{height:104.923688px;}
.h1_c00425{height:202.816406px;}
.h2_c00425{height:202.951617px;}
.h3_c00425{height:469.800000px;}
.h0_c00425{height:810.000000px;}
.w3_c00425{width:494.280000px;}
.w2_c00425{width:494.460000px;}
.w1_c00425{width:1439.999979px;}
.w0_c00425{width:1440.000000px;}
.x0_c00425{left:0.000000px;}
.x5_c00425{left:9.930000px;}
.x4_c00425{left:19.335000px;}
.x3_c00425{left:38.160000px;}
.x9_c00425{left:71.715000px;}
.x7_c00425{left:80.430000px;}
.x1_c00425{left:90.827979px;}
.x6_c00425{left:123.270000px;}
.x8_c00425{left:206.565000px;}
.x2_c00425{left:600.840000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls2_c00425{letter-spacing:-0.323200pt;}
.ls3_c00425{letter-spacing:-0.256000pt;}
.ls1_c00425{letter-spacing:0.000000pt;}
.ls0_c00425{letter-spacing:0.026624pt;}
.ws0_c00425{word-spacing:-57.830528pt;}
.ws1_c00425{word-spacing:-19.264000pt;}
.ws4_c00425{word-spacing:0.000000pt;}
.ws3_c00425{word-spacing:74.090667pt;}
.ws2_c00425{word-spacing:74.144000pt;}
._0_c00425{margin-left:-9.216000pt;}
._3_c00425{margin-left:-4.867072pt;}
._2_c00425{margin-left:-1.344000pt;}
._1_c00425{width:1.152000pt;}
.fs2_c00425{font-size:64.000000pt;}
.fs5_c00425{font-size:64.128000pt;}
.fs4_c00425{font-size:99.200000pt;}
.fs3_c00425{font-size:99.328000pt;}
.fs0_c00425{font-size:192.000000pt;}
.fs1_c00425{font-size:192.128000pt;}
.y0_c00425{bottom:0.000000pt;}
.y11_c00425{bottom:15.808000pt;}
.y4_c00425{bottom:47.653333pt;}
.y5_c00425{bottom:75.546667pt;}
.y3_c00425{bottom:85.760000pt;}
.y12_c00425{bottom:86.146667pt;}
.y6_c00425{bottom:103.453333pt;}
.y13_c00425{bottom:124.613333pt;}
.y7_c00425{bottom:131.360000pt;}
.y8_c00425{bottom:159.266667pt;}
.y14_c00425{bottom:163.106667pt;}
.y9_c00425{bottom:187.173333pt;}
.y15_c00425{bottom:201.573333pt;}
.ya_c00425{bottom:215.066667pt;}
.y16_c00425{bottom:240.066667pt;}
.yb_c00425{bottom:242.973333pt;}
.yc_c00425{bottom:270.880000pt;}
.y17_c00425{bottom:278.560000pt;}
.yd_c00425{bottom:298.786667pt;}
.y18_c00425{bottom:317.026667pt;}
.ye_c00425{bottom:326.693333pt;}
.y10_c00425{bottom:355.226667pt;}
.y19_c00425{bottom:355.520000pt;}
.yf_c00425{bottom:384.066667pt;}
.y2_c00425{bottom:547.013333pt;}
.y1_c00425{bottom:604.613333pt;}
.h4_c00425{height:60.093750pt;}
.h7_c00425{height:60.213937pt;}
.h6_c00425{height:93.145313pt;}
.h5_c00425{height:93.265500pt;}
.h1_c00425{height:180.281250pt;}
.h2_c00425{height:180.401437pt;}
.h3_c00425{height:417.600000pt;}
.h0_c00425{height:720.000000pt;}
.w3_c00425{width:439.360000pt;}
.w2_c00425{width:439.520000pt;}
.w1_c00425{width:1279.999981pt;}
.w0_c00425{width:1280.000000pt;}
.x0_c00425{left:0.000000pt;}
.x5_c00425{left:8.826667pt;}
.x4_c00425{left:17.186667pt;}
.x3_c00425{left:33.920000pt;}
.x9_c00425{left:63.746667pt;}
.x7_c00425{left:71.493333pt;}
.x1_c00425{left:80.735981pt;}
.x6_c00425{left:109.573333pt;}
.x8_c00425{left:183.613333pt;}
.x2_c00425{left:534.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bedc56d355b40bd3e8bc64f7.woff')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.147949;font-style:normal;font-weight:normal;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_822ae6bf1ed7270d9525a954.woff')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.147949;font-style:normal;font-weight:normal;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_80a36f902bba9d0946384f8d.woff')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:0.834473;font-style: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;}
.ls3_c00426{letter-spacing:-0.294000px;}
.ls2_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:90.357984px;}
.ls1_c00426{letter-spacing:90.484560px;}
.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:0.000000px;}
._3_c00426{margin-left:-5.323968px;}
._1_c00426{margin-left:-2.112000px;}
._4_c00426{margin-left:-1.022400px;}
._0_c00426{width:1.296000px;}
._2_c00426{width:66.168000px;}
.fc1_c00426{color:rgb(64,64,64);}
.fc0_c00426{color:rgb(144,194,38);}
.fs5_c00426{font-size:81.360000px;}
.fs2_c00426{font-size:81.504000px;}
.fs4_c00426{font-size:102.240000px;}
.fs3_c00426{font-size:102.384000px;}
.fs0_c00426{font-size:216.000000px;}
.fs1_c00426{font-size:216.144000px;}
.y0_c00426{bottom:0.000000px;}
.yf_c00426{bottom:112.212000px;}
.ye_c00426{bottom:142.812000px;}
.yd_c00426{bottom:173.415000px;}
.yc_c00426{bottom:204.045000px;}
.yb_c00426{bottom:249.765000px;}
.ya_c00426{bottom:280.365000px;}
.y9_c00426{bottom:310.965000px;}
.y8_c00426{bottom:356.550000px;}
.y7_c00426{bottom:387.150000px;}
.y6_c00426{bottom:417.750000px;}
.y5_c00426{bottom:463.290000px;}
.y4_c00426{bottom:493.890000px;}
.y3_c00426{bottom:524.520000px;}
.y2_c00426{bottom:615.390000px;}
.y1_c00426{bottom:680.190000px;}
.h4_c00426{height:95.999766px;}
.h3_c00426{height:96.134977px;}
.h1_c00426{height:202.816406px;}
.h2_c00426{height:202.951617px;}
.h0_c00426{height:810.000000px;}
.w1_c00426{width:1439.999979px;}
.w0_c00426{width:1440.000000px;}
.x0_c00426{left:0.000000px;}
.x2_c00426{left:626.189979px;}
.x1_c00426{left:664.814979px;}
.x3_c00426{left:666.689979px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls3_c00426{letter-spacing:-0.261333pt;}
.ls2_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:80.318208pt;}
.ls1_c00426{letter-spacing:80.430720pt;}
.ws0_c00426{word-spacing:0.000000pt;}
._3_c00426{margin-left:-4.732416pt;}
._1_c00426{margin-left:-1.877333pt;}
._4_c00426{margin-left:-0.908800pt;}
._0_c00426{width:1.152000pt;}
._2_c00426{width:58.816000pt;}
.fs5_c00426{font-size:72.320000pt;}
.fs2_c00426{font-size:72.448000pt;}
.fs4_c00426{font-size:90.880000pt;}
.fs3_c00426{font-size:91.008000pt;}
.fs0_c00426{font-size:192.000000pt;}
.fs1_c00426{font-size:192.128000pt;}
.y0_c00426{bottom:0.000000pt;}
.yf_c00426{bottom:99.744000pt;}
.ye_c00426{bottom:126.944000pt;}
.yd_c00426{bottom:154.146667pt;}
.yc_c00426{bottom:181.373333pt;}
.yb_c00426{bottom:222.013333pt;}
.ya_c00426{bottom:249.213333pt;}
.y9_c00426{bottom:276.413333pt;}
.y8_c00426{bottom:316.933333pt;}
.y7_c00426{bottom:344.133333pt;}
.y6_c00426{bottom:371.333333pt;}
.y5_c00426{bottom:411.813333pt;}
.y4_c00426{bottom:439.013333pt;}
.y3_c00426{bottom:466.240000pt;}
.y2_c00426{bottom:547.013333pt;}
.y1_c00426{bottom:604.613333pt;}
.h4_c00426{height:85.333125pt;}
.h3_c00426{height:85.453312pt;}
.h1_c00426{height:180.281250pt;}
.h2_c00426{height:180.401437pt;}
.h0_c00426{height:720.000000pt;}
.w1_c00426{width:1279.999981pt;}
.w0_c00426{width:1280.000000pt;}
.x0_c00426{left:0.000000pt;}
.x2_c00426{left:556.613314pt;}
.x1_c00426{left:590.946648pt;}
.x3_c00426{left:592.613314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4245698c6004f44059f20b12.woff')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.132812;font-style:normal;font-weight:normal;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_f8e6a3ae736e8c3e9a80957a.woff')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.132812;font-style:normal;font-weight:normal;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_2793461a3845544139c27c1d.woff')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.147949;font-style:normal;font-weight:normal;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_9ef17627df24843788f65687.woff')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.147949;font-style: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.000000px;}
.ls2_c00427{letter-spacing:0.222000px;}
.ls0_c00427{letter-spacing:29.656080px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00427{word-spacing:-28.867104px;}
.ws0_c00427{word-spacing:-28.823760px;}
.ws2_c00427{word-spacing:0.000000px;}
._0_c00427{margin-left:-7.560000px;}
._2_c00427{margin-left:-2.394000px;}
._4_c00427{margin-left:-1.246752px;}
._1_c00427{width:1.627920px;}
._5_c00427{width:2.877120px;}
._6_c00427{width:743.469408px;}
._3_c00427{width:769.025520px;}
.fc2_c00427{color:rgb(0,0,0);}
.fc1_c00427{color:rgb(255,255,255);}
.fc0_c00427{color:rgb(144,194,38);}
.fs1_c00427{font-size:95.760000px;}
.fs2_c00427{font-size:95.904000px;}
.fs0_c00427{font-size:216.000000px;}
.y0_c00427{bottom:0.000000px;}
.y3_c00427{bottom:100.185000px;}
.y10_c00427{bottom:110.880000px;}
.yf_c00427{bottom:156.090000px;}
.ye_c00427{bottom:189.210000px;}
.y6_c00427{bottom:199.410000px;}
.ya_c00427{bottom:199.440000px;}
.y8_c00427{bottom:220.860000px;}
.y5_c00427{bottom:232.530000px;}
.y9_c00427{bottom:232.590000px;}
.yd_c00427{bottom:295.275000px;}
.y4_c00427{bottom:317.520000px;}
.yc_c00427{bottom:328.425000px;}
.yb_c00427{bottom:420.300000px;}
.y2_c00427{bottom:494.460000px;}
.y7_c00427{bottom:516.930000px;}
.y1_c00427{bottom:680.190000px;}
.h3_c00427{height:88.839844px;}
.h7_c00427{height:88.973438px;}
.h5_c00427{height:89.915273px;}
.h9_c00427{height:90.050484px;}
.h1_c00427{height:200.390625px;}
.h2_c00427{height:218.880000px;}
.h4_c00427{height:450.540000px;}
.h6_c00427{height:450.720000px;}
.ha_c00427{height:539.820000px;}
.hb_c00427{height:675.180000px;}
.h8_c00427{height:678.960000px;}
.h0_c00427{height:810.000000px;}
.w3_c00427{width:245.160000px;}
.w2_c00427{width:245.340000px;}
.w1_c00427{width:1439.999979px;}
.w0_c00427{width:1440.000000px;}
.x0_c00427{left:0.000000px;}
.x3_c00427{left:8.310000px;}
.x1_c00427{left:90.827979px;}
.x5_c00427{left:98.460000px;}
.x6_c00427{left:343.440000px;}
.x8_c00427{left:371.489979px;}
.x2_c00427{left:588.420000px;}
.x7_c00427{left:681.449979px;}
.x4_c00427{left:833.580000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls1_c00427{letter-spacing:0.000000pt;}
.ls2_c00427{letter-spacing:0.197333pt;}
.ls0_c00427{letter-spacing:26.360960pt;}
.ws1_c00427{word-spacing:-25.659648pt;}
.ws0_c00427{word-spacing:-25.621120pt;}
.ws2_c00427{word-spacing:0.000000pt;}
._0_c00427{margin-left:-6.720000pt;}
._2_c00427{margin-left:-2.128000pt;}
._4_c00427{margin-left:-1.108224pt;}
._1_c00427{width:1.447040pt;}
._5_c00427{width:2.557440pt;}
._6_c00427{width:660.861696pt;}
._3_c00427{width:683.578240pt;}
.fs1_c00427{font-size:85.120000pt;}
.fs2_c00427{font-size:85.248000pt;}
.fs0_c00427{font-size:192.000000pt;}
.y0_c00427{bottom:0.000000pt;}
.y3_c00427{bottom:89.053333pt;}
.y10_c00427{bottom:98.560000pt;}
.yf_c00427{bottom:138.746667pt;}
.ye_c00427{bottom:168.186667pt;}
.y6_c00427{bottom:177.253333pt;}
.ya_c00427{bottom:177.280000pt;}
.y8_c00427{bottom:196.320000pt;}
.y5_c00427{bottom:206.693333pt;}
.y9_c00427{bottom:206.746667pt;}
.yd_c00427{bottom:262.466667pt;}
.y4_c00427{bottom:282.240000pt;}
.yc_c00427{bottom:291.933333pt;}
.yb_c00427{bottom:373.600000pt;}
.y2_c00427{bottom:439.520000pt;}
.y7_c00427{bottom:459.493333pt;}
.y1_c00427{bottom:604.613333pt;}
.h3_c00427{height:78.968750pt;}
.h7_c00427{height:79.087500pt;}
.h5_c00427{height:79.924688pt;}
.h9_c00427{height:80.044875pt;}
.h1_c00427{height:178.125000pt;}
.h2_c00427{height:194.560000pt;}
.h4_c00427{height:400.480000pt;}
.h6_c00427{height:400.640000pt;}
.ha_c00427{height:479.840000pt;}
.hb_c00427{height:600.160000pt;}
.h8_c00427{height:603.520000pt;}
.h0_c00427{height:720.000000pt;}
.w3_c00427{width:217.920000pt;}
.w2_c00427{width:218.080000pt;}
.w1_c00427{width:1279.999981pt;}
.w0_c00427{width:1280.000000pt;}
.x0_c00427{left:0.000000pt;}
.x3_c00427{left:7.386667pt;}
.x1_c00427{left:80.735981pt;}
.x5_c00427{left:87.520000pt;}
.x6_c00427{left:305.280000pt;}
.x8_c00427{left:330.213314pt;}
.x2_c00427{left:523.040000pt;}
.x7_c00427{left:605.733314pt;}
.x4_c00427{left:740.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2bb960c072c50b4d8a4b103b.woff')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.147949;font-style: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:-65.016000px;}
.ws1_c00428{word-spacing:0.000000px;}
._4_c00428{margin-left:-7.884720px;}
._0_c00428{margin-left:-5.205024px;}
._1_c00428{margin-left:-1.175328px;}
._2_c00428{width:1.007424px;}
._3_c00428{width:2.684160px;}
.fc1_c00428{color:rgb(64,64,64);}
.fc0_c00428{color:rgb(144,194,38);}
.fs2_c00428{font-size:167.760000px;}
.fs1_c00428{font-size:167.904000px;}
.fs0_c00428{font-size:216.000000px;}
.y0_c00428{bottom:0.000000px;}
.y7_c00428{bottom:241.485000px;}
.y6_c00428{bottom:291.885000px;}
.y5_c00428{bottom:357.450000px;}
.y4_c00428{bottom:407.850000px;}
.y3_c00428{bottom:458.250000px;}
.y2_c00428{bottom:508.680000px;}
.y1_c00428{bottom:680.190000px;}
.h3_c00428{height:157.520742px;}
.h2_c00428{height:157.655953px;}
.h1_c00428{height:202.816406px;}
.h0_c00428{height:810.000000px;}
.w1_c00428{width:1439.999979px;}
.w0_c00428{width:1440.000000px;}
.x0_c00428{left:0.000000px;}
.x1_c00428{left:90.827979px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls0_c00428{letter-spacing:0.000000pt;}
.ws0_c00428{word-spacing:-57.792000pt;}
.ws1_c00428{word-spacing:0.000000pt;}
._4_c00428{margin-left:-7.008640pt;}
._0_c00428{margin-left:-4.626688pt;}
._1_c00428{margin-left:-1.044736pt;}
._2_c00428{width:0.895488pt;}
._3_c00428{width:2.385920pt;}
.fs2_c00428{font-size:149.120000pt;}
.fs1_c00428{font-size:149.248000pt;}
.fs0_c00428{font-size:192.000000pt;}
.y0_c00428{bottom:0.000000pt;}
.y7_c00428{bottom:214.653333pt;}
.y6_c00428{bottom:259.453333pt;}
.y5_c00428{bottom:317.733333pt;}
.y4_c00428{bottom:362.533333pt;}
.y3_c00428{bottom:407.333333pt;}
.y2_c00428{bottom:452.160000pt;}
.y1_c00428{bottom:604.613333pt;}
.h3_c00428{height:140.018437pt;}
.h2_c00428{height:140.138625pt;}
.h1_c00428{height:180.281250pt;}
.h0_c00428{height:720.000000pt;}
.w1_c00428{width:1279.999981pt;}
.w0_c00428{width:1280.000000pt;}
.x0_c00428{left:0.000000pt;}
.x1_c00428{left:80.735981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00429{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
}
.y0_c00429{bottom:0.000000px;}
.h0_c00429{height:810.000000px;}
.w0_c00429{width:1440.000000px;}
.x0_c00429{left:0.000000px;}
@media print{
.y0_c00429{bottom:0.000000pt;}
.h0_c00429{height:720.000000pt;}
.w0_c00429{width:1280.000000pt;}
.x0_c00429{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_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_f7344a723679bd604eef5da5.woff')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.147949;font-style:normal;font-weight:normal;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_ae903f70c6944fb9fc79a92f.woff')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.147949;font-style: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;}
.ls0_c00430{letter-spacing:0.000000px;}
.sc__c00430{text-shadow:none;}
.sc0_c00430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00430{-webkit-text-stroke:0px transparent;}
.sc0_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00430{word-spacing:-43.344000px;}
.ws1_c00430{word-spacing:0.000000px;}
._0_c00430{margin-left:-1.296576px;}
.fc1_c00430{color:rgb(127,127,127);}
.fc0_c00430{color:rgb(144,194,38);}
.fs1_c00430{font-size:144.000000px;}
.fs0_c00430{font-size:324.144000px;}
.y0_c00430{bottom:0.000000px;}
.y2_c00430{bottom:392.010000px;}
.y1_c00430{bottom:477.285000px;}
.h2_c00430{height:135.210938px;}
.h1_c00430{height:304.359820px;}
.h0_c00430{height:810.000000px;}
.w1_c00430{width:1439.999979px;}
.w0_c00430{width:1440.000000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:193.469979px;}
.x2_c00430{left:366.224979px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws0_c00430{word-spacing:-38.528000pt;}
.ws1_c00430{word-spacing:0.000000pt;}
._0_c00430{margin-left:-1.152512pt;}
.fs1_c00430{font-size:128.000000pt;}
.fs0_c00430{font-size:288.128000pt;}
.y0_c00430{bottom:0.000000pt;}
.y2_c00430{bottom:348.453333pt;}
.y1_c00430{bottom:424.253333pt;}
.h2_c00430{height:120.187500pt;}
.h1_c00430{height:270.542062pt;}
.h0_c00430{height:720.000000pt;}
.w1_c00430{width:1279.999981pt;}
.w0_c00430{width:1280.000000pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:171.973314pt;}
.x2_c00430{left:325.533314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_497f03a5ef010d42309fe54e.woff')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00431;src:url('chunks/assets/font_5d4c44b5b006561f76b90b66.woff')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.132324;font-style:normal;font-weight:normal;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00431;src:url('chunks/assets/font_f8cffa6e9b754dd785efe247.woff')format("woff");}.ff4_c00431{font-family:ff4_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:ff5_c00431;src:url('chunks/assets/font_74f6900fe9125ada05ba1b11.woff')format("woff");}.ff5_c00431{font-family:ff5_c00431;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00431;src:url('chunks/assets/font_2d9618b9b1d3d0ced053bf8f.woff')format("woff");}.ff6_c00431{font-family:ff6_c00431;line-height:0.937988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00431;src:url('chunks/assets/font_e04e4aba7e694744a3902c70.woff')format("woff");}.ff7_c00431{font-family:ff7_c00431;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00431{letter-spacing:-0.384000px;}
.lsb_c00431{letter-spacing:-0.288000px;}
.ls7_c00431{letter-spacing:-0.223800px;}
.ls8_c00431{letter-spacing:-0.144000px;}
.lsa_c00431{letter-spacing:-0.072000px;}
.ls5_c00431{letter-spacing:0.000000px;}
.ls9_c00431{letter-spacing:0.144000px;}
.ls4_c00431{letter-spacing:36.180000px;}
.ls3_c00431{letter-spacing:52.488000px;}
.ls2_c00431{letter-spacing:61.200000px;}
.ls0_c00431{letter-spacing:134.444160px;}
.ls1_c00431{letter-spacing:134.510400px;}
.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;}
}
.wsd_c00431{word-spacing:-109.284000px;}
.ws17_c00431{word-spacing:-107.844000px;}
.wsc_c00431{word-spacing:-82.620000px;}
.ws8_c00431{word-spacing:-36.036000px;}
.ws4_c00431{word-spacing:-35.652000px;}
.ws2_c00431{word-spacing:-30.060000px;}
.ws1_c00431{word-spacing:-2.047680px;}
.ws3_c00431{word-spacing:-1.919616px;}
.ws5_c00431{word-spacing:-1.820664px;}
.ws0_c00431{word-spacing:-1.156560px;}
.ws7_c00431{word-spacing:-0.772560px;}
.ws1d_c00431{word-spacing:-0.168000px;}
.ws1e_c00431{word-spacing:-0.144000px;}
.ws23_c00431{word-spacing:0.000000px;}
.ws6_c00431{word-spacing:1.670016px;}
.wsf_c00431{word-spacing:16.621392px;}
.ws10_c00431{word-spacing:16.637616px;}
.ws11_c00431{word-spacing:16.899336px;}
.ws12_c00431{word-spacing:17.083200px;}
.ws18_c00431{word-spacing:18.751872px;}
.ws19_c00431{word-spacing:18.772176px;}
.ws1a_c00431{word-spacing:18.956880px;}
.ws1f_c00431{word-spacing:19.452000px;}
.ws20_c00431{word-spacing:19.728000px;}
.ws21_c00431{word-spacing:19.764000px;}
.wsb_c00431{word-spacing:24.768000px;}
.wsa_c00431{word-spacing:25.608000px;}
.ws9_c00431{word-spacing:25.788000px;}
.ws22_c00431{word-spacing:34.072320px;}
.ws1c_c00431{word-spacing:35.148000px;}
.ws14_c00431{word-spacing:35.436000px;}
.wse_c00431{word-spacing:35.568000px;}
.ws13_c00431{word-spacing:52.831872px;}
.ws1b_c00431{word-spacing:54.647856px;}
.ws15_c00431{word-spacing:63.624000px;}
.ws16_c00431{word-spacing:100.116000px;}
._4_c00431{margin-left:-13.405392px;}
._8_c00431{margin-left:-7.347840px;}
._0_c00431{margin-left:-2.354880px;}
._3_c00431{margin-left:-1.008000px;}
._1_c00431{width:1.110720px;}
._2_c00431{width:27.943680px;}
._9_c00431{width:35.244000px;}
._7_c00431{width:37.934880px;}
._5_c00431{width:54.233904px;}
._6_c00431{width:101.918880px;}
.fc0_c00431{color:rgb(0,0,0);}
.fs4_c00431{font-size:59.760000px;}
.fs2_c00431{font-size:59.904000px;}
.fs1_c00431{font-size:120.240000px;}
.fs0_c00431{font-size:138.240000px;}
.fs5_c00431{font-size:144.000000px;}
.fs3_c00431{font-size:144.144000px;}
.y0_c00431{bottom:0.000000px;}
.ye_c00431{bottom:49.536000px;}
.yd_c00431{bottom:79.776000px;}
.yc_c00431{bottom:146.016000px;}
.yb_c00431{bottom:212.250000px;}
.ya_c00431{bottom:242.535000px;}
.y9_c00431{bottom:308.775000px;}
.y8_c00431{bottom:339.015000px;}
.y7_c00431{bottom:405.255000px;}
.y6_c00431{bottom:435.525000px;}
.y5_c00431{bottom:501.765000px;}
.y4_c00431{bottom:532.005000px;}
.y3_c00431{bottom:598.290000px;}
.y2_c00431{bottom:663.270000px;}
.y1_c00431{bottom:749.445000px;}
.h2_c00431{height:121.179375px;}
.h1_c00431{height:139.320000px;}
.h6_c00431{height:141.257812px;}
.h5_c00431{height:141.328125px;}
.h7_c00431{height:141.469453px;}
.h4_c00431{height:145.125000px;}
.h3_c00431{height:145.270125px;}
.h0_c00431{height:810.000000px;}
.w1_c00431{width:1439.999979px;}
.w0_c00431{width:1440.000000px;}
.x0_c00431{left:0.000000px;}
.x2_c00431{left:102.095979px;}
.x1_c00431{left:143.027979px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls6_c00431{letter-spacing:-0.341333pt;}
.lsb_c00431{letter-spacing:-0.256000pt;}
.ls7_c00431{letter-spacing:-0.198933pt;}
.ls8_c00431{letter-spacing:-0.128000pt;}
.lsa_c00431{letter-spacing:-0.064000pt;}
.ls5_c00431{letter-spacing:0.000000pt;}
.ls9_c00431{letter-spacing:0.128000pt;}
.ls4_c00431{letter-spacing:32.160000pt;}
.ls3_c00431{letter-spacing:46.656000pt;}
.ls2_c00431{letter-spacing:54.400000pt;}
.ls0_c00431{letter-spacing:119.505920pt;}
.ls1_c00431{letter-spacing:119.564800pt;}
.wsd_c00431{word-spacing:-97.141333pt;}
.ws17_c00431{word-spacing:-95.861333pt;}
.wsc_c00431{word-spacing:-73.440000pt;}
.ws8_c00431{word-spacing:-32.032000pt;}
.ws4_c00431{word-spacing:-31.690667pt;}
.ws2_c00431{word-spacing:-26.720000pt;}
.ws1_c00431{word-spacing:-1.820160pt;}
.ws3_c00431{word-spacing:-1.706325pt;}
.ws5_c00431{word-spacing:-1.618368pt;}
.ws0_c00431{word-spacing:-1.028053pt;}
.ws7_c00431{word-spacing:-0.686720pt;}
.ws1d_c00431{word-spacing:-0.149333pt;}
.ws1e_c00431{word-spacing:-0.128000pt;}
.ws23_c00431{word-spacing:0.000000pt;}
.ws6_c00431{word-spacing:1.484459pt;}
.wsf_c00431{word-spacing:14.774571pt;}
.ws10_c00431{word-spacing:14.788992pt;}
.ws11_c00431{word-spacing:15.021632pt;}
.ws12_c00431{word-spacing:15.185067pt;}
.ws18_c00431{word-spacing:16.668331pt;}
.ws19_c00431{word-spacing:16.686379pt;}
.ws1a_c00431{word-spacing:16.850560pt;}
.ws1f_c00431{word-spacing:17.290667pt;}
.ws20_c00431{word-spacing:17.536000pt;}
.ws21_c00431{word-spacing:17.568000pt;}
.wsb_c00431{word-spacing:22.016000pt;}
.wsa_c00431{word-spacing:22.762667pt;}
.ws9_c00431{word-spacing:22.922667pt;}
.ws22_c00431{word-spacing:30.286507pt;}
.ws1c_c00431{word-spacing:31.242667pt;}
.ws14_c00431{word-spacing:31.498667pt;}
.wse_c00431{word-spacing:31.616000pt;}
.ws13_c00431{word-spacing:46.961664pt;}
.ws1b_c00431{word-spacing:48.575872pt;}
.ws15_c00431{word-spacing:56.554667pt;}
.ws16_c00431{word-spacing:88.992000pt;}
._4_c00431{margin-left:-11.915904pt;}
._8_c00431{margin-left:-6.531413pt;}
._0_c00431{margin-left:-2.093227pt;}
._3_c00431{margin-left:-0.896000pt;}
._1_c00431{width:0.987307pt;}
._2_c00431{width:24.838827pt;}
._9_c00431{width:31.328000pt;}
._7_c00431{width:33.719893pt;}
._5_c00431{width:48.207915pt;}
._6_c00431{width:90.594560pt;}
.fs4_c00431{font-size:53.120000pt;}
.fs2_c00431{font-size:53.248000pt;}
.fs1_c00431{font-size:106.880000pt;}
.fs0_c00431{font-size:122.880000pt;}
.fs5_c00431{font-size:128.000000pt;}
.fs3_c00431{font-size:128.128000pt;}
.y0_c00431{bottom:0.000000pt;}
.ye_c00431{bottom:44.032000pt;}
.yd_c00431{bottom:70.912000pt;}
.yc_c00431{bottom:129.792000pt;}
.yb_c00431{bottom:188.666667pt;}
.ya_c00431{bottom:215.586667pt;}
.y9_c00431{bottom:274.466667pt;}
.y8_c00431{bottom:301.346667pt;}
.y7_c00431{bottom:360.226667pt;}
.y6_c00431{bottom:387.133333pt;}
.y5_c00431{bottom:446.013333pt;}
.y4_c00431{bottom:472.893333pt;}
.y3_c00431{bottom:531.813333pt;}
.y2_c00431{bottom:589.573333pt;}
.y1_c00431{bottom:666.173333pt;}
.h2_c00431{height:107.715000pt;}
.h1_c00431{height:123.840000pt;}
.h6_c00431{height:125.562500pt;}
.h5_c00431{height:125.625000pt;}
.h7_c00431{height:125.750625pt;}
.h4_c00431{height:129.000000pt;}
.h3_c00431{height:129.129000pt;}
.h0_c00431{height:720.000000pt;}
.w1_c00431{width:1279.999981pt;}
.w0_c00431{width:1280.000000pt;}
.x0_c00431{left:0.000000pt;}
.x2_c00431{left:90.751981pt;}
.x1_c00431{left:127.135981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27d68a7b7b1357e4b7dec5e2.woff')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00432;src:url('chunks/assets/font_82670e33e7a908b1cefe57af.woff')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.132324;font-style:normal;font-weight:normal;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00432;src:url('chunks/assets/font_eb05468b6d827d97c13ff1fa.woff')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:0.930664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00432;src:url('chunks/assets/font_b9d07afafc244d69d48519e0.woff')format("woff");}.ff5_c00432{font-family:ff5_c00432;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00432;src:url('chunks/assets/font_2daf64285483a605da44521b.woff')format("woff");}.ff6_c00432{font-family:ff6_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:ff7_c00432;src:url('chunks/assets/font_b9719f350412ca179f891eef.woff')format("woff");}.ff7_c00432{font-family:ff7_c00432;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00432;src:url('chunks/assets/font_0af38407033a5fe309388840.woff')format("woff");}.ff8_c00432{font-family:ff8_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;}
.ls8_c00432{letter-spacing:-0.134400px;}
.ls9_c00432{letter-spacing:-0.043920px;}
.ls5_c00432{letter-spacing:0.000000px;}
.ls6_c00432{letter-spacing:0.009360px;}
.ls7_c00432{letter-spacing:0.134400px;}
.ls4_c00432{letter-spacing:0.360000px;}
.ls1_c00432{letter-spacing:48.600000px;}
.ls3_c00432{letter-spacing:65.880000px;}
.ls2_c00432{letter-spacing:75.168000px;}
.ls0_c00432{letter-spacing:134.510400px;}
.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;}
}
.ws10_c00432{word-spacing:-131.760000px;}
.ws25_c00432{word-spacing:-99.714480px;}
.ws17_c00432{word-spacing:-97.079760px;}
.wsf_c00432{word-spacing:-86.086800px;}
.wsd_c00432{word-spacing:-85.131360px;}
.ws5_c00432{word-spacing:-34.966800px;}
.ws3_c00432{word-spacing:-33.998400px;}
.ws6_c00432{word-spacing:-0.131760px;}
.ws2e_c00432{word-spacing:0.000000px;}
.ws1c_c00432{word-spacing:0.147600px;}
.ws1d_c00432{word-spacing:0.318960px;}
.ws1_c00432{word-spacing:0.588000px;}
.ws0_c00432{word-spacing:1.332000px;}
.wsb_c00432{word-spacing:12.349440px;}
.ws27_c00432{word-spacing:12.932352px;}
.ws28_c00432{word-spacing:13.205376px;}
.wsc_c00432{word-spacing:13.641120px;}
.ws2b_c00432{word-spacing:14.340000px;}
.ws13_c00432{word-spacing:14.577120px;}
.ws29_c00432{word-spacing:14.761440px;}
.ws2a_c00432{word-spacing:15.349680px;}
.ws12_c00432{word-spacing:15.660000px;}
.ws11_c00432{word-spacing:16.332960px;}
.ws1b_c00432{word-spacing:32.206800px;}
.wsa_c00432{word-spacing:32.628240px;}
.ws2d_c00432{word-spacing:32.633760px;}
.ws20_c00432{word-spacing:32.761440px;}
.ws26_c00432{word-spacing:32.806800px;}
.ws23_c00432{word-spacing:32.985360px;}
.ws18_c00432{word-spacing:33.270480px;}
.ws1f_c00432{word-spacing:33.311520px;}
.ws21_c00432{word-spacing:33.349680px;}
.ws1a_c00432{word-spacing:33.356880px;}
.ws24_c00432{word-spacing:33.667200px;}
.ws16_c00432{word-spacing:34.844160px;}
.ws8_c00432{word-spacing:37.091520px;}
.ws19_c00432{word-spacing:41.386368px;}
.wse_c00432{word-spacing:45.856800px;}
.ws15_c00432{word-spacing:47.748240px;}
.ws14_c00432{word-spacing:48.080160px;}
.ws2c_c00432{word-spacing:48.553200px;}
.ws2_c00432{word-spacing:63.595440px;}
.ws22_c00432{word-spacing:66.116880px;}
.ws4_c00432{word-spacing:96.725520px;}
.ws9_c00432{word-spacing:169.027200px;}
.ws7_c00432{word-spacing:169.732560px;}
.ws1e_c00432{word-spacing:236.430720px;}
._a_c00432{margin-left:-12.398976px;}
._b_c00432{margin-left:-7.273200px;}
._0_c00432{margin-left:-2.354880px;}
._6_c00432{margin-left:-1.054080px;}
._1_c00432{width:1.110720px;}
._4_c00432{width:33.954240px;}
._5_c00432{width:46.690560px;}
._9_c00432{width:67.264320px;}
._7_c00432{width:75.748032px;}
._2_c00432{width:99.345360px;}
._3_c00432{width:170.662320px;}
._8_c00432{width:271.653600px;}
.fc0_c00432{color:rgb(0,0,0);}
.fs2_c00432{font-size:59.760000px;}
.fs1_c00432{font-size:108.000000px;}
.fs3_c00432{font-size:131.760000px;}
.fs4_c00432{font-size:131.904000px;}
.fs0_c00432{font-size:138.240000px;}
.y0_c00432{bottom:0.000000px;}
.y11_c00432{bottom:103.068000px;}
.y10_c00432{bottom:134.748000px;}
.yf_c00432{bottom:166.470000px;}
.ye_c00432{bottom:213.090000px;}
.yd_c00432{bottom:244.770000px;}
.yc_c00432{bottom:276.450000px;}
.yb_c00432{bottom:323.070000px;}
.ya_c00432{bottom:354.780000px;}
.y9_c00432{bottom:401.580000px;}
.y8_c00432{bottom:433.260000px;}
.y7_c00432{bottom:479.880000px;}
.y6_c00432{bottom:511.560000px;}
.y5_c00432{bottom:558.210000px;}
.y4_c00432{bottom:589.890000px;}
.y3_c00432{bottom:621.570000px;}
.y2_c00432{bottom:666.930000px;}
.y1_c00432{bottom:747.825000px;}
.h2_c00432{height:108.843750px;}
.h5_c00432{height:118.120781px;}
.h4_c00432{height:129.315234px;}
.h3_c00432{height:132.789375px;}
.h6_c00432{height:132.934500px;}
.h1_c00432{height:139.320000px;}
.h0_c00432{height:810.000000px;}
.w1_c00432{width:1439.999979px;}
.w0_c00432{width:1440.000000px;}
.x0_c00432{left:0.000000px;}
.x1_c00432{left:143.027979px;}
.x2_c00432{left:707.114979px;}
.x3_c00432{left:747.614979px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls8_c00432{letter-spacing:-0.119467pt;}
.ls9_c00432{letter-spacing:-0.039040pt;}
.ls5_c00432{letter-spacing:0.000000pt;}
.ls6_c00432{letter-spacing:0.008320pt;}
.ls7_c00432{letter-spacing:0.119467pt;}
.ls4_c00432{letter-spacing:0.320000pt;}
.ls1_c00432{letter-spacing:43.200000pt;}
.ls3_c00432{letter-spacing:58.560000pt;}
.ls2_c00432{letter-spacing:66.816000pt;}
.ls0_c00432{letter-spacing:119.564800pt;}
.ws10_c00432{word-spacing:-117.120000pt;}
.ws25_c00432{word-spacing:-88.635093pt;}
.ws17_c00432{word-spacing:-86.293120pt;}
.wsf_c00432{word-spacing:-76.521600pt;}
.wsd_c00432{word-spacing:-75.672320pt;}
.ws5_c00432{word-spacing:-31.081600pt;}
.ws3_c00432{word-spacing:-30.220800pt;}
.ws6_c00432{word-spacing:-0.117120pt;}
.ws2e_c00432{word-spacing:0.000000pt;}
.ws1c_c00432{word-spacing:0.131200pt;}
.ws1d_c00432{word-spacing:0.283520pt;}
.ws1_c00432{word-spacing:0.522667pt;}
.ws0_c00432{word-spacing:1.184000pt;}
.wsb_c00432{word-spacing:10.977280pt;}
.ws27_c00432{word-spacing:11.495424pt;}
.ws28_c00432{word-spacing:11.738112pt;}
.wsc_c00432{word-spacing:12.125440pt;}
.ws2b_c00432{word-spacing:12.746667pt;}
.ws13_c00432{word-spacing:12.957440pt;}
.ws29_c00432{word-spacing:13.121280pt;}
.ws2a_c00432{word-spacing:13.644160pt;}
.ws12_c00432{word-spacing:13.920000pt;}
.ws11_c00432{word-spacing:14.518187pt;}
.ws1b_c00432{word-spacing:28.628267pt;}
.wsa_c00432{word-spacing:29.002880pt;}
.ws2d_c00432{word-spacing:29.007787pt;}
.ws20_c00432{word-spacing:29.121280pt;}
.ws26_c00432{word-spacing:29.161600pt;}
.ws23_c00432{word-spacing:29.320320pt;}
.ws18_c00432{word-spacing:29.573760pt;}
.ws1f_c00432{word-spacing:29.610240pt;}
.ws21_c00432{word-spacing:29.644160pt;}
.ws1a_c00432{word-spacing:29.650560pt;}
.ws24_c00432{word-spacing:29.926400pt;}
.ws16_c00432{word-spacing:30.972587pt;}
.ws8_c00432{word-spacing:32.970240pt;}
.ws19_c00432{word-spacing:36.787883pt;}
.wse_c00432{word-spacing:40.761600pt;}
.ws15_c00432{word-spacing:42.442880pt;}
.ws14_c00432{word-spacing:42.737920pt;}
.ws2c_c00432{word-spacing:43.158400pt;}
.ws2_c00432{word-spacing:56.529280pt;}
.ws22_c00432{word-spacing:58.770560pt;}
.ws4_c00432{word-spacing:85.978240pt;}
.ws9_c00432{word-spacing:150.246400pt;}
.ws7_c00432{word-spacing:150.873387pt;}
.ws1e_c00432{word-spacing:210.160640pt;}
._a_c00432{margin-left:-11.021312pt;}
._b_c00432{margin-left:-6.465067pt;}
._0_c00432{margin-left:-2.093227pt;}
._6_c00432{margin-left:-0.936960pt;}
._1_c00432{width:0.987307pt;}
._4_c00432{width:30.181547pt;}
._5_c00432{width:41.502720pt;}
._9_c00432{width:59.790507pt;}
._7_c00432{width:67.331584pt;}
._2_c00432{width:88.306987pt;}
._3_c00432{width:151.699840pt;}
._8_c00432{width:241.469867pt;}
.fs2_c00432{font-size:53.120000pt;}
.fs1_c00432{font-size:96.000000pt;}
.fs3_c00432{font-size:117.120000pt;}
.fs4_c00432{font-size:117.248000pt;}
.fs0_c00432{font-size:122.880000pt;}
.y0_c00432{bottom:0.000000pt;}
.y11_c00432{bottom:91.616000pt;}
.y10_c00432{bottom:119.776000pt;}
.yf_c00432{bottom:147.973333pt;}
.ye_c00432{bottom:189.413333pt;}
.yd_c00432{bottom:217.573333pt;}
.yc_c00432{bottom:245.733333pt;}
.yb_c00432{bottom:287.173333pt;}
.ya_c00432{bottom:315.360000pt;}
.y9_c00432{bottom:356.960000pt;}
.y8_c00432{bottom:385.120000pt;}
.y7_c00432{bottom:426.560000pt;}
.y6_c00432{bottom:454.720000pt;}
.y5_c00432{bottom:496.186667pt;}
.y4_c00432{bottom:524.346667pt;}
.y3_c00432{bottom:552.506667pt;}
.y2_c00432{bottom:592.826667pt;}
.y1_c00432{bottom:664.733333pt;}
.h2_c00432{height:96.750000pt;}
.h5_c00432{height:104.996250pt;}
.h4_c00432{height:114.946875pt;}
.h3_c00432{height:118.035000pt;}
.h6_c00432{height:118.164000pt;}
.h1_c00432{height:123.840000pt;}
.h0_c00432{height:720.000000pt;}
.w1_c00432{width:1279.999981pt;}
.w0_c00432{width:1280.000000pt;}
.x0_c00432{left:0.000000pt;}
.x1_c00432{left:127.135981pt;}
.x2_c00432{left:628.546648pt;}
.x3_c00432{left:664.546648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_912c97b73eade4235f9be6b1.woff')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.130371;font-style:normal;font-weight:normal;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_a1b309e41a1898d259c13072.woff')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.202148;font-style:normal;font-weight:normal;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_55b20a5b6daff12a606c78c8.woff')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.172852;font-style:normal;font-weight:normal;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_8fba30570f96aaf46b0ad480.woff')format("woff");}.ff4_c00433{font-family:ff4_c00433;line-height:1.172852;font-style: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;}
.ls0_c00433{letter-spacing:0.000000px;}
.sc__c00433{text-shadow:none;}
.sc1_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00433{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc1_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00433{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00433{word-spacing:-29.777760px;}
.ws1_c00433{word-spacing:0.000000px;}
._2_c00433{margin-left:-4.681872px;}
._1_c00433{margin-left:-3.601440px;}
._0_c00433{margin-left:-2.160864px;}
._3_c00433{margin-left:-1.133136px;}
._4_c00433{width:1.765584px;}
._5_c00433{width:31.182960px;}
.fc1_c00433{color:rgb(0,0,0);}
.fc0_c00433{color:rgb(0,32,96);}
.fs2_c00433{font-size:131.760000px;}
.fs1_c00433{font-size:324.000000px;}
.fs0_c00433{font-size:360.144000px;}
.y0_c00433{bottom:0.000000px;}
.y5_c00433{bottom:99.972000px;}
.y4_c00433{bottom:142.812000px;}
.y3_c00433{bottom:185.475000px;}
.y2_c00433{bottom:378.825000px;}
.y1_c00433{bottom:468.690000px;}
.h4_c00433{height:131.052305px;}
.h3_c00433{height:134.912461px;}
.h2_c00433{height:308.496094px;}
.h1_c00433{height:342.910547px;}
.h0_c00433{height:810.000000px;}
.w1_c00433{width:1439.999979px;}
.w0_c00433{width:1440.000000px;}
.x0_c00433{left:0.000000px;}
.x3_c00433{left:63.359979px;}
.x1_c00433{left:70.091979px;}
.x2_c00433{left:212.144979px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ws0_c00433{word-spacing:-26.469120pt;}
.ws1_c00433{word-spacing:0.000000pt;}
._2_c00433{margin-left:-4.161664pt;}
._1_c00433{margin-left:-3.201280pt;}
._0_c00433{margin-left:-1.920768pt;}
._3_c00433{margin-left:-1.007232pt;}
._4_c00433{width:1.569408pt;}
._5_c00433{width:27.718187pt;}
.fs2_c00433{font-size:117.120000pt;}
.fs1_c00433{font-size:288.000000pt;}
.fs0_c00433{font-size:320.128000pt;}
.y0_c00433{bottom:0.000000pt;}
.y5_c00433{bottom:88.864000pt;}
.y4_c00433{bottom:126.944000pt;}
.y3_c00433{bottom:164.866667pt;}
.y2_c00433{bottom:336.733333pt;}
.y1_c00433{bottom:416.613333pt;}
.h4_c00433{height:116.490937pt;}
.h3_c00433{height:119.922187pt;}
.h2_c00433{height:274.218750pt;}
.h1_c00433{height:304.809375pt;}
.h0_c00433{height:720.000000pt;}
.w1_c00433{width:1279.999981pt;}
.w0_c00433{width:1280.000000pt;}
.x0_c00433{left:0.000000pt;}
.x3_c00433{left:56.319981pt;}
.x1_c00433{left:62.303981pt;}
.x2_c00433{left:188.573314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3dab79544c840c3ab88cbf6.woff')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.172852;font-style:normal;font-weight:normal;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_db3712140a6720f33f828dc1.woff')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00434;src:url('chunks/assets/font_feda7650d36e51545a088baf.woff')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00434;src:url('chunks/assets/font_1c074e781816a1bd5f54f66d.woff')format("woff");}.ff4_c00434{font-family:ff4_c00434;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00434;src:url('chunks/assets/font_99285e1e1a6e5e66447fb5a3.woff')format("woff");}.ff5_c00434{font-family:ff5_c00434;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls3_c00434{letter-spacing:-0.288000px;}
.ls0_c00434{letter-spacing:0.000000px;}
.ls2_c00434{letter-spacing:0.144000px;}
.ls1_c00434{letter-spacing:0.288000px;}
.sc__c00434{text-shadow:none;}
.sc1_c00434{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1_c00434{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00434{word-spacing:-59.718240px;}
.ws0_c00434{word-spacing:-32.544000px;}
.ws1_c00434{word-spacing:-32.256000px;}
.ws3_c00434{word-spacing:0.000000px;}
._5_c00434{margin-left:-7.134480px;}
._4_c00434{margin-left:-5.020560px;}
._3_c00434{margin-left:-3.702960px;}
._0_c00434{margin-left:-1.980000px;}
._1_c00434{width:1.296000px;}
._2_c00434{width:399.432000px;}
.fc2_c00434{color:rgb(0,32,96);}
.fc1_c00434{color:rgb(0,102,204);}
.fc0_c00434{color:rgb(0,0,0);}
.fs0_c00434{font-size:144.000000px;}
.fs1_c00434{font-size:144.144000px;}
.fs2_c00434{font-size:264.240000px;}
.y0_c00434{bottom:0.000000px;}
.y6_c00434{bottom:66.708000px;}
.y5_c00434{bottom:124.668000px;}
.y4_c00434{bottom:240.990000px;}
.y3_c00434{bottom:357.480000px;}
.y2_c00434{bottom:473.940000px;}
.y1_c00434{bottom:590.250000px;}
.y7_c00434{bottom:716.655000px;}
.h1_c00434{height:143.226562px;}
.h2_c00434{height:143.369789px;}
.h3_c00434{height:147.445312px;}
.h4_c00434{height:251.595703px;}
.h0_c00434{height:810.000000px;}
.w1_c00434{width:1439.999979px;}
.w0_c00434{width:1440.000000px;}
.x0_c00434{left:0.000000px;}
.x3_c00434{left:123.515979px;}
.x4_c00434{left:145.727979px;}
.x2_c00434{left:169.949979px;}
.x1_c00434{left:173.009979px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls3_c00434{letter-spacing:-0.256000pt;}
.ls0_c00434{letter-spacing:0.000000pt;}
.ls2_c00434{letter-spacing:0.128000pt;}
.ls1_c00434{letter-spacing:0.256000pt;}
.ws2_c00434{word-spacing:-53.082880pt;}
.ws0_c00434{word-spacing:-28.928000pt;}
.ws1_c00434{word-spacing:-28.672000pt;}
.ws3_c00434{word-spacing:0.000000pt;}
._5_c00434{margin-left:-6.341760pt;}
._4_c00434{margin-left:-4.462720pt;}
._3_c00434{margin-left:-3.291520pt;}
._0_c00434{margin-left:-1.760000pt;}
._1_c00434{width:1.152000pt;}
._2_c00434{width:355.050667pt;}
.fs0_c00434{font-size:128.000000pt;}
.fs1_c00434{font-size:128.128000pt;}
.fs2_c00434{font-size:234.880000pt;}
.y0_c00434{bottom:0.000000pt;}
.y6_c00434{bottom:59.296000pt;}
.y5_c00434{bottom:110.816000pt;}
.y4_c00434{bottom:214.213333pt;}
.y3_c00434{bottom:317.760000pt;}
.y2_c00434{bottom:421.280000pt;}
.y1_c00434{bottom:524.666667pt;}
.y7_c00434{bottom:637.026667pt;}
.h1_c00434{height:127.312500pt;}
.h2_c00434{height:127.439813pt;}
.h3_c00434{height:131.062500pt;}
.h4_c00434{height:223.640625pt;}
.h0_c00434{height:720.000000pt;}
.w1_c00434{width:1279.999981pt;}
.w0_c00434{width:1280.000000pt;}
.x0_c00434{left:0.000000pt;}
.x3_c00434{left:109.791981pt;}
.x4_c00434{left:129.535981pt;}
.x2_c00434{left:151.066648pt;}
.x1_c00434{left:153.786648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_96a332641fd029af4f0af791.woff')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.202148;font-style:normal;font-weight:normal;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_49d0aeaed17a06ec229f8f77.woff')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.202148;font-style:normal;font-weight:normal;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:0.739746;font-style:normal;font-weight:normal;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_03853e18b9ce989fd3970736.woff')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00435;src:url('chunks/assets/font_c02d228538d6676152af3b88.woff')format("woff");}.ff5_c00435{font-family:ff5_c00435;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00435;src:url('chunks/assets/font_64285c20d5d21960bda0db43.woff')format("woff");}.ff6_c00435{font-family:ff6_c00435;line-height:1.130371;font-style: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;}
.ls3_c00435{letter-spacing:0.000000px;}
.ls4_c00435{letter-spacing:0.006480px;}
.ls1_c00435{letter-spacing:0.036000px;}
.ls0_c00435{letter-spacing:0.185760px;}
.ls2_c00435{letter-spacing:93.276000px;}
.sc__c00435{text-shadow:none;}
.sc1_c00435{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1_c00435{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00435{word-spacing:-120.240000px;}
.ws3_c00435{word-spacing:-32.544000px;}
.ws1_c00435{word-spacing:-27.180720px;}
.ws2_c00435{word-spacing:-27.174240px;}
.ws4_c00435{word-spacing:0.000000px;}
._6_c00435{margin-left:-12.283680px;}
._1_c00435{margin-left:-7.224000px;}
._5_c00435{margin-left:-4.991760px;}
._4_c00435{margin-left:-3.984240px;}
._0_c00435{margin-left:-2.592000px;}
._2_c00435{margin-left:-1.392000px;}
._3_c00435{width:1.227840px;}
.fc4_c00435{color:rgb(0,32,96);}
.fc3_c00435{color:rgb(46,117,182);}
.fc2_c00435{color:rgb(0,112,192);}
.fc1_c00435{color:rgb(0,0,0);}
.fc0_c00435{color:rgb(255,0,0);}
.fs1_c00435{font-size:120.240000px;}
.fs3_c00435{font-size:120.384000px;}
.fs0_c00435{font-size:144.000000px;}
.fs2_c00435{font-size:144.144000px;}
.fs4_c00435{font-size:264.240000px;}
.y0_c00435{bottom:0.000000px;}
.yc_c00435{bottom:74.340000px;}
.yb_c00435{bottom:110.340000px;}
.ya_c00435{bottom:146.340000px;}
.y9_c00435{bottom:182.340000px;}
.y8_c00435{bottom:255.990000px;}
.y7_c00435{bottom:299.190000px;}
.y6_c00435{bottom:342.390000px;}
.y5_c00435{bottom:385.590000px;}
.y4_c00435{bottom:428.790000px;}
.y3_c00435{bottom:506.415000px;}
.y2_c00435{bottom:542.415000px;}
.y1_c00435{bottom:580.035000px;}
.yd_c00435{bottom:716.655000px;}
.h3_c00435{height:119.594180px;}
.h2_c00435{height:123.116836px;}
.h5_c00435{height:123.264281px;}
.h1_c00435{height:147.445312px;}
.h4_c00435{height:147.592758px;}
.h6_c00435{height:251.595703px;}
.h0_c00435{height:810.000000px;}
.w1_c00435{width:1439.999979px;}
.w0_c00435{width:1440.000000px;}
.x0_c00435{left:0.000000px;}
.x1_c00435{left:42.299979px;}
.x2_c00435{left:76.139979px;}
.x3_c00435{left:413.609979px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls3_c00435{letter-spacing:0.000000pt;}
.ls4_c00435{letter-spacing:0.005760pt;}
.ls1_c00435{letter-spacing:0.032000pt;}
.ls0_c00435{letter-spacing:0.165120pt;}
.ls2_c00435{letter-spacing:82.912000pt;}
.ws0_c00435{word-spacing:-106.880000pt;}
.ws3_c00435{word-spacing:-28.928000pt;}
.ws1_c00435{word-spacing:-24.160640pt;}
.ws2_c00435{word-spacing:-24.154880pt;}
.ws4_c00435{word-spacing:0.000000pt;}
._6_c00435{margin-left:-10.918827pt;}
._1_c00435{margin-left:-6.421333pt;}
._5_c00435{margin-left:-4.437120pt;}
._4_c00435{margin-left:-3.541547pt;}
._0_c00435{margin-left:-2.304000pt;}
._2_c00435{margin-left:-1.237333pt;}
._3_c00435{width:1.091413pt;}
.fs1_c00435{font-size:106.880000pt;}
.fs3_c00435{font-size:107.008000pt;}
.fs0_c00435{font-size:128.000000pt;}
.fs2_c00435{font-size:128.128000pt;}
.fs4_c00435{font-size:234.880000pt;}
.y0_c00435{bottom:0.000000pt;}
.yc_c00435{bottom:66.080000pt;}
.yb_c00435{bottom:98.080000pt;}
.ya_c00435{bottom:130.080000pt;}
.y9_c00435{bottom:162.080000pt;}
.y8_c00435{bottom:227.546667pt;}
.y7_c00435{bottom:265.946667pt;}
.y6_c00435{bottom:304.346667pt;}
.y5_c00435{bottom:342.746667pt;}
.y4_c00435{bottom:381.146667pt;}
.y3_c00435{bottom:450.146667pt;}
.y2_c00435{bottom:482.146667pt;}
.y1_c00435{bottom:515.586667pt;}
.yd_c00435{bottom:637.026667pt;}
.h3_c00435{height:106.305937pt;}
.h2_c00435{height:109.437187pt;}
.h5_c00435{height:109.568250pt;}
.h1_c00435{height:131.062500pt;}
.h4_c00435{height:131.193562pt;}
.h6_c00435{height:223.640625pt;}
.h0_c00435{height:720.000000pt;}
.w1_c00435{width:1279.999981pt;}
.w0_c00435{width:1280.000000pt;}
.x0_c00435{left:0.000000pt;}
.x1_c00435{left:37.599981pt;}
.x2_c00435{left:67.679981pt;}
.x3_c00435{left:367.653314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_42e3da1d827e995c87184f67.woff')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.130371;font-style:normal;font-weight:normal;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_3cdd0bfe68bd67c22def00da.woff')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.202148;font-style:normal;font-weight:normal;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_feda7650d36e51545a088baf.woff')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00436;src:url('chunks/assets/font_bc82e6e4095d335e97770f3c.woff')format("woff");}.ff4_c00436{font-family:ff4_c00436;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00436;src:url('chunks/assets/font_29da32e5c8d7deb75a1250b7.woff')format("woff");}.ff5_c00436{font-family:ff5_c00436;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00436;src:url('chunks/assets/font_66c18b01b6493ae0211f56f5.woff')format("woff");}.ff6_c00436{font-family:ff6_c00436;line-height:1.001953;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00436;src:url('chunks/assets/font_6a8e440de1e7229697541de4.woff')format("woff");}.ff7_c00436{font-family:ff7_c00436;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00436;src:url('chunks/assets/font_edef7a6ecbf8d81bc6b8aefc.woff')format("woff");}.ff8_c00436{font-family:ff8_c00436;line-height:1.001953;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00436;src:url('chunks/assets/font_2ce3ec0709c721fc2a9332bf.woff')format("woff");}.ff9_c00436{font-family:ff9_c00436;line-height:1.172852;font-style: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;}
.ls5_c00436{letter-spacing:-14.880000px;}
.ls4_c00436{letter-spacing:0.000000px;}
.ls6_c00436{letter-spacing:0.191400px;}
.ls0_c00436{letter-spacing:0.211680px;}
.ls1_c00436{letter-spacing:0.211800px;}
.ls2_c00436{letter-spacing:0.657216px;}
.ls3_c00436{letter-spacing:2.249760px;}
.sc__c00436{text-shadow:none;}
.sc1_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00436{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc1_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00436{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00436{word-spacing:-35.534184px;}
.ws1_c00436{word-spacing:-35.310240px;}
.ws2_c00436{word-spacing:0.000000px;}
._6_c00436{margin-left:-13.886592px;}
._5_c00436{margin-left:-8.388720px;}
._2_c00436{margin-left:-4.652640px;}
._0_c00436{margin-left:-2.378160px;}
._1_c00436{margin-left:-1.056960px;}
._3_c00436{width:1.006560px;}
._4_c00436{width:2.120112px;}
.fc2_c00436{color:rgb(0,0,0);}
.fc1_c00436{color:rgb(255,0,0);}
.fc0_c00436{color:rgb(0,32,96);}
.fs1_c00436{font-size:156.240000px;}
.fs2_c00436{font-size:156.384000px;}
.fs0_c00436{font-size:264.240000px;}
.y0_c00436{bottom:0.000000px;}
.yc_c00436{bottom:44.028000px;}
.yb_c00436{bottom:81.468000px;}
.ya_c00436{bottom:118.908000px;}
.y9_c00436{bottom:171.510000px;}
.y8_c00436{bottom:208.950000px;}
.y7_c00436{bottom:290.670000px;}
.y6_c00436{bottom:395.640000px;}
.y5_c00436{bottom:433.080000px;}
.y4_c00436{bottom:470.520000px;}
.y3_c00436{bottom:552.450000px;}
.y2_c00436{bottom:604.830000px;}
.y1_c00436{bottom:713.520000px;}
.h5_c00436{height:125.724375px;}
.h7_c00436{height:128.852227px;}
.h4_c00436{height:155.400820px;}
.h6_c00436{height:155.544047px;}
.h2_c00436{height:159.978164px;}
.h3_c00436{height:160.125609px;}
.h1_c00436{height:251.595703px;}
.h0_c00436{height:810.000000px;}
.w1_c00436{width:1439.999979px;}
.w0_c00436{width:1440.000000px;}
.x0_c00436{left:0.000000px;}
.x4_c00436{left:49.463979px;}
.x5_c00436{left:107.783979px;}
.x3_c00436{left:242.999979px;}
.x2_c00436{left:297.359979px;}
.x1_c00436{left:470.849979px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls5_c00436{letter-spacing:-13.226667pt;}
.ls4_c00436{letter-spacing:0.000000pt;}
.ls6_c00436{letter-spacing:0.170133pt;}
.ls0_c00436{letter-spacing:0.188160pt;}
.ls1_c00436{letter-spacing:0.188267pt;}
.ls2_c00436{letter-spacing:0.584192pt;}
.ls3_c00436{letter-spacing:1.999787pt;}
.ws0_c00436{word-spacing:-31.585941pt;}
.ws1_c00436{word-spacing:-31.386880pt;}
.ws2_c00436{word-spacing:0.000000pt;}
._6_c00436{margin-left:-12.343637pt;}
._5_c00436{margin-left:-7.456640pt;}
._2_c00436{margin-left:-4.135680pt;}
._0_c00436{margin-left:-2.113920pt;}
._1_c00436{margin-left:-0.939520pt;}
._3_c00436{width:0.894720pt;}
._4_c00436{width:1.884544pt;}
.fs1_c00436{font-size:138.880000pt;}
.fs2_c00436{font-size:139.008000pt;}
.fs0_c00436{font-size:234.880000pt;}
.y0_c00436{bottom:0.000000pt;}
.yc_c00436{bottom:39.136000pt;}
.yb_c00436{bottom:72.416000pt;}
.ya_c00436{bottom:105.696000pt;}
.y9_c00436{bottom:152.453333pt;}
.y8_c00436{bottom:185.733333pt;}
.y7_c00436{bottom:258.373333pt;}
.y6_c00436{bottom:351.680000pt;}
.y5_c00436{bottom:384.960000pt;}
.y4_c00436{bottom:418.240000pt;}
.y3_c00436{bottom:491.066667pt;}
.y2_c00436{bottom:537.626667pt;}
.y1_c00436{bottom:634.240000pt;}
.h5_c00436{height:111.755000pt;}
.h7_c00436{height:114.535313pt;}
.h4_c00436{height:138.134062pt;}
.h6_c00436{height:138.261375pt;}
.h2_c00436{height:142.202812pt;}
.h3_c00436{height:142.333875pt;}
.h1_c00436{height:223.640625pt;}
.h0_c00436{height:720.000000pt;}
.w1_c00436{width:1279.999981pt;}
.w0_c00436{width:1280.000000pt;}
.x0_c00436{left:0.000000pt;}
.x4_c00436{left:43.967981pt;}
.x5_c00436{left:95.807981pt;}
.x3_c00436{left:215.999981pt;}
.x2_c00436{left:264.319981pt;}
.x1_c00436{left:418.533314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0674658b4ff410b915090cdf.woff')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:0.921875;font-style:normal;font-weight:normal;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_de134d1ea59e89f212c393b9.woff')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.130371;font-style:normal;font-weight:normal;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_ad51cd49daa779d2b0be9238.woff')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.202148;font-style:normal;font-weight:normal;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_5b21a59972a6c4e1fbef2134.woff')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00437;src:url('chunks/assets/font_16addb79a05e38966c54aec4.woff')format("woff");}.ff5_c00437{font-family:ff5_c00437;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls2_c00437{letter-spacing:-0.324000px;}
.ls0_c00437{letter-spacing:0.000000px;}
.ls1_c00437{letter-spacing:0.180000px;}
.sc__c00437{text-shadow:none;}
.sc1_c00437{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1_c00437{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00437{word-spacing:-24.588000px;}
.ws0_c00437{word-spacing:-24.408000px;}
.ws2_c00437{word-spacing:0.000000px;}
._2_c00437{margin-left:-6.870240px;}
._5_c00437{margin-left:-5.813280px;}
._1_c00437{margin-left:-4.756320px;}
._4_c00437{margin-left:-3.435120px;}
._0_c00437{margin-left:-2.378160px;}
._3_c00437{margin-left:-1.056960px;}
._6_c00437{width:1.404000px;}
.fc4_c00437{color:transparent;}
.fc3_c00437{color:rgb(0,0,0);}
.fc2_c00437{color:rgb(255,0,0);}
.fc1_c00437{color:rgb(0,32,96);}
.fc0_c00437{color:rgb(0,112,192);}
.fs2_c00437{font-size:108.000000px;}
.fs1_c00437{font-size:120.240000px;}
.fs0_c00437{font-size:264.240000px;}
.y0_c00437{bottom:0.000000px;}
.y5_c00437{bottom:167.220000px;}
.y4_c00437{bottom:199.650000px;}
.y3_c00437{bottom:232.770000px;}
.y1_c00437{bottom:685.365000px;}
.y2_c00437{bottom:713.520000px;}
.h5_c00437{height:107.419922px;}
.h4_c00437{height:110.583984px;}
.h3_c00437{height:123.116836px;}
.h1_c00437{height:239.080430px;}
.h2_c00437{height:251.595703px;}
.h0_c00437{height:810.000000px;}
.w1_c00437{width:1439.999979px;}
.w0_c00437{width:1440.000000px;}
.x0_c00437{left:0.000000px;}
.x1_c00437{left:244.829979px;}
.x2_c00437{left:399.344979px;}
.x3_c00437{left:682.889979px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls2_c00437{letter-spacing:-0.288000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ls1_c00437{letter-spacing:0.160000pt;}
.ws1_c00437{word-spacing:-21.856000pt;}
.ws0_c00437{word-spacing:-21.696000pt;}
.ws2_c00437{word-spacing:0.000000pt;}
._2_c00437{margin-left:-6.106880pt;}
._5_c00437{margin-left:-5.167360pt;}
._1_c00437{margin-left:-4.227840pt;}
._4_c00437{margin-left:-3.053440pt;}
._0_c00437{margin-left:-2.113920pt;}
._3_c00437{margin-left:-0.939520pt;}
._6_c00437{width:1.248000pt;}
.fs2_c00437{font-size:96.000000pt;}
.fs1_c00437{font-size:106.880000pt;}
.fs0_c00437{font-size:234.880000pt;}
.y0_c00437{bottom:0.000000pt;}
.y5_c00437{bottom:148.640000pt;}
.y4_c00437{bottom:177.466667pt;}
.y3_c00437{bottom:206.906667pt;}
.y1_c00437{bottom:609.213333pt;}
.y2_c00437{bottom:634.240000pt;}
.h5_c00437{height:95.484375pt;}
.h4_c00437{height:98.296875pt;}
.h3_c00437{height:109.437187pt;}
.h1_c00437{height:212.515938pt;}
.h2_c00437{height:223.640625pt;}
.h0_c00437{height:720.000000pt;}
.w1_c00437{width:1279.999981pt;}
.w0_c00437{width:1280.000000pt;}
.x0_c00437{left:0.000000pt;}
.x1_c00437{left:217.626648pt;}
.x2_c00437{left:354.973314pt;}
.x3_c00437{left:607.013314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_82133e0c02293889d1b7edac.woff')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.202148;font-style:normal;font-weight:normal;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_553aaac3b9262f6eb6b35f48.woff')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.202148;font-style:normal;font-weight:normal;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_8c34da40bcb9ef9c58af6e56.woff')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00438;src:url('chunks/assets/font_f23d0e4e8f0047aabaebca84.woff')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:1.001953;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00438;src:url('chunks/assets/font_edef7a6ecbf8d81bc6b8aefc.woff')format("woff");}.ff5_c00438{font-family:ff5_c00438;line-height:1.001953;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00438;src:url('chunks/assets/font_86894b08136f49ea068270dc.woff')format("woff");}.ff6_c00438{font-family:ff6_c00438;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00438;src:url('chunks/assets/font_9472dd3ecc27069a6b0f65d4.woff')format("woff");}.ff7_c00438{font-family:ff7_c00438;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00438;src:url('chunks/assets/font_cded65a4ceffe9bad1e4b4ac.woff')format("woff");}.ff8_c00438{font-family:ff8_c00438;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00438;src:url('chunks/assets/font_891ff6181a7eedbd44f41239.woff')format("woff");}.ff9_c00438{font-family:ff9_c00438;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls4_c00438{letter-spacing:0.000000px;}
.ls0_c00438{letter-spacing:0.246240px;}
.ls2_c00438{letter-spacing:0.288720px;}
.ls1_c00438{letter-spacing:1.686240px;}
.ls3_c00438{letter-spacing:32.544000px;}
.sc__c00438{text-shadow:none;}
.sc1_c00438{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1_c00438{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00438{word-spacing:-37.913760px;}
.ws1_c00438{word-spacing:0.000000px;}
._5_c00438{margin-left:-10.401120px;}
._6_c00438{margin-left:-7.365600px;}
._7_c00438{margin-left:-6.341760px;}
._4_c00438{margin-left:-5.158320px;}
._1_c00438{margin-left:-3.187440px;}
._2_c00438{margin-left:-2.180880px;}
._0_c00438{margin-left:-1.174320px;}
._3_c00438{width:1.845360px;}
.fc4_c00438{color:rgb(46,117,182);}
.fc3_c00438{color:rgb(0,32,96);}
.fc2_c00438{color:rgb(0,112,192);}
.fc1_c00438{color:rgb(0,0,0);}
.fc0_c00438{color:rgb(255,0,0);}
.fs1_c00438{font-size:144.000000px;}
.fs3_c00438{font-size:144.144000px;}
.fs0_c00438{font-size:167.760000px;}
.fs2_c00438{font-size:167.904000px;}
.fs4_c00438{font-size:264.240000px;}
.y0_c00438{bottom:0.000000px;}
.ya_c00438{bottom:85.752000px;}
.y9_c00438{bottom:128.988000px;}
.y8_c00438{bottom:217.005000px;}
.y7_c00438{bottom:267.405000px;}
.y6_c00438{bottom:317.850000px;}
.y5_c00438{bottom:368.250000px;}
.y4_c00438{bottom:418.650000px;}
.y3_c00438{bottom:482.370000px;}
.y2_c00438{bottom:542.160000px;}
.y1_c00438{bottom:602.640000px;}
.yb_c00438{bottom:713.520000px;}
.h4_c00438{height:134.994375px;}
.h3_c00438{height:138.352852px;}
.h5_c00438{height:138.471609px;}
.h2_c00438{height:143.226562px;}
.h7_c00438{height:147.445312px;}
.h6_c00438{height:147.592758px;}
.h1_c00438{height:171.773789px;}
.h8_c00438{height:251.595703px;}
.h0_c00438{height:810.000000px;}
.w1_c00438{width:1439.999979px;}
.w0_c00438{width:1440.000000px;}
.x0_c00438{left:0.000000px;}
.x3_c00438{left:55.799979px;}
.x1_c00438{left:271.829979px;}
.x4_c00438{left:473.369979px;}
.x2_c00438{left:596.234979px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls4_c00438{letter-spacing:0.000000pt;}
.ls0_c00438{letter-spacing:0.218880pt;}
.ls2_c00438{letter-spacing:0.256640pt;}
.ls1_c00438{letter-spacing:1.498880pt;}
.ls3_c00438{letter-spacing:28.928000pt;}
.ws0_c00438{word-spacing:-33.701120pt;}
.ws1_c00438{word-spacing:0.000000pt;}
._5_c00438{margin-left:-9.245440pt;}
._6_c00438{margin-left:-6.547200pt;}
._7_c00438{margin-left:-5.637120pt;}
._4_c00438{margin-left:-4.585173pt;}
._1_c00438{margin-left:-2.833280pt;}
._2_c00438{margin-left:-1.938560pt;}
._0_c00438{margin-left:-1.043840pt;}
._3_c00438{width:1.640320pt;}
.fs1_c00438{font-size:128.000000pt;}
.fs3_c00438{font-size:128.128000pt;}
.fs0_c00438{font-size:149.120000pt;}
.fs2_c00438{font-size:149.248000pt;}
.fs4_c00438{font-size:234.880000pt;}
.y0_c00438{bottom:0.000000pt;}
.ya_c00438{bottom:76.224000pt;}
.y9_c00438{bottom:114.656000pt;}
.y8_c00438{bottom:192.893333pt;}
.y7_c00438{bottom:237.693333pt;}
.y6_c00438{bottom:282.533333pt;}
.y5_c00438{bottom:327.333333pt;}
.y4_c00438{bottom:372.133333pt;}
.y3_c00438{bottom:428.773333pt;}
.y2_c00438{bottom:481.920000pt;}
.y1_c00438{bottom:535.680000pt;}
.yb_c00438{bottom:634.240000pt;}
.h4_c00438{height:119.995000pt;}
.h3_c00438{height:122.980312pt;}
.h5_c00438{height:123.085875pt;}
.h2_c00438{height:127.312500pt;}
.h7_c00438{height:131.062500pt;}
.h6_c00438{height:131.193562pt;}
.h1_c00438{height:152.687812pt;}
.h8_c00438{height:223.640625pt;}
.h0_c00438{height:720.000000pt;}
.w1_c00438{width:1279.999981pt;}
.w0_c00438{width:1280.000000pt;}
.x0_c00438{left:0.000000pt;}
.x3_c00438{left:49.599981pt;}
.x1_c00438{left:241.626648pt;}
.x4_c00438{left:420.773314pt;}
.x2_c00438{left:529.986648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_159037a5888a4a29c93648eb.woff')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.130371;font-style:normal;font-weight:normal;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_6bb5e7b1c19933a92bae3dd3.woff')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.202148;font-style:normal;font-weight:normal;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_70ff4030722c67477ff99166.woff')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.172852;font-style: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;}
.sc1_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00439{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc1_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00439{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00439{word-spacing:0.000000px;}
._2_c00439{margin-left:-7.134480px;}
._1_c00439{margin-left:-5.284800px;}
._4_c00439{margin-left:-3.699360px;}
._0_c00439{margin-left:-2.378160px;}
._3_c00439{margin-left:-1.321200px;}
._5_c00439{width:1.010160px;}
.fc2_c00439{color:rgb(0,0,0);}
.fc1_c00439{color:rgb(255,0,0);}
.fc0_c00439{color:rgb(0,32,96);}
.fs1_c00439{font-size:108.000000px;}
.fs0_c00439{font-size:264.240000px;}
.y0_c00439{bottom:0.000000px;}
.y2_c00439{bottom:118.656000px;}
.y3_c00439{bottom:385.995000px;}
.y1_c00439{bottom:715.395000px;}
.h2_c00439{height:110.583984px;}
.h1_c00439{height:251.595703px;}
.h0_c00439{height:810.000000px;}
.w1_c00439{width:1439.999979px;}
.w0_c00439{width:1440.000000px;}
.x0_c00439{left:0.000000px;}
.x2_c00439{left:10.799979px;}
.x1_c00439{left:400.109979px;}
.x3_c00439{left:570.419979px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls0_c00439{letter-spacing:0.000000pt;}
.ws0_c00439{word-spacing:0.000000pt;}
._2_c00439{margin-left:-6.341760pt;}
._1_c00439{margin-left:-4.697600pt;}
._4_c00439{margin-left:-3.288320pt;}
._0_c00439{margin-left:-2.113920pt;}
._3_c00439{margin-left:-1.174400pt;}
._5_c00439{width:0.897920pt;}
.fs1_c00439{font-size:96.000000pt;}
.fs0_c00439{font-size:234.880000pt;}
.y0_c00439{bottom:0.000000pt;}
.y2_c00439{bottom:105.472000pt;}
.y3_c00439{bottom:343.106667pt;}
.y1_c00439{bottom:635.906667pt;}
.h2_c00439{height:98.296875pt;}
.h1_c00439{height:223.640625pt;}
.h0_c00439{height:720.000000pt;}
.w1_c00439{width:1279.999981pt;}
.w0_c00439{width:1280.000000pt;}
.x0_c00439{left:0.000000pt;}
.x2_c00439{left:9.599981pt;}
.x1_c00439{left:355.653314pt;}
.x3_c00439{left:507.039981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2d29288a838e5a076c46586.woff')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.130371;font-style:normal;font-weight:normal;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_15d062fdfd6cb2f92f1bb6fa.woff')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.172852;font-style:normal;font-weight:normal;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_f4b11072ae8bc21c375eb907.woff')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00440;src:url('chunks/assets/font_0f99675db50ae2a0235273c3.woff')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:1.172852;font-style: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;}
.ls0_c00440{letter-spacing:0.000000px;}
.sc__c00440{text-shadow:none;}
.sc1_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00440{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc1_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00440{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00440{word-spacing:-144.000000px;}
.ws1_c00440{word-spacing:0.000000px;}
._1_c00440{margin-left:-2.642400px;}
._0_c00440{margin-left:-1.585440px;}
.fc1_c00440{color:rgb(237,125,49);}
.fc0_c00440{color:rgb(0,32,96);}
.fs2_c00440{font-size:144.000000px;}
.fs1_c00440{font-size:144.144000px;}
.fs0_c00440{font-size:264.240000px;}
.y0_c00440{bottom:0.000000px;}
.y5_c00440{bottom:150.270000px;}
.y4_c00440{bottom:193.470000px;}
.y3_c00440{bottom:236.670000px;}
.y2_c00440{bottom:279.900000px;}
.y1_c00440{bottom:713.520000px;}
.h3_c00440{height:143.226562px;}
.h2_c00440{height:143.369789px;}
.h4_c00440{height:147.445312px;}
.h1_c00440{height:251.595703px;}
.h0_c00440{height:810.000000px;}
.w1_c00440{width:1439.999979px;}
.w0_c00440{width:1440.000000px;}
.x0_c00440{left:0.000000px;}
.x1_c00440{left:333.284979px;}
.x2_c00440{left:1000.259979px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ws0_c00440{word-spacing:-128.000000pt;}
.ws1_c00440{word-spacing:0.000000pt;}
._1_c00440{margin-left:-2.348800pt;}
._0_c00440{margin-left:-1.409280pt;}
.fs2_c00440{font-size:128.000000pt;}
.fs1_c00440{font-size:128.128000pt;}
.fs0_c00440{font-size:234.880000pt;}
.y0_c00440{bottom:0.000000pt;}
.y5_c00440{bottom:133.573333pt;}
.y4_c00440{bottom:171.973333pt;}
.y3_c00440{bottom:210.373333pt;}
.y2_c00440{bottom:248.800000pt;}
.y1_c00440{bottom:634.240000pt;}
.h3_c00440{height:127.312500pt;}
.h2_c00440{height:127.439813pt;}
.h4_c00440{height:131.062500pt;}
.h1_c00440{height:223.640625pt;}
.h0_c00440{height:720.000000pt;}
.w1_c00440{width:1279.999981pt;}
.w0_c00440{width:1280.000000pt;}
.x0_c00440{left:0.000000pt;}
.x1_c00440{left:296.253314pt;}
.x2_c00440{left:889.119981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6bb5d69215f89213434c3c7.woff')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.130371;font-style:normal;font-weight:normal;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:0.739746;font-style:normal;font-weight:normal;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_1570bd82309b4a12a0e25827.woff')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.202148;font-style:normal;font-weight:normal;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_b923c075dd961e6937d9c1eb.woff')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls2_c00441{letter-spacing:0.000000px;}
.ls1_c00441{letter-spacing:157.233600px;}
.ls0_c00441{letter-spacing:157.284000px;}
.sc__c00441{text-shadow:none;}
.sc1_c00441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00441{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00441{-webkit-text-stroke:0px transparent;}
.sc1_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00441{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00441{word-spacing:0.000000px;}
._3_c00441{margin-left:-5.813280px;}
._2_c00441{margin-left:-3.435120px;}
._1_c00441{margin-left:-2.378160px;}
._0_c00441{margin-left:-1.321200px;}
._4_c00441{width:1.677600px;}
._5_c00441{width:2.774400px;}
.fc2_c00441{color:rgb(0,0,0);}
.fc1_c00441{color:rgb(255,0,0);}
.fc0_c00441{color:rgb(0,32,96);}
.fs1_c00441{font-size:167.760000px;}
.fs2_c00441{font-size:167.904000px;}
.fs0_c00441{font-size:264.240000px;}
.y0_c00441{bottom:0.000000px;}
.y8_c00441{bottom:98.208000px;}
.y7_c00441{bottom:148.644000px;}
.y6_c00441{bottom:249.450000px;}
.y5_c00441{bottom:299.880000px;}
.y4_c00441{bottom:400.680000px;}
.y3_c00441{bottom:501.510000px;}
.y2_c00441{bottom:551.910000px;}
.y1_c00441{bottom:713.520000px;}
.h5_c00441{height:166.858945px;}
.h3_c00441{height:167.002172px;}
.h2_c00441{height:171.773789px;}
.h4_c00441{height:171.921234px;}
.h1_c00441{height:251.595703px;}
.h0_c00441{height:810.000000px;}
.w1_c00441{width:1439.999979px;}
.w0_c00441{width:1440.000000px;}
.x0_c00441{left:0.000000px;}
.x2_c00441{left:75.311979px;}
.x3_c00441{left:129.311979px;}
.x1_c00441{left:452.849979px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls2_c00441{letter-spacing:0.000000pt;}
.ls1_c00441{letter-spacing:139.763200pt;}
.ls0_c00441{letter-spacing:139.808000pt;}
.ws0_c00441{word-spacing:0.000000pt;}
._3_c00441{margin-left:-5.167360pt;}
._2_c00441{margin-left:-3.053440pt;}
._1_c00441{margin-left:-2.113920pt;}
._0_c00441{margin-left:-1.174400pt;}
._4_c00441{width:1.491200pt;}
._5_c00441{width:2.466133pt;}
.fs1_c00441{font-size:149.120000pt;}
.fs2_c00441{font-size:149.248000pt;}
.fs0_c00441{font-size:234.880000pt;}
.y0_c00441{bottom:0.000000pt;}
.y8_c00441{bottom:87.296000pt;}
.y7_c00441{bottom:132.128000pt;}
.y6_c00441{bottom:221.733333pt;}
.y5_c00441{bottom:266.560000pt;}
.y4_c00441{bottom:356.160000pt;}
.y3_c00441{bottom:445.786667pt;}
.y2_c00441{bottom:490.586667pt;}
.y1_c00441{bottom:634.240000pt;}
.h5_c00441{height:148.319063pt;}
.h3_c00441{height:148.446375pt;}
.h2_c00441{height:152.687812pt;}
.h4_c00441{height:152.818875pt;}
.h1_c00441{height:223.640625pt;}
.h0_c00441{height:720.000000pt;}
.w1_c00441{width:1279.999981pt;}
.w0_c00441{width:1280.000000pt;}
.x0_c00441{left:0.000000pt;}
.x2_c00441{left:66.943981pt;}
.x3_c00441{left:114.943981pt;}
.x1_c00441{left:402.533314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5cd52062430eeda7f422304a.woff')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.130371;font-style:normal;font-weight:normal;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_2583bed729c8c46b90e8f364.woff')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00442;src:url('chunks/assets/font_0830974ef60385b60881f10d.woff')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00442;src:url('chunks/assets/font_fcad6c7cefd23bfda4e040e4.woff')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00442;src:url('chunks/assets/font_e56370922b1a8ae3eeb103a0.woff')format("woff");}.ff5_c00442{font-family:ff5_c00442;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.v1_c00442{vertical-align:75.780000px;}
.v2_c00442{vertical-align:151.320000px;}
.ls1_c00442{letter-spacing:0.000000px;}
.ls0_c00442{letter-spacing:0.090000px;}
.ls2_c00442{letter-spacing:0.144000px;}
.sc__c00442{text-shadow:none;}
.sc1_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00442{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc1_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00442{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00442{word-spacing:-28.508544px;}
.ws3_c00442{word-spacing:-28.476000px;}
.ws4_c00442{word-spacing:0.000000px;}
.ws2_c00442{word-spacing:609.072000px;}
.ws1_c00442{word-spacing:774.144000px;}
._5_c00442{margin-left:-11.626560px;}
._2_c00442{margin-left:-6.870240px;}
._4_c00442{margin-left:-5.284800px;}
._3_c00442{margin-left:-3.699360px;}
._1_c00442{margin-left:-2.642400px;}
._0_c00442{margin-left:-1.585440px;}
._6_c00442{width:1.387584px;}
._9_c00442{width:493.224000px;}
._8_c00442{width:780.606000px;}
._7_c00442{width:847.518000px;}
.fc2_c00442{color:rgb(0,0,0);}
.fc1_c00442{color:rgb(255,255,255);}
.fc0_c00442{color:rgb(0,32,96);}
.fs2_c00442{font-size:126.000000px;}
.fs1_c00442{font-size:126.144000px;}
.fs0_c00442{font-size:264.240000px;}
.y0_c00442{bottom:0.000000px;}
.y12_c00442{bottom:25.020000px;}
.y18_c00442{bottom:37.044000px;}
.y16_c00442{bottom:55.944000px;}
.y17_c00442{bottom:74.844000px;}
.y13_c00442{bottom:121.608000px;}
.yc_c00442{bottom:121.650000px;}
.y15_c00442{bottom:127.728000px;}
.y14_c00442{bottom:146.628000px;}
.y11_c00442{bottom:216.285000px;}
.ye_c00442{bottom:235.185000px;}
.y5_c00442{bottom:237.960000px;}
.y10_c00442{bottom:254.085000px;}
.yb_c00442{bottom:259.740000px;}
.y6_c00442{bottom:272.880000px;}
.yd_c00442{bottom:272.985000px;}
.y3_c00442{bottom:273.030000px;}
.yf_c00442{bottom:291.930000px;}
.y2_c00442{bottom:328.500000px;}
.ya_c00442{bottom:343.590000px;}
.y9_c00442{bottom:381.390000px;}
.y8_c00442{bottom:419.220000px;}
.y7_c00442{bottom:473.010000px;}
.y4_c00442{bottom:563.685000px;}
.y1_c00442{bottom:713.520000px;}
.h9_c00442{height:125.323242px;}
.h7_c00442{height:125.466469px;}
.h4_c00442{height:129.014648px;}
.h3_c00442{height:129.162094px;}
.hf_c00442{height:199.080000px;}
.hc_c00442{height:200.923242px;}
.he_c00442{height:201.234469px;}
.h5_c00442{height:204.942094px;}
.h1_c00442{height:251.595703px;}
.hb_c00442{height:264.780000px;}
.h8_c00442{height:276.786469px;}
.h10_c00442{height:331.380000px;}
.h2_c00442{height:481.500000px;}
.h6_c00442{height:529.380000px;}
.hd_c00442{height:661.860000px;}
.ha_c00442{height:789.120000px;}
.h0_c00442{height:810.000000px;}
.w3_c00442{width:264.600000px;}
.w2_c00442{width:337.320000px;}
.w4_c00442{width:660.240000px;}
.w1_c00442{width:1439.999979px;}
.w0_c00442{width:1440.000000px;}
.x0_c00442{left:0.000000px;}
.x19_c00442{left:66.750000px;}
.x3_c00442{left:67.965000px;}
.x7_c00442{left:70.170000px;}
.xb_c00442{left:74.085000px;}
.x16_c00442{left:77.190000px;}
.x1c_c00442{left:80.175000px;}
.x2_c00442{left:129.060000px;}
.xf_c00442{left:250.349979px;}
.x4_c00442{left:252.509979px;}
.xa_c00442{left:257.909979px;}
.x10_c00442{left:265.109979px;}
.x8_c00442{left:274.289979px;}
.x1_c00442{left:277.484979px;}
.x14_c00442{left:441.645000px;}
.x5_c00442{left:466.200000px;}
.x17_c00442{left:539.564979px;}
.x1a_c00442{left:567.464979px;}
.x6_c00442{left:570.884979px;}
.x1b_c00442{left:580.604979px;}
.x13_c00442{left:730.620000px;}
.x12_c00442{left:799.769979px;}
.x1d_c00442{left:822.674979px;}
.x11_c00442{left:829.469979px;}
.x18_c00442{left:851.654979px;}
.xe_c00442{left:854.354979px;}
.xd_c00442{left:890.534979px;}
.xc_c00442{left:905.294979px;}
.x9_c00442{left:950.114979px;}
.x15_c00442{left:985.934979px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.v1_c00442{vertical-align:67.360000pt;}
.v2_c00442{vertical-align:134.506667pt;}
.ls1_c00442{letter-spacing:0.000000pt;}
.ls0_c00442{letter-spacing:0.080000pt;}
.ls2_c00442{letter-spacing:0.128000pt;}
.ws0_c00442{word-spacing:-25.340928pt;}
.ws3_c00442{word-spacing:-25.312000pt;}
.ws4_c00442{word-spacing:0.000000pt;}
.ws2_c00442{word-spacing:541.397333pt;}
.ws1_c00442{word-spacing:688.128000pt;}
._5_c00442{margin-left:-10.334720pt;}
._2_c00442{margin-left:-6.106880pt;}
._4_c00442{margin-left:-4.697600pt;}
._3_c00442{margin-left:-3.288320pt;}
._1_c00442{margin-left:-2.348800pt;}
._0_c00442{margin-left:-1.409280pt;}
._6_c00442{width:1.233408pt;}
._9_c00442{width:438.421333pt;}
._8_c00442{width:693.872000pt;}
._7_c00442{width:753.349333pt;}
.fs2_c00442{font-size:112.000000pt;}
.fs1_c00442{font-size:112.128000pt;}
.fs0_c00442{font-size:234.880000pt;}
.y0_c00442{bottom:0.000000pt;}
.y12_c00442{bottom:22.240000pt;}
.y18_c00442{bottom:32.928000pt;}
.y16_c00442{bottom:49.728000pt;}
.y17_c00442{bottom:66.528000pt;}
.y13_c00442{bottom:108.096000pt;}
.yc_c00442{bottom:108.133333pt;}
.y15_c00442{bottom:113.536000pt;}
.y14_c00442{bottom:130.336000pt;}
.y11_c00442{bottom:192.253333pt;}
.ye_c00442{bottom:209.053333pt;}
.y5_c00442{bottom:211.520000pt;}
.y10_c00442{bottom:225.853333pt;}
.yb_c00442{bottom:230.880000pt;}
.y6_c00442{bottom:242.560000pt;}
.yd_c00442{bottom:242.653333pt;}
.y3_c00442{bottom:242.693333pt;}
.yf_c00442{bottom:259.493333pt;}
.y2_c00442{bottom:292.000000pt;}
.ya_c00442{bottom:305.413333pt;}
.y9_c00442{bottom:339.013333pt;}
.y8_c00442{bottom:372.640000pt;}
.y7_c00442{bottom:420.453333pt;}
.y4_c00442{bottom:501.053333pt;}
.y1_c00442{bottom:634.240000pt;}
.h9_c00442{height:111.398438pt;}
.h7_c00442{height:111.525750pt;}
.h4_c00442{height:114.679688pt;}
.h3_c00442{height:114.810750pt;}
.hf_c00442{height:176.960000pt;}
.hc_c00442{height:178.598438pt;}
.he_c00442{height:178.875083pt;}
.h5_c00442{height:182.170750pt;}
.h1_c00442{height:223.640625pt;}
.hb_c00442{height:235.360000pt;}
.h8_c00442{height:246.032417pt;}
.h10_c00442{height:294.560000pt;}
.h2_c00442{height:428.000000pt;}
.h6_c00442{height:470.560000pt;}
.hd_c00442{height:588.320000pt;}
.ha_c00442{height:701.440000pt;}
.h0_c00442{height:720.000000pt;}
.w3_c00442{width:235.200000pt;}
.w2_c00442{width:299.840000pt;}
.w4_c00442{width:586.880000pt;}
.w1_c00442{width:1279.999981pt;}
.w0_c00442{width:1280.000000pt;}
.x0_c00442{left:0.000000pt;}
.x19_c00442{left:59.333333pt;}
.x3_c00442{left:60.413333pt;}
.x7_c00442{left:62.373333pt;}
.xb_c00442{left:65.853333pt;}
.x16_c00442{left:68.613333pt;}
.x1c_c00442{left:71.266667pt;}
.x2_c00442{left:114.720000pt;}
.xf_c00442{left:222.533314pt;}
.x4_c00442{left:224.453314pt;}
.xa_c00442{left:229.253314pt;}
.x10_c00442{left:235.653314pt;}
.x8_c00442{left:243.813314pt;}
.x1_c00442{left:246.653314pt;}
.x14_c00442{left:392.573333pt;}
.x5_c00442{left:414.400000pt;}
.x17_c00442{left:479.613314pt;}
.x1a_c00442{left:504.413314pt;}
.x6_c00442{left:507.453314pt;}
.x1b_c00442{left:516.093314pt;}
.x13_c00442{left:649.440000pt;}
.x12_c00442{left:710.906648pt;}
.x1d_c00442{left:731.266648pt;}
.x11_c00442{left:737.306648pt;}
.x18_c00442{left:757.026648pt;}
.xe_c00442{left:759.426648pt;}
.xd_c00442{left:791.586648pt;}
.xc_c00442{left:804.706648pt;}
.x9_c00442{left:844.546648pt;}
.x15_c00442{left:876.386648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_86910ab64a1f229d81cf50ff.woff')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.130371;font-style:normal;font-weight:normal;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_27632d677163cd7b455823ae.woff')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_8c34da40bcb9ef9c58af6e56.woff')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls0_c00443{letter-spacing:0.000000px;}
.sc__c00443{text-shadow:none;}
.sc1_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00443{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc1_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00443{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00443{word-spacing:0.000000px;}
._3_c00443{margin-left:-10.833840px;}
._2_c00443{margin-left:-6.077520px;}
._4_c00443{margin-left:-5.046192px;}
._0_c00443{margin-left:-3.170880px;}
._1_c00443{margin-left:-1.585440px;}
._5_c00443{width:1.386720px;}
.fc1_c00443{color:rgb(0,0,0);}
.fc0_c00443{color:rgb(0,32,96);}
.fs2_c00443{font-size:102.240000px;}
.fs1_c00443{font-size:144.144000px;}
.fs0_c00443{font-size:264.240000px;}
.y0_c00443{bottom:0.000000px;}
.y3_c00443{bottom:16.308000px;}
.y2_c00443{bottom:587.190000px;}
.y1_c00443{bottom:713.520000px;}
.h3_c00443{height:101.690859px;}
.h2_c00443{height:143.369789px;}
.h1_c00443{height:251.595703px;}
.h0_c00443{height:810.000000px;}
.w1_c00443{width:1439.999979px;}
.w0_c00443{width:1440.000000px;}
.x0_c00443{left:0.000000px;}
.x2_c00443{left:28.799979px;}
.x3_c00443{left:273.989979px;}
.x1_c00443{left:451.589979px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws0_c00443{word-spacing:0.000000pt;}
._3_c00443{margin-left:-9.630080pt;}
._2_c00443{margin-left:-5.402240pt;}
._4_c00443{margin-left:-4.485504pt;}
._0_c00443{margin-left:-2.818560pt;}
._1_c00443{margin-left:-1.409280pt;}
._5_c00443{width:1.232640pt;}
.fs2_c00443{font-size:90.880000pt;}
.fs1_c00443{font-size:128.128000pt;}
.fs0_c00443{font-size:234.880000pt;}
.y0_c00443{bottom:0.000000pt;}
.y3_c00443{bottom:14.496000pt;}
.y2_c00443{bottom:521.946667pt;}
.y1_c00443{bottom:634.240000pt;}
.h3_c00443{height:90.391875pt;}
.h2_c00443{height:127.439813pt;}
.h1_c00443{height:223.640625pt;}
.h0_c00443{height:720.000000pt;}
.w1_c00443{width:1279.999981pt;}
.w0_c00443{width:1280.000000pt;}
.x0_c00443{left:0.000000pt;}
.x2_c00443{left:25.599981pt;}
.x3_c00443{left:243.546648pt;}
.x1_c00443{left:401.413314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_568a59f89ded6d4f8ca2dccd.woff')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00444;src:url('chunks/assets/font_ed7d693f6235d74a8e33536b.woff')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00444;src:url('chunks/assets/font_ada854683f5fb6240a0e715d.woff')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.172852;font-style: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;}
.ls1_c00444{letter-spacing:-0.534000px;}
.ls0_c00444{letter-spacing:0.000000px;}
.sc__c00444{text-shadow:none;}
.sc1_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00444{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc1_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00444{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00444{word-spacing:-27.174240px;}
.ws1_c00444{word-spacing:0.000000px;}
._3_c00444{margin-left:-10.833840px;}
._5_c00444{margin-left:-9.708480px;}
._2_c00444{margin-left:-6.077520px;}
._0_c00444{margin-left:-3.170880px;}
._1_c00444{margin-left:-1.585440px;}
._4_c00444{width:1.314720px;}
.fc2_c00444{color:rgb(0,0,0);}
.fc1_c00444{color:rgb(255,0,0);}
.fc0_c00444{color:rgb(0,32,96);}
.fs2_c00444{font-size:102.240000px;}
.fs1_c00444{font-size:120.240000px;}
.fs0_c00444{font-size:264.240000px;}
.y0_c00444{bottom:0.000000px;}
.y4_c00444{bottom:31.500000px;}
.y3_c00444{bottom:566.535000px;}
.y2_c00444{bottom:602.535000px;}
.y1_c00444{bottom:713.520000px;}
.h4_c00444{height:101.690859px;}
.h3_c00444{height:119.594180px;}
.h2_c00444{height:123.116836px;}
.h1_c00444{height:251.595703px;}
.h0_c00444{height:810.000000px;}
.w1_c00444{width:1439.999979px;}
.w0_c00444{width:1440.000000px;}
.x0_c00444{left:0.000000px;}
.x2_c00444{left:61.847979px;}
.x1_c00444{left:451.589979px;}
.x3_c00444{left:859.319979px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls1_c00444{letter-spacing:-0.474667pt;}
.ls0_c00444{letter-spacing:0.000000pt;}
.ws0_c00444{word-spacing:-24.154880pt;}
.ws1_c00444{word-spacing:0.000000pt;}
._3_c00444{margin-left:-9.630080pt;}
._5_c00444{margin-left:-8.629760pt;}
._2_c00444{margin-left:-5.402240pt;}
._0_c00444{margin-left:-2.818560pt;}
._1_c00444{margin-left:-1.409280pt;}
._4_c00444{width:1.168640pt;}
.fs2_c00444{font-size:90.880000pt;}
.fs1_c00444{font-size:106.880000pt;}
.fs0_c00444{font-size:234.880000pt;}
.y0_c00444{bottom:0.000000pt;}
.y4_c00444{bottom:28.000000pt;}
.y3_c00444{bottom:503.586667pt;}
.y2_c00444{bottom:535.586667pt;}
.y1_c00444{bottom:634.240000pt;}
.h4_c00444{height:90.391875pt;}
.h3_c00444{height:106.305937pt;}
.h2_c00444{height:109.437187pt;}
.h1_c00444{height:223.640625pt;}
.h0_c00444{height:720.000000pt;}
.w1_c00444{width:1279.999981pt;}
.w0_c00444{width:1280.000000pt;}
.x0_c00444{left:0.000000pt;}
.x2_c00444{left:54.975981pt;}
.x1_c00444{left:401.413314pt;}
.x3_c00444{left:763.839981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_620e808d238dac32412318a0.woff')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_a904664330fef3e17329ce8d.woff')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_e36cb4bca36bb15c90450f0f.woff')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00445;src:url('chunks/assets/font_7b87fe94cd90e8bb66b54d22.woff')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00445;src:url('chunks/assets/font_abccddfa146b1a82d3e22aa5.woff')format("woff");}.ff5_c00445{font-family:ff5_c00445;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00445;src:url('chunks/assets/font_af887a8325d604c40c7c06ce.woff')format("woff");}.ff6_c00445{font-family:ff6_c00445;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00445;src:url('chunks/assets/font_5ca8c192b81ed37c7bbfbc3d.woff')format("woff");}.ff7_c00445{font-family:ff7_c00445;line-height:0.983398;font-style: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;}
.ls4_c00445{letter-spacing:-0.260400px;}
.ls3_c00445{letter-spacing:-0.180000px;}
.ls1_c00445{letter-spacing:0.000000px;}
.ls2_c00445{letter-spacing:0.256200px;}
.ls5_c00445{letter-spacing:0.348600px;}
.ls0_c00445{letter-spacing:125.206560px;}
.sc__c00445{text-shadow:none;}
.sc1_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00445{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc1_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00445{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws1_c00445{word-spacing:-95.760000px;}
.ws0_c00445{word-spacing:-21.641760px;}
.ws2_c00445{word-spacing:0.000000px;}
._3_c00445{margin-left:-10.833840px;}
._7_c00445{margin-left:-7.117200px;}
._2_c00445{margin-left:-6.077520px;}
._0_c00445{margin-left:-3.170880px;}
._1_c00445{margin-left:-1.585440px;}
._4_c00445{width:1.489680px;}
._5_c00445{width:3.011520px;}
._6_c00445{width:23.041920px;}
.fc4_c00445{color:transparent;}
.fc2_c00445{color:rgb(255,0,0);}
.fc3_c00445{color:rgb(0,0,0);}
.fc1_c00445{color:rgb(255,255,255);}
.fc0_c00445{color:rgb(0,32,96);}
.fs2_c00445{font-size:95.760000px;}
.fs1_c00445{font-size:95.904000px;}
.fs4_c00445{font-size:120.240000px;}
.fs3_c00445{font-size:120.384000px;}
.fs0_c00445{font-size:264.240000px;}
.y0_c00445{bottom:0.000000px;}
.yb_c00445{bottom:28.836000px;}
.ya_c00445{bottom:57.672000px;}
.y5_c00445{bottom:260.925000px;}
.y4_c00445{bottom:289.725000px;}
.y3_c00445{bottom:318.525000px;}
.y2_c00445{bottom:347.370000px;}
.y9_c00445{bottom:440.100000px;}
.y8_c00445{bottom:476.100000px;}
.y7_c00445{bottom:512.100000px;}
.y6_c00445{bottom:548.130000px;}
.y1_c00445{bottom:712.260000px;}
.h7_c00445{height:77.056875px;}
.h3_c00445{height:98.051133px;}
.h2_c00445{height:98.198578px;}
.h6_c00445{height:119.594180px;}
.h5_c00445{height:123.116836px;}
.h4_c00445{height:123.264281px;}
.h1_c00445{height:251.595703px;}
.h0_c00445{height:810.000000px;}
.w1_c00445{width:1439.999979px;}
.w0_c00445{width:1440.000000px;}
.x0_c00445{left:0.000000px;}
.x5_c00445{left:38.843979px;}
.x3_c00445{left:641.489979px;}
.x4_c00445{left:681.989979px;}
.x1_c00445{left:767.009979px;}
.x2_c00445{left:1198.469979px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls4_c00445{letter-spacing:-0.231467pt;}
.ls3_c00445{letter-spacing:-0.160000pt;}
.ls1_c00445{letter-spacing:0.000000pt;}
.ls2_c00445{letter-spacing:0.227733pt;}
.ls5_c00445{letter-spacing:0.309867pt;}
.ls0_c00445{letter-spacing:111.294720pt;}
.ws1_c00445{word-spacing:-85.120000pt;}
.ws0_c00445{word-spacing:-19.237120pt;}
.ws2_c00445{word-spacing:0.000000pt;}
._3_c00445{margin-left:-9.630080pt;}
._7_c00445{margin-left:-6.326400pt;}
._2_c00445{margin-left:-5.402240pt;}
._0_c00445{margin-left:-2.818560pt;}
._1_c00445{margin-left:-1.409280pt;}
._4_c00445{width:1.324160pt;}
._5_c00445{width:2.676907pt;}
._6_c00445{width:20.481707pt;}
.fs2_c00445{font-size:85.120000pt;}
.fs1_c00445{font-size:85.248000pt;}
.fs4_c00445{font-size:106.880000pt;}
.fs3_c00445{font-size:107.008000pt;}
.fs0_c00445{font-size:234.880000pt;}
.y0_c00445{bottom:0.000000pt;}
.yb_c00445{bottom:25.632000pt;}
.ya_c00445{bottom:51.264000pt;}
.y5_c00445{bottom:231.933333pt;}
.y4_c00445{bottom:257.533333pt;}
.y3_c00445{bottom:283.133333pt;}
.y2_c00445{bottom:308.773333pt;}
.y9_c00445{bottom:391.200000pt;}
.y8_c00445{bottom:423.200000pt;}
.y7_c00445{bottom:455.200000pt;}
.y6_c00445{bottom:487.226667pt;}
.y1_c00445{bottom:633.120000pt;}
.h7_c00445{height:68.495000pt;}
.h3_c00445{height:87.156562pt;}
.h2_c00445{height:87.287625pt;}
.h6_c00445{height:106.305937pt;}
.h5_c00445{height:109.437187pt;}
.h4_c00445{height:109.568250pt;}
.h1_c00445{height:223.640625pt;}
.h0_c00445{height:720.000000pt;}
.w1_c00445{width:1279.999981pt;}
.w0_c00445{width:1280.000000pt;}
.x0_c00445{left:0.000000pt;}
.x5_c00445{left:34.527981pt;}
.x3_c00445{left:570.213314pt;}
.x4_c00445{left:606.213314pt;}
.x1_c00445{left:681.786648pt;}
.x2_c00445{left:1065.306648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_126fab393f6db5817a82b492.woff')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.130371;font-style:normal;font-weight:normal;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_f923150b7452bcc960aed342.woff')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.172852;font-style:normal;font-weight:normal;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_d798990fc372db5555aea1ee.woff')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.v1_c00446{vertical-align:5.328000px;}
.ls1_c00446{letter-spacing:0.000000px;}
.ls0_c00446{letter-spacing:32.475024px;}
.sc__c00446{text-shadow:none;}
.sc1_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00446{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc1_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00446{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00446{word-spacing:0.000000px;}
._2_c00446{margin-left:-5.181120px;}
._1_c00446{margin-left:-3.170880px;}
._0_c00446{margin-left:-2.113920px;}
._4_c00446{margin-left:-1.054080px;}
._3_c00446{width:1.635840px;}
._5_c00446{width:1150.520640px;}
.fc1_c00446{color:rgb(0,0,0);}
.fc0_c00446{color:rgb(0,32,96);}
.fs3_c00446{font-size:102.240000px;}
.fs1_c00446{font-size:144.000000px;}
.fs2_c00446{font-size:144.144000px;}
.fs0_c00446{font-size:264.240000px;}
.y0_c00446{bottom:0.000000px;}
.y4_c00446{bottom:31.500000px;}
.y3_c00446{bottom:557.640000px;}
.y2_c00446{bottom:596.520000px;}
.y1_c00446{bottom:713.520000px;}
.h4_c00446{height:107.018859px;}
.h2_c00446{height:143.226562px;}
.h3_c00446{height:143.369789px;}
.h1_c00446{height:251.595703px;}
.h0_c00446{height:810.000000px;}
.w1_c00446{width:1439.999979px;}
.w0_c00446{width:1440.000000px;}
.x0_c00446{left:0.000000px;}
.x2_c00446{left:68.903979px;}
.x3_c00446{left:133.775979px;}
.x1_c00446{left:354.164979px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.v1_c00446{vertical-align:4.736000pt;}
.ls1_c00446{letter-spacing:0.000000pt;}
.ls0_c00446{letter-spacing:28.866688pt;}
.ws0_c00446{word-spacing:0.000000pt;}
._2_c00446{margin-left:-4.605440pt;}
._1_c00446{margin-left:-2.818560pt;}
._0_c00446{margin-left:-1.879040pt;}
._4_c00446{margin-left:-0.936960pt;}
._3_c00446{width:1.454080pt;}
._5_c00446{width:1022.685013pt;}
.fs3_c00446{font-size:90.880000pt;}
.fs1_c00446{font-size:128.000000pt;}
.fs2_c00446{font-size:128.128000pt;}
.fs0_c00446{font-size:234.880000pt;}
.y0_c00446{bottom:0.000000pt;}
.y4_c00446{bottom:28.000000pt;}
.y3_c00446{bottom:495.680000pt;}
.y2_c00446{bottom:530.240000pt;}
.y1_c00446{bottom:634.240000pt;}
.h4_c00446{height:95.127875pt;}
.h2_c00446{height:127.312500pt;}
.h3_c00446{height:127.439813pt;}
.h1_c00446{height:223.640625pt;}
.h0_c00446{height:720.000000pt;}
.w1_c00446{width:1279.999981pt;}
.w0_c00446{width:1280.000000pt;}
.x0_c00446{left:0.000000pt;}
.x2_c00446{left:61.247981pt;}
.x3_c00446{left:118.911981pt;}
.x1_c00446{left:314.813314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ff513e014508cc2ef6c34e7.woff')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.130371;font-style:normal;font-weight:normal;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_fd464546bba4d8701d7730b5.woff')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.172852;font-style: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;}
.ls0_c00447{letter-spacing:0.000000px;}
.sc__c00447{text-shadow:none;}
.sc1_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00447{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc1_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00447{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00447{word-spacing:-32.544000px;}
.ws1_c00447{word-spacing:0.000000px;}
._0_c00447{margin-left:-14.268960px;}
._6_c00447{margin-left:-10.080000px;}
._2_c00447{margin-left:-4.492080px;}
._4_c00447{margin-left:-3.168000px;}
._1_c00447{margin-left:-2.113920px;}
._3_c00447{margin-left:-1.056960px;}
._5_c00447{width:1.494720px;}
.fc2_c00447{color:rgb(255,255,255);}
.fc1_c00447{color:rgb(0,0,0);}
.fc0_c00447{color:rgb(0,32,96);}
.fs3_c00447{font-size:102.240000px;}
.fs1_c00447{font-size:144.000000px;}
.fs2_c00447{font-size:144.144000px;}
.fs0_c00447{font-size:264.240000px;}
.y0_c00447{bottom:0.000000px;}
.y5_c00447{bottom:32.832000px;}
.y4_c00447{bottom:512.670000px;}
.y3_c00447{bottom:555.915000px;}
.y2_c00447{bottom:599.115000px;}
.y1_c00447{bottom:713.520000px;}
.h4_c00447{height:101.690859px;}
.h2_c00447{height:143.226562px;}
.h3_c00447{height:143.369789px;}
.h1_c00447{height:251.595703px;}
.h0_c00447{height:810.000000px;}
.w1_c00447{width:1439.999979px;}
.w0_c00447{width:1440.000000px;}
.x0_c00447{left:0.000000px;}
.x2_c00447{left:64.799979px;}
.x1_c00447{left:133.811979px;}
.x3_c00447{left:991.649979px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ws0_c00447{word-spacing:-28.928000pt;}
.ws1_c00447{word-spacing:0.000000pt;}
._0_c00447{margin-left:-12.683520pt;}
._6_c00447{margin-left:-8.960000pt;}
._2_c00447{margin-left:-3.992960pt;}
._4_c00447{margin-left:-2.816000pt;}
._1_c00447{margin-left:-1.879040pt;}
._3_c00447{margin-left:-0.939520pt;}
._5_c00447{width:1.328640pt;}
.fs3_c00447{font-size:90.880000pt;}
.fs1_c00447{font-size:128.000000pt;}
.fs2_c00447{font-size:128.128000pt;}
.fs0_c00447{font-size:234.880000pt;}
.y0_c00447{bottom:0.000000pt;}
.y5_c00447{bottom:29.184000pt;}
.y4_c00447{bottom:455.706667pt;}
.y3_c00447{bottom:494.146667pt;}
.y2_c00447{bottom:532.546667pt;}
.y1_c00447{bottom:634.240000pt;}
.h4_c00447{height:90.391875pt;}
.h2_c00447{height:127.312500pt;}
.h3_c00447{height:127.439813pt;}
.h1_c00447{height:223.640625pt;}
.h0_c00447{height:720.000000pt;}
.w1_c00447{width:1279.999981pt;}
.w0_c00447{width:1280.000000pt;}
.x0_c00447{left:0.000000pt;}
.x2_c00447{left:57.599981pt;}
.x1_c00447{left:118.943981pt;}
.x3_c00447{left:881.466648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a8a04858c905d4fc2ee1d33.woff')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.130371;font-style:normal;font-weight:normal;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_18baa726b671482f3facd8ff.woff')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.172852;font-style: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;}
.ls0_c00448{letter-spacing:0.000000px;}
.sc__c00448{text-shadow:none;}
.sc1_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00448{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc1_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00448{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00448{word-spacing:0.000000px;}
._3_c00448{margin-left:-10.833840px;}
._4_c00448{margin-left:-5.813280px;}
._2_c00448{margin-left:-4.756320px;}
._1_c00448{margin-left:-3.170880px;}
._0_c00448{margin-left:-1.585440px;}
.fc1_c00448{color:rgb(0,0,0);}
.fc0_c00448{color:rgb(0,32,96);}
.fs1_c00448{font-size:144.144000px;}
.fs0_c00448{font-size:264.240000px;}
.y0_c00448{bottom:0.000000px;}
.y2_c00448{bottom:596.850000px;}
.y1_c00448{bottom:713.520000px;}
.h2_c00448{height:143.369789px;}
.h1_c00448{height:251.595703px;}
.h0_c00448{height:810.000000px;}
.w1_c00448{width:1439.999979px;}
.w0_c00448{width:1440.000000px;}
.x0_c00448{left:0.000000px;}
.x2_c00448{left:42.083979px;}
.x1_c00448{left:438.989979px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws0_c00448{word-spacing:0.000000pt;}
._3_c00448{margin-left:-9.630080pt;}
._4_c00448{margin-left:-5.167360pt;}
._2_c00448{margin-left:-4.227840pt;}
._1_c00448{margin-left:-2.818560pt;}
._0_c00448{margin-left:-1.409280pt;}
.fs1_c00448{font-size:128.128000pt;}
.fs0_c00448{font-size:234.880000pt;}
.y0_c00448{bottom:0.000000pt;}
.y2_c00448{bottom:530.533333pt;}
.y1_c00448{bottom:634.240000pt;}
.h2_c00448{height:127.439813pt;}
.h1_c00448{height:223.640625pt;}
.h0_c00448{height:720.000000pt;}
.w1_c00448{width:1279.999981pt;}
.w0_c00448{width:1280.000000pt;}
.x0_c00448{left:0.000000pt;}
.x2_c00448{left:37.407981pt;}
.x1_c00448{left:390.213314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38a53bef3891451175d9af31.woff')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.130371;font-style:normal;font-weight:normal;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_10429475fb520ad99a2fce34.woff')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_8c34da40bcb9ef9c58af6e56.woff')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.172852;font-style: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;}
.ls0_c00449{letter-spacing:0.000000px;}
.sc__c00449{text-shadow:none;}
.sc1_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00449{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc1_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00449{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00449{word-spacing:0.000000px;}
._3_c00449{margin-left:-10.833840px;}
._4_c00449{margin-left:-5.813280px;}
._2_c00449{margin-left:-4.756320px;}
._1_c00449{margin-left:-3.170880px;}
._0_c00449{margin-left:-1.585440px;}
.fc1_c00449{color:rgb(0,0,0);}
.fc0_c00449{color:rgb(0,32,96);}
.fs1_c00449{font-size:144.144000px;}
.fs0_c00449{font-size:264.240000px;}
.y0_c00449{bottom:0.000000px;}
.y2_c00449{bottom:596.850000px;}
.y1_c00449{bottom:713.520000px;}
.h2_c00449{height:143.369789px;}
.h1_c00449{height:251.595703px;}
.h0_c00449{height:810.000000px;}
.w1_c00449{width:1439.999979px;}
.w0_c00449{width:1440.000000px;}
.x0_c00449{left:0.000000px;}
.x2_c00449{left:42.083979px;}
.x1_c00449{left:438.989979px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ws0_c00449{word-spacing:0.000000pt;}
._3_c00449{margin-left:-9.630080pt;}
._4_c00449{margin-left:-5.167360pt;}
._2_c00449{margin-left:-4.227840pt;}
._1_c00449{margin-left:-2.818560pt;}
._0_c00449{margin-left:-1.409280pt;}
.fs1_c00449{font-size:128.128000pt;}
.fs0_c00449{font-size:234.880000pt;}
.y0_c00449{bottom:0.000000pt;}
.y2_c00449{bottom:530.533333pt;}
.y1_c00449{bottom:634.240000pt;}
.h2_c00449{height:127.439813pt;}
.h1_c00449{height:223.640625pt;}
.h0_c00449{height:720.000000pt;}
.w1_c00449{width:1279.999981pt;}
.w0_c00449{width:1280.000000pt;}
.x0_c00449{left:0.000000pt;}
.x2_c00449{left:37.407981pt;}
.x1_c00449{left:390.213314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a9cde17bed7d7080c2fd4ec.woff')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.130371;font-style:normal;font-weight:normal;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_8881ca2666cc2c50460b6d09.woff')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.172852;font-style: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;}
.ls0_c00450{letter-spacing:0.000000px;}
.sc__c00450{text-shadow:none;}
.sc1_c00450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00450{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00450{-webkit-text-stroke:0px transparent;}
.sc1_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00450{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00450{word-spacing:0.000000px;}
._2_c00450{margin-left:-7.927200px;}
._4_c00450{margin-left:-5.813280px;}
._1_c00450{margin-left:-4.492080px;}
._3_c00450{margin-left:-3.435120px;}
._0_c00450{margin-left:-1.321200px;}
.fc1_c00450{color:rgb(0,0,0);}
.fc0_c00450{color:rgb(0,32,96);}
.fs1_c00450{font-size:144.000000px;}
.fs0_c00450{font-size:264.240000px;}
.y0_c00450{bottom:0.000000px;}
.y2_c00450{bottom:594.870000px;}
.y1_c00450{bottom:713.520000px;}
.h2_c00450{height:143.226562px;}
.h1_c00450{height:251.595703px;}
.h0_c00450{height:810.000000px;}
.w1_c00450{width:1439.999979px;}
.w0_c00450{width:1440.000000px;}
.x0_c00450{left:0.000000px;}
.x2_c00450{left:96.083979px;}
.x1_c00450{left:339.224979px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ws0_c00450{word-spacing:0.000000pt;}
._2_c00450{margin-left:-7.046400pt;}
._4_c00450{margin-left:-5.167360pt;}
._1_c00450{margin-left:-3.992960pt;}
._3_c00450{margin-left:-3.053440pt;}
._0_c00450{margin-left:-1.174400pt;}
.fs1_c00450{font-size:128.000000pt;}
.fs0_c00450{font-size:234.880000pt;}
.y0_c00450{bottom:0.000000pt;}
.y2_c00450{bottom:528.773333pt;}
.y1_c00450{bottom:634.240000pt;}
.h2_c00450{height:127.312500pt;}
.h1_c00450{height:223.640625pt;}
.h0_c00450{height:720.000000pt;}
.w1_c00450{width:1279.999981pt;}
.w0_c00450{width:1280.000000pt;}
.x0_c00450{left:0.000000pt;}
.x2_c00450{left:85.407981pt;}
.x1_c00450{left:301.533314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d10dd9500123f6e11e692c9d.woff')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00451;src:url('chunks/assets/font_950854514c8cd9ce6d307b01.woff')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.172852;font-style: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;}
.ls0_c00451{letter-spacing:0.000000px;}
.sc__c00451{text-shadow:none;}
.sc1_c00451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00451{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00451{-webkit-text-stroke:0px transparent;}
.sc1_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00451{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00451{word-spacing:0.000000px;}
._4_c00451{margin-left:-5.170080px;}
._0_c00451{margin-left:-3.436992px;}
._2_c00451{margin-left:-2.379456px;}
._1_c00451{margin-left:-1.321920px;}
._3_c00451{width:1.151904px;}
.fc1_c00451{color:rgb(0,0,0);}
.fc0_c00451{color:rgb(0,32,96);}
.fs1_c00451{font-size:144.000000px;}
.fs0_c00451{font-size:264.384000px;}
.y0_c00451{bottom:0.000000px;}
.y2_c00451{bottom:587.130000px;}
.y1_c00451{bottom:712.155000px;}
.h2_c00451{height:143.226562px;}
.h1_c00451{height:251.732813px;}
.h0_c00451{height:810.000000px;}
.w1_c00451{width:1439.999979px;}
.w0_c00451{width:1440.000000px;}
.x0_c00451{left:0.000000px;}
.x2_c00451{left:47.771979px;}
.x1_c00451{left:470.309979px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ws0_c00451{word-spacing:0.000000pt;}
._4_c00451{margin-left:-4.595627pt;}
._0_c00451{margin-left:-3.055104pt;}
._2_c00451{margin-left:-2.115072pt;}
._1_c00451{margin-left:-1.175040pt;}
._3_c00451{width:1.023915pt;}
.fs1_c00451{font-size:128.000000pt;}
.fs0_c00451{font-size:235.008000pt;}
.y0_c00451{bottom:0.000000pt;}
.y2_c00451{bottom:521.893333pt;}
.y1_c00451{bottom:633.026667pt;}
.h2_c00451{height:127.312500pt;}
.h1_c00451{height:223.762500pt;}
.h0_c00451{height:720.000000pt;}
.w1_c00451{width:1279.999981pt;}
.w0_c00451{width:1280.000000pt;}
.x0_c00451{left:0.000000pt;}
.x2_c00451{left:42.463981pt;}
.x1_c00451{left:418.053314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5552be69ef158e845b1863f.woff')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.130371;font-style:normal;font-weight:normal;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_54c156f938e457acf2156f7f.woff')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.172852;font-style: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;}
.sc__c00452{text-shadow:none;}
.sc1_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00452{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc1_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00452{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00452{word-spacing:0.000000px;}
._4_c00452{margin-left:-20.082240px;}
._5_c00452{margin-left:-9.740160px;}
._1_c00452{margin-left:-5.020560px;}
._2_c00452{margin-left:-3.699360px;}
._0_c00452{margin-left:-2.642400px;}
._3_c00452{margin-left:-1.585440px;}
._6_c00452{width:1.690560px;}
.fc1_c00452{color:rgb(0,0,0);}
.fc0_c00452{color:rgb(0,32,96);}
.fs2_c00452{font-size:102.384000px;}
.fs1_c00452{font-size:144.000000px;}
.fs0_c00452{font-size:264.240000px;}
.y0_c00452{bottom:0.000000px;}
.y4_c00452{bottom:43.056000px;}
.y3_c00452{bottom:43.704000px;}
.y2_c00452{bottom:593.460000px;}
.y1_c00452{bottom:713.520000px;}
.h3_c00452{height:101.834086px;}
.h2_c00452{height:143.226562px;}
.h1_c00452{height:251.595703px;}
.h0_c00452{height:810.000000px;}
.w1_c00452{width:1439.999979px;}
.w0_c00452{width:1440.000000px;}
.x0_c00452{left:0.000000px;}
.x4_c00452{left:60.983979px;}
.x2_c00452{left:87.551979px;}
.x1_c00452{left:452.309979px;}
.x3_c00452{left:855.149979px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls0_c00452{letter-spacing:0.000000pt;}
.ws0_c00452{word-spacing:0.000000pt;}
._4_c00452{margin-left:-17.850880pt;}
._5_c00452{margin-left:-8.657920pt;}
._1_c00452{margin-left:-4.462720pt;}
._2_c00452{margin-left:-3.288320pt;}
._0_c00452{margin-left:-2.348800pt;}
._3_c00452{margin-left:-1.409280pt;}
._6_c00452{width:1.502720pt;}
.fs2_c00452{font-size:91.008000pt;}
.fs1_c00452{font-size:128.000000pt;}
.fs0_c00452{font-size:234.880000pt;}
.y0_c00452{bottom:0.000000pt;}
.y4_c00452{bottom:38.272000pt;}
.y3_c00452{bottom:38.848000pt;}
.y2_c00452{bottom:527.520000pt;}
.y1_c00452{bottom:634.240000pt;}
.h3_c00452{height:90.519188pt;}
.h2_c00452{height:127.312500pt;}
.h1_c00452{height:223.640625pt;}
.h0_c00452{height:720.000000pt;}
.w1_c00452{width:1279.999981pt;}
.w0_c00452{width:1280.000000pt;}
.x0_c00452{left:0.000000pt;}
.x4_c00452{left:54.207981pt;}
.x2_c00452{left:77.823981pt;}
.x1_c00452{left:402.053314pt;}
.x3_c00452{left:760.133314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ec9cbeaaf4648bd6f1211aa.woff')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00453;src:url('chunks/assets/font_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_1f4322baee1c76b5612aacb9.woff')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00453;src:url('chunks/assets/font_216edbfc2ce45bf89f1b8020.woff')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00453;src:url('chunks/assets/font_7b8f651656eb9463441a3ebd.woff')format("woff");}.ff5_c00453{font-family:ff5_c00453;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00453;src:url('chunks/assets/font_97c3ae3d685806e3ab572b6c.woff')format("woff");}.ff6_c00453{font-family:ff6_c00453;line-height:1.130371;font-style: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;}
.ls3_c00453{letter-spacing:-0.171600px;}
.ls2_c00453{letter-spacing:0.000000px;}
.ls0_c00453{letter-spacing:0.004320px;}
.ls1_c00453{letter-spacing:57.744000px;}
.sc__c00453{text-shadow:none;}
.sc1_c00453{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1_c00453{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00453{word-spacing:-23.110560px;}
.ws0_c00453{word-spacing:-23.106240px;}
.ws1_c00453{word-spacing:-22.934640px;}
.ws3_c00453{word-spacing:0.000000px;}
._6_c00453{margin-left:-22.649520px;}
._7_c00453{margin-left:-5.717040px;}
._5_c00453{margin-left:-4.492080px;}
._4_c00453{margin-left:-3.370560px;}
._2_c00453{margin-left:-2.274720px;}
._0_c00453{margin-left:-1.186560px;}
._1_c00453{width:1.124640px;}
._3_c00453{width:22.032960px;}
.fc2_c00453{color:rgb(0,32,96);}
.fc1_c00453{color:rgb(192,0,0);}
.fc0_c00453{color:rgb(0,0,0);}
.fs0_c00453{font-size:102.240000px;}
.fs1_c00453{font-size:144.000000px;}
.fs2_c00453{font-size:144.144000px;}
.fs3_c00453{font-size:264.240000px;}
.y0_c00453{bottom:0.000000px;}
.y2_c00453{bottom:48.024000px;}
.y1_c00453{bottom:78.624000px;}
.y6_c00453{bottom:426.990000px;}
.y5_c00453{bottom:465.870000px;}
.y4_c00453{bottom:504.750000px;}
.y3_c00453{bottom:543.630000px;}
.y7_c00453{bottom:713.520000px;}
.h1_c00453{height:82.271250px;}
.h3_c00453{height:143.226562px;}
.h4_c00453{height:143.369789px;}
.h2_c00453{height:147.445312px;}
.h5_c00453{height:251.595703px;}
.h0_c00453{height:810.000000px;}
.w1_c00453{width:1439.999979px;}
.w0_c00453{width:1440.000000px;}
.x0_c00453{left:0.000000px;}
.x2_c00453{left:109.799979px;}
.x1_c00453{left:134.063979px;}
.x3_c00453{left:136.835979px;}
.x4_c00453{left:379.229979px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls3_c00453{letter-spacing:-0.152533pt;}
.ls2_c00453{letter-spacing:0.000000pt;}
.ls0_c00453{letter-spacing:0.003840pt;}
.ls1_c00453{letter-spacing:51.328000pt;}
.ws2_c00453{word-spacing:-20.542720pt;}
.ws0_c00453{word-spacing:-20.538880pt;}
.ws1_c00453{word-spacing:-20.386347pt;}
.ws3_c00453{word-spacing:0.000000pt;}
._6_c00453{margin-left:-20.132907pt;}
._7_c00453{margin-left:-5.081813pt;}
._5_c00453{margin-left:-3.992960pt;}
._4_c00453{margin-left:-2.996053pt;}
._2_c00453{margin-left:-2.021973pt;}
._0_c00453{margin-left:-1.054720pt;}
._1_c00453{width:0.999680pt;}
._3_c00453{width:19.584853pt;}
.fs0_c00453{font-size:90.880000pt;}
.fs1_c00453{font-size:128.000000pt;}
.fs2_c00453{font-size:128.128000pt;}
.fs3_c00453{font-size:234.880000pt;}
.y0_c00453{bottom:0.000000pt;}
.y2_c00453{bottom:42.688000pt;}
.y1_c00453{bottom:69.888000pt;}
.y6_c00453{bottom:379.546667pt;}
.y5_c00453{bottom:414.106667pt;}
.y4_c00453{bottom:448.666667pt;}
.y3_c00453{bottom:483.226667pt;}
.y7_c00453{bottom:634.240000pt;}
.h1_c00453{height:73.130000pt;}
.h3_c00453{height:127.312500pt;}
.h4_c00453{height:127.439813pt;}
.h2_c00453{height:131.062500pt;}
.h5_c00453{height:223.640625pt;}
.h0_c00453{height:720.000000pt;}
.w1_c00453{width:1279.999981pt;}
.w0_c00453{width:1280.000000pt;}
.x0_c00453{left:0.000000pt;}
.x2_c00453{left:97.599981pt;}
.x1_c00453{left:119.167981pt;}
.x3_c00453{left:121.631981pt;}
.x4_c00453{left:337.093314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5f511e4947ba5a84473879f.woff')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.130371;font-style:normal;font-weight:normal;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_ef009b041ba3b8dc48e31cff.woff')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_7c795127287b530dcfe209f7.woff')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.172852;font-style: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;}
.ls0_c00454{letter-spacing:0.000000px;}
.sc__c00454{text-shadow:none;}
.sc1_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00454{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc1_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00454{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00454{word-spacing:0.000000px;}
._3_c00454{margin-left:-22.724640px;}
._0_c00454{margin-left:-4.492080px;}
._2_c00454{margin-left:-3.170880px;}
._1_c00454{margin-left:-2.113920px;}
._4_c00454{width:1.337760px;}
.fc1_c00454{color:rgb(0,0,0);}
.fc0_c00454{color:rgb(0,32,96);}
.fs1_c00454{font-size:102.240000px;}
.fs0_c00454{font-size:264.240000px;}
.y0_c00454{bottom:0.000000px;}
.y2_c00454{bottom:32.832000px;}
.y1_c00454{bottom:713.520000px;}
.h2_c00454{height:101.690859px;}
.h1_c00454{height:251.595703px;}
.h0_c00454{height:810.000000px;}
.w1_c00454{width:1439.999979px;}
.w0_c00454{width:1440.000000px;}
.x0_c00454{left:0.000000px;}
.x1_c00454{left:379.229979px;}
.x2_c00454{left:542.909979px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ws0_c00454{word-spacing:0.000000pt;}
._3_c00454{margin-left:-20.199680pt;}
._0_c00454{margin-left:-3.992960pt;}
._2_c00454{margin-left:-2.818560pt;}
._1_c00454{margin-left:-1.879040pt;}
._4_c00454{width:1.189120pt;}
.fs1_c00454{font-size:90.880000pt;}
.fs0_c00454{font-size:234.880000pt;}
.y0_c00454{bottom:0.000000pt;}
.y2_c00454{bottom:29.184000pt;}
.y1_c00454{bottom:634.240000pt;}
.h2_c00454{height:90.391875pt;}
.h1_c00454{height:223.640625pt;}
.h0_c00454{height:720.000000pt;}
.w1_c00454{width:1279.999981pt;}
.w0_c00454{width:1280.000000pt;}
.x0_c00454{left:0.000000pt;}
.x1_c00454{left:337.093314pt;}
.x2_c00454{left:482.586648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83285c023eb11cce8d10c550.woff')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.130371;font-style:normal;font-weight:normal;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_ca0352c73fe0fddcaf8bcd75.woff')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.202148;font-style:normal;font-weight:normal;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_feda7650d36e51545a088baf.woff')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00455;src:url('chunks/assets/font_0200c246f1a2f17c48c8f40c.woff')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00455;src:url('chunks/assets/font_f6b1df226ca86cd2d8d1ff2c.woff')format("woff");}.ff5_c00455{font-family:ff5_c00455;line-height:1.172852;font-style: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);}
.v1_c00455{vertical-align:-3.456000px;}
.v0_c00455{vertical-align:0.000000px;}
.ls0_c00455{letter-spacing:0.000000px;}
.sc__c00455{text-shadow:none;}
.sc1_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00455{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc1_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00455{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00455{word-spacing:-23.106240px;}
.ws1_c00455{word-spacing:0.000000px;}
._3_c00455{margin-left:-22.988880px;}
._1_c00455{margin-left:-4.756320px;}
._2_c00455{margin-left:-3.170880px;}
._0_c00455{margin-left:-1.585440px;}
._4_c00455{width:1.074240px;}
._5_c00455{width:1550.142720px;}
.fc2_c00455{color:rgb(0,0,0);}
.fc1_c00455{color:rgb(255,0,0);}
.fc0_c00455{color:rgb(0,32,96);}
.fs2_c00455{font-size:102.240000px;}
.fs1_c00455{font-size:120.240000px;}
.fs0_c00455{font-size:264.240000px;}
.y0_c00455{bottom:0.000000px;}
.y3_c00455{bottom:31.500000px;}
.y2_c00455{bottom:595.110000px;}
.y1_c00455{bottom:713.520000px;}
.h3_c00455{height:101.690859px;}
.h2_c00455{height:123.116836px;}
.h1_c00455{height:251.595703px;}
.h0_c00455{height:810.000000px;}
.w1_c00455{width:1439.999979px;}
.w0_c00455{width:1440.000000px;}
.x0_c00455{left:0.000000px;}
.x2_c00455{left:63.539979px;}
.x3_c00455{left:121.679979px;}
.x1_c00455{left:330.224979px;}
@media print{
.v1_c00455{vertical-align:-3.072000pt;}
.v0_c00455{vertical-align:0.000000pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ws0_c00455{word-spacing:-20.538880pt;}
.ws1_c00455{word-spacing:0.000000pt;}
._3_c00455{margin-left:-20.434560pt;}
._1_c00455{margin-left:-4.227840pt;}
._2_c00455{margin-left:-2.818560pt;}
._0_c00455{margin-left:-1.409280pt;}
._4_c00455{width:0.954880pt;}
._5_c00455{width:1377.904640pt;}
.fs2_c00455{font-size:90.880000pt;}
.fs1_c00455{font-size:106.880000pt;}
.fs0_c00455{font-size:234.880000pt;}
.y0_c00455{bottom:0.000000pt;}
.y3_c00455{bottom:28.000000pt;}
.y2_c00455{bottom:528.986667pt;}
.y1_c00455{bottom:634.240000pt;}
.h3_c00455{height:90.391875pt;}
.h2_c00455{height:109.437187pt;}
.h1_c00455{height:223.640625pt;}
.h0_c00455{height:720.000000pt;}
.w1_c00455{width:1279.999981pt;}
.w0_c00455{width:1280.000000pt;}
.x0_c00455{left:0.000000pt;}
.x2_c00455{left:56.479981pt;}
.x3_c00455{left:108.159981pt;}
.x1_c00455{left:293.533314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08dc109d157281dd2890fc54.woff')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.202148;font-style:normal;font-weight:normal;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_c22b5c1184c209520a001e27.woff')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00456;src:url('chunks/assets/font_24b7cb037911144114d52385.woff')format("woff");}.ff4_c00456{font-family:ff4_c00456;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00456;src:url('chunks/assets/font_0d81d332c5fcd6eeb749b6ce.woff')format("woff");}.ff5_c00456{font-family:ff5_c00456;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00456;src:url('chunks/assets/font_cabf3a4c0973253e63215660.woff')format("woff");}.ff6_c00456{font-family:ff6_c00456;line-height:0.983398;font-style: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;}
.ls3_c00456{letter-spacing:-0.171600px;}
.ls2_c00456{letter-spacing:0.000000px;}
.ls1_c00456{letter-spacing:0.004320px;}
.ls0_c00456{letter-spacing:57.744000px;}
.sc__c00456{text-shadow:none;}
.sc1_c00456{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1_c00456{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00456{word-spacing:-23.110560px;}
.ws0_c00456{word-spacing:-23.106240px;}
.ws1_c00456{word-spacing:-22.934640px;}
.ws3_c00456{word-spacing:0.000000px;}
._4_c00456{margin-left:-22.827600px;}
._2_c00456{margin-left:-4.032000px;}
._3_c00456{margin-left:-2.803680px;}
._0_c00456{margin-left:-1.620000px;}
._1_c00456{width:1.080000px;}
._5_c00456{width:21.856320px;}
.fc1_c00456{color:rgb(0,32,96);}
.fc0_c00456{color:rgb(0,0,0);}
.fs3_c00456{font-size:102.240000px;}
.fs0_c00456{font-size:108.000000px;}
.fs1_c00456{font-size:144.000000px;}
.fs2_c00456{font-size:264.240000px;}
.y0_c00456{bottom:0.000000px;}
.y7_c00456{bottom:48.024000px;}
.y6_c00456{bottom:78.624000px;}
.y1_c00456{bottom:437.220000px;}
.y3_c00456{bottom:476.280000px;}
.y2_c00456{bottom:508.680000px;}
.y4_c00456{bottom:571.320000px;}
.y5_c00456{bottom:713.520000px;}
.h5_c00456{height:82.271250px;}
.h2_c00456{height:107.419922px;}
.h1_c00456{height:110.583984px;}
.h3_c00456{height:147.445312px;}
.h4_c00456{height:251.595703px;}
.h0_c00456{height:810.000000px;}
.w1_c00456{width:1439.999979px;}
.w0_c00456{width:1440.000000px;}
.x0_c00456{left:0.000000px;}
.x4_c00456{left:109.799979px;}
.x6_c00456{left:134.063979px;}
.x5_c00456{left:330.224979px;}
.x3_c00456{left:1131.299979px;}
.x2_c00456{left:1159.229979px;}
.x1_c00456{left:1185.629979px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls3_c00456{letter-spacing:-0.152533pt;}
.ls2_c00456{letter-spacing:0.000000pt;}
.ls1_c00456{letter-spacing:0.003840pt;}
.ls0_c00456{letter-spacing:51.328000pt;}
.ws2_c00456{word-spacing:-20.542720pt;}
.ws0_c00456{word-spacing:-20.538880pt;}
.ws1_c00456{word-spacing:-20.386347pt;}
.ws3_c00456{word-spacing:0.000000pt;}
._4_c00456{margin-left:-20.291200pt;}
._2_c00456{margin-left:-3.584000pt;}
._3_c00456{margin-left:-2.492160pt;}
._0_c00456{margin-left:-1.440000pt;}
._1_c00456{width:0.960000pt;}
._5_c00456{width:19.427840pt;}
.fs3_c00456{font-size:90.880000pt;}
.fs0_c00456{font-size:96.000000pt;}
.fs1_c00456{font-size:128.000000pt;}
.fs2_c00456{font-size:234.880000pt;}
.y0_c00456{bottom:0.000000pt;}
.y7_c00456{bottom:42.688000pt;}
.y6_c00456{bottom:69.888000pt;}
.y1_c00456{bottom:388.640000pt;}
.y3_c00456{bottom:423.360000pt;}
.y2_c00456{bottom:452.160000pt;}
.y4_c00456{bottom:507.840000pt;}
.y5_c00456{bottom:634.240000pt;}
.h5_c00456{height:73.130000pt;}
.h2_c00456{height:95.484375pt;}
.h1_c00456{height:98.296875pt;}
.h3_c00456{height:131.062500pt;}
.h4_c00456{height:223.640625pt;}
.h0_c00456{height:720.000000pt;}
.w1_c00456{width:1279.999981pt;}
.w0_c00456{width:1280.000000pt;}
.x0_c00456{left:0.000000pt;}
.x4_c00456{left:97.599981pt;}
.x6_c00456{left:119.167981pt;}
.x5_c00456{left:293.533314pt;}
.x3_c00456{left:1005.599981pt;}
.x2_c00456{left:1030.426648pt;}
.x1_c00456{left:1053.893314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4127c57168c73361554d73b.woff')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_ece0e30c9bda1c4b77ac0344.woff')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_88207f39fe4a282f25225052.woff')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.130371;font-style: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;}
.ls1_c00457{letter-spacing:0.000000px;}
.ls0_c00457{letter-spacing:0.072000px;}
.sc__c00457{text-shadow:none;}
.sc1_c00457{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1_c00457{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00457{word-spacing:-24.408000px;}
.ws1_c00457{word-spacing:0.000000px;}
._3_c00457{margin-left:-7.584000px;}
._4_c00457{margin-left:-3.893040px;}
._0_c00457{margin-left:-2.700000px;}
._2_c00457{margin-left:-1.620000px;}
._1_c00457{width:1.620000px;}
.fc1_c00457{color:rgb(0,32,96);}
.fc0_c00457{color:rgb(0,0,0);}
.fs0_c00457{font-size:108.000000px;}
.fs1_c00457{font-size:264.240000px;}
.y0_c00457{bottom:0.000000px;}
.y2_c00457{bottom:44.964000px;}
.y1_c00457{bottom:77.364000px;}
.y3_c00457{bottom:713.520000px;}
.h1_c00457{height:107.419922px;}
.h2_c00457{height:251.595703px;}
.h0_c00457{height:810.000000px;}
.w1_c00457{width:1439.999979px;}
.w0_c00457{width:1440.000000px;}
.x0_c00457{left:0.000000px;}
.x3_c00457{left:198.644979px;}
.x1_c00457{left:407.849979px;}
.x2_c00457{left:540.869979px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls1_c00457{letter-spacing:0.000000pt;}
.ls0_c00457{letter-spacing:0.064000pt;}
.ws0_c00457{word-spacing:-21.696000pt;}
.ws1_c00457{word-spacing:0.000000pt;}
._3_c00457{margin-left:-6.741333pt;}
._4_c00457{margin-left:-3.460480pt;}
._0_c00457{margin-left:-2.400000pt;}
._2_c00457{margin-left:-1.440000pt;}
._1_c00457{width:1.440000pt;}
.fs0_c00457{font-size:96.000000pt;}
.fs1_c00457{font-size:234.880000pt;}
.y0_c00457{bottom:0.000000pt;}
.y2_c00457{bottom:39.968000pt;}
.y1_c00457{bottom:68.768000pt;}
.y3_c00457{bottom:634.240000pt;}
.h1_c00457{height:95.484375pt;}
.h2_c00457{height:223.640625pt;}
.h0_c00457{height:720.000000pt;}
.w1_c00457{width:1279.999981pt;}
.w0_c00457{width:1280.000000pt;}
.x0_c00457{left:0.000000pt;}
.x3_c00457{left:176.573314pt;}
.x1_c00457{left:362.533314pt;}
.x2_c00457{left:480.773314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ddacbad496a0f42bf6f02200.woff')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.130371;font-style:normal;font-weight:normal;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_b403083c1c7b7ee769cb78f5.woff')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00458{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.ls0_c00458{letter-spacing:0.000000px;}
.sc__c00458{text-shadow:none;}
.sc1_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00458{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc1_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00458{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00458{word-spacing:0.000000px;}
._2_c00458{margin-left:-20.610720px;}
._4_c00458{margin-left:-5.020560px;}
._0_c00458{margin-left:-3.699360px;}
._1_c00458{margin-left:-2.378160px;}
._3_c00458{margin-left:-1.056960px;}
._5_c00458{width:1.024560px;}
.fc1_c00458{color:rgb(0,0,0);}
.fc0_c00458{color:rgb(0,32,96);}
.fs1_c00458{font-size:102.240000px;}
.fs0_c00458{font-size:264.240000px;}
.y0_c00458{bottom:0.000000px;}
.y2_c00458{bottom:68.004000px;}
.y1_c00458{bottom:713.520000px;}
.h2_c00458{height:101.690859px;}
.h1_c00458{height:251.595703px;}
.h0_c00458{height:810.000000px;}
.w1_c00458{width:1439.999979px;}
.w0_c00458{width:1440.000000px;}
.x0_c00458{left:0.000000px;}
.x1_c00458{left:229.784979px;}
.x2_c00458{left:326.369979px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls0_c00458{letter-spacing:0.000000pt;}
.ws0_c00458{word-spacing:0.000000pt;}
._2_c00458{margin-left:-18.320640pt;}
._4_c00458{margin-left:-4.462720pt;}
._0_c00458{margin-left:-3.288320pt;}
._1_c00458{margin-left:-2.113920pt;}
._3_c00458{margin-left:-0.939520pt;}
._5_c00458{width:0.910720pt;}
.fs1_c00458{font-size:90.880000pt;}
.fs0_c00458{font-size:234.880000pt;}
.y0_c00458{bottom:0.000000pt;}
.y2_c00458{bottom:60.448000pt;}
.y1_c00458{bottom:634.240000pt;}
.h2_c00458{height:90.391875pt;}
.h1_c00458{height:223.640625pt;}
.h0_c00458{height:720.000000pt;}
.w1_c00458{width:1279.999981pt;}
.w0_c00458{width:1280.000000pt;}
.x0_c00458{left:0.000000pt;}
.x1_c00458{left:204.253314pt;}
.x2_c00458{left:290.106648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20e7838c79211d27d79cb0d5.woff')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.130371;font-style:normal;font-weight:normal;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_3e4f6dd3ca258b6ce5bcf3c3.woff')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_7b87fe94cd90e8bb66b54d22.woff')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00459;src:url('chunks/assets/font_c8816753ee265a7ca8c2638f.woff')format("woff");}.ff4_c00459{font-family:ff4_c00459;line-height:1.172852;font-style: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;}
.ls0_c00459{letter-spacing:0.000000px;}
.ls2_c00459{letter-spacing:0.108000px;}
.ls1_c00459{letter-spacing:0.288000px;}
.sc__c00459{text-shadow:none;}
.sc1_c00459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00459{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00459{-webkit-text-stroke:0px transparent;}
.sc1_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00459{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00459{word-spacing:-27.206784px;}
.ws1_c00459{word-spacing:0.000000px;}
._1_c00459{margin-left:-23.517360px;}
._7_c00459{margin-left:-11.216880px;}
._4_c00459{margin-left:-10.041120px;}
._6_c00459{margin-left:-8.908416px;}
._3_c00459{margin-left:-4.492080px;}
._2_c00459{margin-left:-2.906640px;}
._0_c00459{margin-left:-1.585440px;}
._5_c00459{width:1.200864px;}
._8_c00459{width:2.247456px;}
.fc2_c00459{color:rgb(0,0,0);}
.fc1_c00459{color:rgb(255,0,0);}
.fc0_c00459{color:rgb(0,32,96);}
.fs3_c00459{font-size:108.000000px;}
.fs2_c00459{font-size:120.240000px;}
.fs1_c00459{font-size:120.384000px;}
.fs0_c00459{font-size:264.240000px;}
.y0_c00459{bottom:0.000000px;}
.y4_c00459{bottom:280.335000px;}
.y3_c00459{bottom:571.890000px;}
.y2_c00459{bottom:607.935000px;}
.y1_c00459{bottom:713.520000px;}
.h4_c00459{height:107.419922px;}
.h3_c00459{height:119.594180px;}
.h2_c00459{height:123.264281px;}
.h1_c00459{height:251.595703px;}
.h0_c00459{height:810.000000px;}
.w1_c00459{width:1439.999979px;}
.w0_c00459{width:1440.000000px;}
.x0_c00459{left:0.000000px;}
.x2_c00459{left:82.799979px;}
.x3_c00459{left:380.879979px;}
.x1_c00459{left:465.449979px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ls2_c00459{letter-spacing:0.096000pt;}
.ls1_c00459{letter-spacing:0.256000pt;}
.ws0_c00459{word-spacing:-24.183808pt;}
.ws1_c00459{word-spacing:0.000000pt;}
._1_c00459{margin-left:-20.904320pt;}
._7_c00459{margin-left:-9.970560pt;}
._4_c00459{margin-left:-8.925440pt;}
._6_c00459{margin-left:-7.918592pt;}
._3_c00459{margin-left:-3.992960pt;}
._2_c00459{margin-left:-2.583680pt;}
._0_c00459{margin-left:-1.409280pt;}
._5_c00459{width:1.067435pt;}
._8_c00459{width:1.997739pt;}
.fs3_c00459{font-size:96.000000pt;}
.fs2_c00459{font-size:106.880000pt;}
.fs1_c00459{font-size:107.008000pt;}
.fs0_c00459{font-size:234.880000pt;}
.y0_c00459{bottom:0.000000pt;}
.y4_c00459{bottom:249.186667pt;}
.y3_c00459{bottom:508.346667pt;}
.y2_c00459{bottom:540.386667pt;}
.y1_c00459{bottom:634.240000pt;}
.h4_c00459{height:95.484375pt;}
.h3_c00459{height:106.305937pt;}
.h2_c00459{height:109.568250pt;}
.h1_c00459{height:223.640625pt;}
.h0_c00459{height:720.000000pt;}
.w1_c00459{width:1279.999981pt;}
.w0_c00459{width:1280.000000pt;}
.x0_c00459{left:0.000000pt;}
.x2_c00459{left:73.599981pt;}
.x3_c00459{left:338.559981pt;}
.x1_c00459{left:413.733314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2294c3efc48cd9287880e28e.woff')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00460;src:url('chunks/assets/font_a25c45155e5b5f85513a7f5f.woff')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_7b87fe94cd90e8bb66b54d22.woff')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00460;src:url('chunks/assets/font_dc4c28cb57bc4fa85dfd9c93.woff')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:1.172852;font-style: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;}
.sc1_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00460{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc1_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00460{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00460{word-spacing:-27.206784px;}
.ws1_c00460{word-spacing:0.000000px;}
._1_c00460{margin-left:-23.517360px;}
._7_c00460{margin-left:-11.216880px;}
._4_c00460{margin-left:-10.041120px;}
._6_c00460{margin-left:-8.908416px;}
._3_c00460{margin-left:-4.492080px;}
._2_c00460{margin-left:-2.906640px;}
._0_c00460{margin-left:-1.585440px;}
._5_c00460{width:1.200864px;}
.fc2_c00460{color:rgb(0,0,0);}
.fc1_c00460{color:rgb(255,0,0);}
.fc0_c00460{color:rgb(0,32,96);}
.fs2_c00460{font-size:120.240000px;}
.fs1_c00460{font-size:120.384000px;}
.fs0_c00460{font-size:264.240000px;}
.y0_c00460{bottom:0.000000px;}
.y3_c00460{bottom:571.890000px;}
.y2_c00460{bottom:607.935000px;}
.y1_c00460{bottom:713.520000px;}
.h3_c00460{height:119.594180px;}
.h2_c00460{height:123.264281px;}
.h1_c00460{height:251.595703px;}
.h0_c00460{height:810.000000px;}
.w1_c00460{width:1439.999979px;}
.w0_c00460{width:1440.000000px;}
.x0_c00460{left:0.000000px;}
.x2_c00460{left:82.799979px;}
.x1_c00460{left:465.449979px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ws0_c00460{word-spacing:-24.183808pt;}
.ws1_c00460{word-spacing:0.000000pt;}
._1_c00460{margin-left:-20.904320pt;}
._7_c00460{margin-left:-9.970560pt;}
._4_c00460{margin-left:-8.925440pt;}
._6_c00460{margin-left:-7.918592pt;}
._3_c00460{margin-left:-3.992960pt;}
._2_c00460{margin-left:-2.583680pt;}
._0_c00460{margin-left:-1.409280pt;}
._5_c00460{width:1.067435pt;}
.fs2_c00460{font-size:106.880000pt;}
.fs1_c00460{font-size:107.008000pt;}
.fs0_c00460{font-size:234.880000pt;}
.y0_c00460{bottom:0.000000pt;}
.y3_c00460{bottom:508.346667pt;}
.y2_c00460{bottom:540.386667pt;}
.y1_c00460{bottom:634.240000pt;}
.h3_c00460{height:106.305937pt;}
.h2_c00460{height:109.568250pt;}
.h1_c00460{height:223.640625pt;}
.h0_c00460{height:720.000000pt;}
.w1_c00460{width:1279.999981pt;}
.w0_c00460{width:1280.000000pt;}
.x0_c00460{left:0.000000pt;}
.x2_c00460{left:73.599981pt;}
.x1_c00460{left:413.733314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00461;src:url('chunks/assets/font_d4fb7aff1f6424dd6d0f0d68.woff')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00461;src:url('chunks/assets/font_aff2e480e280bfd7dce4c343.woff')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00461;src:url('chunks/assets/font_915602ebf75f21965e092cf8.woff')format("woff");}.ff4_c00461{font-family:ff4_c00461;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls4_c00461{letter-spacing:-0.288000px;}
.ls3_c00461{letter-spacing:0.000000px;}
.ls1_c00461{letter-spacing:32.688000px;}
.ls2_c00461{letter-spacing:57.693600px;}
.ls0_c00461{letter-spacing:57.744000px;}
.sc__c00461{text-shadow:none;}
.sc1_c00461{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1_c00461{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00461{word-spacing:0.000000px;}
._8_c00461{margin-left:-22.717296px;}
._6_c00461{margin-left:-8.628000px;}
._4_c00461{margin-left:-6.057072px;}
._3_c00461{margin-left:-5.040000px;}
._0_c00461{margin-left:-3.024000px;}
._2_c00461{margin-left:-2.016000px;}
._1_c00461{margin-left:-1.008000px;}
._5_c00461{width:1.152000px;}
._7_c00461{width:2.880000px;}
.fc3_c00461{color:rgb(0,32,96);}
.fc2_c00461{color:rgb(84,130,53);}
.fc1_c00461{color:rgb(13,13,13);}
.fc0_c00461{color:rgb(0,0,0);}
.fs2_c00461{font-size:108.000000px;}
.fs0_c00461{font-size:144.000000px;}
.fs1_c00461{font-size:144.144000px;}
.fs3_c00461{font-size:264.240000px;}
.y0_c00461{bottom:0.000000px;}
.ya_c00461{bottom:77.364000px;}
.y9_c00461{bottom:187.530000px;}
.y8_c00461{bottom:226.440000px;}
.y7_c00461{bottom:280.260000px;}
.y6_c00461{bottom:319.140000px;}
.y5_c00461{bottom:358.020000px;}
.y4_c00461{bottom:396.900000px;}
.y3_c00461{bottom:450.750000px;}
.y2_c00461{bottom:489.630000px;}
.y1_c00461{bottom:543.630000px;}
.yb_c00461{bottom:713.520000px;}
.h3_c00461{height:107.419922px;}
.h1_c00461{height:143.226562px;}
.h2_c00461{height:143.369789px;}
.h4_c00461{height:251.595703px;}
.h0_c00461{height:810.000000px;}
.w1_c00461{width:1439.999979px;}
.w0_c00461{width:1440.000000px;}
.x0_c00461{left:0.000000px;}
.x1_c00461{left:109.799979px;}
.x2_c00461{left:136.835979px;}
.x4_c00461{left:402.269979px;}
.x3_c00461{left:649.079979px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls4_c00461{letter-spacing:-0.256000pt;}
.ls3_c00461{letter-spacing:0.000000pt;}
.ls1_c00461{letter-spacing:29.056000pt;}
.ls2_c00461{letter-spacing:51.283200pt;}
.ls0_c00461{letter-spacing:51.328000pt;}
.ws0_c00461{word-spacing:0.000000pt;}
._8_c00461{margin-left:-20.193152pt;}
._6_c00461{margin-left:-7.669333pt;}
._4_c00461{margin-left:-5.384064pt;}
._3_c00461{margin-left:-4.480000pt;}
._0_c00461{margin-left:-2.688000pt;}
._2_c00461{margin-left:-1.792000pt;}
._1_c00461{margin-left:-0.896000pt;}
._5_c00461{width:1.024000pt;}
._7_c00461{width:2.560000pt;}
.fs2_c00461{font-size:96.000000pt;}
.fs0_c00461{font-size:128.000000pt;}
.fs1_c00461{font-size:128.128000pt;}
.fs3_c00461{font-size:234.880000pt;}
.y0_c00461{bottom:0.000000pt;}
.ya_c00461{bottom:68.768000pt;}
.y9_c00461{bottom:166.693333pt;}
.y8_c00461{bottom:201.280000pt;}
.y7_c00461{bottom:249.120000pt;}
.y6_c00461{bottom:283.680000pt;}
.y5_c00461{bottom:318.240000pt;}
.y4_c00461{bottom:352.800000pt;}
.y3_c00461{bottom:400.666667pt;}
.y2_c00461{bottom:435.226667pt;}
.y1_c00461{bottom:483.226667pt;}
.yb_c00461{bottom:634.240000pt;}
.h3_c00461{height:95.484375pt;}
.h1_c00461{height:127.312500pt;}
.h2_c00461{height:127.439813pt;}
.h4_c00461{height:223.640625pt;}
.h0_c00461{height:720.000000pt;}
.w1_c00461{width:1279.999981pt;}
.w0_c00461{width:1280.000000pt;}
.x0_c00461{left:0.000000pt;}
.x1_c00461{left:97.599981pt;}
.x2_c00461{left:121.631981pt;}
.x4_c00461{left:357.573314pt;}
.x3_c00461{left:576.959981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00462;src:url('chunks/assets/font_c446ba20306a3b8b192a59e6.woff')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00462;src:url('chunks/assets/font_47998aae8a809958d894599b.woff')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_00854fa7240b15e734d1d687.woff')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:1.130371;font-style: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;}
.ls1_c00462{letter-spacing:0.000000px;}
.ls0_c00462{letter-spacing:57.744000px;}
.sc__c00462{text-shadow:none;}
.sc1_c00462{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1_c00462{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00462{word-spacing:-32.544000px;}
.ws1_c00462{word-spacing:0.000000px;}
._4_c00462{margin-left:-10.041120px;}
._3_c00462{margin-left:-5.961600px;}
._1_c00462{margin-left:-2.880000px;}
._0_c00462{margin-left:-1.728000px;}
._2_c00462{width:1.404000px;}
.fc1_c00462{color:rgb(0,32,96);}
.fc0_c00462{color:rgb(0,0,0);}
.fs1_c00462{font-size:108.000000px;}
.fs0_c00462{font-size:144.000000px;}
.fs2_c00462{font-size:264.240000px;}
.y0_c00462{bottom:0.000000px;}
.y3_c00462{bottom:77.364000px;}
.y2_c00462{bottom:498.855000px;}
.y1_c00462{bottom:552.855000px;}
.y4_c00462{bottom:713.520000px;}
.h2_c00462{height:107.419922px;}
.h1_c00462{height:143.226562px;}
.h3_c00462{height:251.595703px;}
.h0_c00462{height:810.000000px;}
.w1_c00462{width:1439.999979px;}
.w0_c00462{width:1440.000000px;}
.x0_c00462{left:0.000000px;}
.x1_c00462{left:109.799979px;}
.x2_c00462{left:375.269979px;}
.x3_c00462{left:406.769979px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls1_c00462{letter-spacing:0.000000pt;}
.ls0_c00462{letter-spacing:51.328000pt;}
.ws0_c00462{word-spacing:-28.928000pt;}
.ws1_c00462{word-spacing:0.000000pt;}
._4_c00462{margin-left:-8.925440pt;}
._3_c00462{margin-left:-5.299200pt;}
._1_c00462{margin-left:-2.560000pt;}
._0_c00462{margin-left:-1.536000pt;}
._2_c00462{width:1.248000pt;}
.fs1_c00462{font-size:96.000000pt;}
.fs0_c00462{font-size:128.000000pt;}
.fs2_c00462{font-size:234.880000pt;}
.y0_c00462{bottom:0.000000pt;}
.y3_c00462{bottom:68.768000pt;}
.y2_c00462{bottom:443.426667pt;}
.y1_c00462{bottom:491.426667pt;}
.y4_c00462{bottom:634.240000pt;}
.h2_c00462{height:95.484375pt;}
.h1_c00462{height:127.312500pt;}
.h3_c00462{height:223.640625pt;}
.h0_c00462{height:720.000000pt;}
.w1_c00462{width:1279.999981pt;}
.w0_c00462{width:1280.000000pt;}
.x0_c00462{left:0.000000pt;}
.x1_c00462{left:97.599981pt;}
.x2_c00462{left:333.573314pt;}
.x3_c00462{left:361.573314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2fb43b0b8bbf8335608a7a8f.woff')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.172852;font-style:normal;font-weight:normal;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00463;src:url('chunks/assets/font_d01278d1b21929dce4e1ff0e.woff')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00463;src:url('chunks/assets/font_b98f6cb5803fa0e6a4404d0c.woff')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.130371;font-style: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;}
.ls2_c00463{letter-spacing:0.000000px;}
.ls1_c00463{letter-spacing:57.693600px;}
.ls0_c00463{letter-spacing:57.744000px;}
.sc__c00463{text-shadow:none;}
.sc1_c00463{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1_c00463{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00463{word-spacing:0.000000px;}
._4_c00463{margin-left:-10.172160px;}
._2_c00463{margin-left:-6.048000px;}
._3_c00463{margin-left:-3.024000px;}
._1_c00463{margin-left:-1.728000px;}
._0_c00463{width:1.056000px;}
.fc1_c00463{color:rgb(0,32,96);}
.fc0_c00463{color:rgb(0,0,0);}
.fs0_c00463{font-size:108.000000px;}
.fs1_c00463{font-size:144.000000px;}
.fs2_c00463{font-size:144.144000px;}
.fs3_c00463{font-size:264.240000px;}
.y0_c00463{bottom:0.000000px;}
.y1_c00463{bottom:25.596000px;}
.y6_c00463{bottom:327.960000px;}
.y5_c00463{bottom:381.960000px;}
.y4_c00463{bottom:435.810000px;}
.y3_c00463{bottom:489.630000px;}
.y2_c00463{bottom:543.630000px;}
.y7_c00463{bottom:713.520000px;}
.h1_c00463{height:107.419922px;}
.h3_c00463{height:143.226562px;}
.h4_c00463{height:143.369789px;}
.h2_c00463{height:147.445312px;}
.h5_c00463{height:251.595703px;}
.h0_c00463{height:810.000000px;}
.w1_c00463{width:1439.999979px;}
.w0_c00463{width:1440.000000px;}
.x0_c00463{left:0.000000px;}
.x2_c00463{left:109.799979px;}
.x3_c00463{left:430.889979px;}
.x1_c00463{left:788.549979px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls2_c00463{letter-spacing:0.000000pt;}
.ls1_c00463{letter-spacing:51.283200pt;}
.ls0_c00463{letter-spacing:51.328000pt;}
.ws0_c00463{word-spacing:0.000000pt;}
._4_c00463{margin-left:-9.041920pt;}
._2_c00463{margin-left:-5.376000pt;}
._3_c00463{margin-left:-2.688000pt;}
._1_c00463{margin-left:-1.536000pt;}
._0_c00463{width:0.938667pt;}
.fs0_c00463{font-size:96.000000pt;}
.fs1_c00463{font-size:128.000000pt;}
.fs2_c00463{font-size:128.128000pt;}
.fs3_c00463{font-size:234.880000pt;}
.y0_c00463{bottom:0.000000pt;}
.y1_c00463{bottom:22.752000pt;}
.y6_c00463{bottom:291.520000pt;}
.y5_c00463{bottom:339.520000pt;}
.y4_c00463{bottom:387.386667pt;}
.y3_c00463{bottom:435.226667pt;}
.y2_c00463{bottom:483.226667pt;}
.y7_c00463{bottom:634.240000pt;}
.h1_c00463{height:95.484375pt;}
.h3_c00463{height:127.312500pt;}
.h4_c00463{height:127.439813pt;}
.h2_c00463{height:131.062500pt;}
.h5_c00463{height:223.640625pt;}
.h0_c00463{height:720.000000pt;}
.w1_c00463{width:1279.999981pt;}
.w0_c00463{width:1280.000000pt;}
.x0_c00463{left:0.000000pt;}
.x2_c00463{left:97.599981pt;}
.x3_c00463{left:383.013314pt;}
.x1_c00463{left:700.933314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1e3c094604d94d8d06fae87.woff')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00464;src:url('chunks/assets/font_fe984106c547b8da2ef6bc57.woff')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.172852;font-style: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;}
.ls0_c00464{letter-spacing:0.000000px;}
.sc__c00464{text-shadow:none;}
.sc1_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00464{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc1_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00464{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00464{word-spacing:0.000000px;}
._3_c00464{margin-left:-11.098080px;}
._2_c00464{margin-left:-8.455680px;}
._4_c00464{margin-left:-5.813280px;}
._1_c00464{margin-left:-3.699360px;}
._5_c00464{margin-left:-2.590560px;}
._0_c00464{margin-left:-1.585440px;}
._6_c00464{width:1.064160px;}
.fc1_c00464{color:rgb(0,0,0);}
.fc0_c00464{color:rgb(0,32,96);}
.fs1_c00464{font-size:144.000000px;}
.fs0_c00464{font-size:264.240000px;}
.y0_c00464{bottom:0.000000px;}
.y3_c00464{bottom:563.370000px;}
.y2_c00464{bottom:606.570000px;}
.y1_c00464{bottom:713.520000px;}
.h2_c00464{height:143.226562px;}
.h1_c00464{height:251.595703px;}
.h0_c00464{height:810.000000px;}
.w1_c00464{width:1439.999979px;}
.w0_c00464{width:1440.000000px;}
.x0_c00464{left:0.000000px;}
.x2_c00464{left:35.063979px;}
.x1_c00464{left:393.449979px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.ws0_c00464{word-spacing:0.000000pt;}
._3_c00464{margin-left:-9.864960pt;}
._2_c00464{margin-left:-7.516160pt;}
._4_c00464{margin-left:-5.167360pt;}
._1_c00464{margin-left:-3.288320pt;}
._5_c00464{margin-left:-2.302720pt;}
._0_c00464{margin-left:-1.409280pt;}
._6_c00464{width:0.945920pt;}
.fs1_c00464{font-size:128.000000pt;}
.fs0_c00464{font-size:234.880000pt;}
.y0_c00464{bottom:0.000000pt;}
.y3_c00464{bottom:500.773333pt;}
.y2_c00464{bottom:539.173333pt;}
.y1_c00464{bottom:634.240000pt;}
.h2_c00464{height:127.312500pt;}
.h1_c00464{height:223.640625pt;}
.h0_c00464{height:720.000000pt;}
.w1_c00464{width:1279.999981pt;}
.w0_c00464{width:1280.000000pt;}
.x0_c00464{left:0.000000pt;}
.x2_c00464{left:31.167981pt;}
.x1_c00464{left:349.733314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7764f4c32f7d73ed67e9cdb.woff')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.130371;font-style:normal;font-weight:normal;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_0237a44e9d11b8f73766d8a6.woff')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls0_c00465{letter-spacing:0.000000px;}
.sc__c00465{text-shadow:none;}
.sc1_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00465{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc1_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00465{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00465{word-spacing:0.000000px;}
._1_c00465{margin-left:-3.170880px;}
._0_c00465{margin-left:-1.585440px;}
.fc1_c00465{color:rgb(0,0,0);}
.fc0_c00465{color:rgb(0,32,96);}
.fs1_c00465{font-size:120.240000px;}
.fs0_c00465{font-size:264.240000px;}
.y0_c00465{bottom:0.000000px;}
.y5_c00465{bottom:37.188000px;}
.y4_c00465{bottom:73.188000px;}
.y3_c00465{bottom:147.996000px;}
.y2_c00465{bottom:183.990000px;}
.y1_c00465{bottom:713.520000px;}
.h2_c00465{height:119.594180px;}
.h1_c00465{height:251.595703px;}
.h0_c00465{height:810.000000px;}
.w1_c00465{width:1439.999979px;}
.w0_c00465{width:1440.000000px;}
.x0_c00465{left:0.000000px;}
.x1_c00465{left:124.271979px;}
.x2_c00465{left:618.689979px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws0_c00465{word-spacing:0.000000pt;}
._1_c00465{margin-left:-2.818560pt;}
._0_c00465{margin-left:-1.409280pt;}
.fs1_c00465{font-size:106.880000pt;}
.fs0_c00465{font-size:234.880000pt;}
.y0_c00465{bottom:0.000000pt;}
.y5_c00465{bottom:33.056000pt;}
.y4_c00465{bottom:65.056000pt;}
.y3_c00465{bottom:131.552000pt;}
.y2_c00465{bottom:163.546667pt;}
.y1_c00465{bottom:634.240000pt;}
.h2_c00465{height:106.305937pt;}
.h1_c00465{height:223.640625pt;}
.h0_c00465{height:720.000000pt;}
.w1_c00465{width:1279.999981pt;}
.w0_c00465{width:1280.000000pt;}
.x0_c00465{left:0.000000pt;}
.x1_c00465{left:110.463981pt;}
.x2_c00465{left:549.946648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e358ea97ec0c0efd97997fd.woff')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.130371;font-style:normal;font-weight:normal;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_a151b37be2457ec9c841f3f8.woff')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00466;src:url('chunks/assets/font_0ae84084ed2e7ce10fc7b2f1.woff')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00466;src:url('chunks/assets/font_c4037d564a44d32e729cc620.woff')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00466;src:url('chunks/assets/font_19e885781c3f22f3df399ed5.woff')format("woff");}.ff5_c00466{font-family:ff5_c00466;line-height:1.202148;font-style: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.000000px;}
.ls0_c00466{letter-spacing:0.185760px;}
.sc__c00466{text-shadow:none;}
.sc1_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00466{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc1_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00466{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
}
.ws0_c00466{word-spacing:-27.174240px;}
.ws1_c00466{word-spacing:0.000000px;}
._3_c00466{margin-left:-4.756320px;}
._1_c00466{margin-left:-3.435120px;}
._0_c00466{margin-left:-2.113920px;}
._2_c00466{margin-left:-1.056960px;}
._4_c00466{width:1.602480px;}
.fc1_c00466{color:rgb(0,0,0);}
.fc0_c00466{color:rgb(0,32,96);}
.fs2_c00466{font-size:102.240000px;}
.fs1_c00466{font-size:120.240000px;}
.fs0_c00466{font-size:264.240000px;}
.y0_c00466{bottom:0.000000px;}
.y4_c00466{bottom:30.348000px;}
.y3_c00466{bottom:562.110000px;}
.y2_c00466{bottom:598.110000px;}
.y1_c00466{bottom:713.520000px;}
.h3_c00466{height:101.690859px;}
.h2_c00466{height:123.116836px;}
.h1_c00466{height:251.595703px;}
.h0_c00466{height:810.000000px;}
.w1_c00466{width:1439.999979px;}
.w0_c00466{width:1440.000000px;}
.x0_c00466{left:0.000000px;}
.x2_c00466{left:81.143979px;}
.x1_c00466{left:368.429979px;}
.x3_c00466{left:882.434979px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls1_c00466{letter-spacing:0.000000pt;}
.ls0_c00466{letter-spacing:0.165120pt;}
.ws0_c00466{word-spacing:-24.154880pt;}
.ws1_c00466{word-spacing:0.000000pt;}
._3_c00466{margin-left:-4.227840pt;}
._1_c00466{margin-left:-3.053440pt;}
._0_c00466{margin-left:-1.879040pt;}
._2_c00466{margin-left:-0.939520pt;}
._4_c00466{width:1.424427pt;}
.fs2_c00466{font-size:90.880000pt;}
.fs1_c00466{font-size:106.880000pt;}
.fs0_c00466{font-size:234.880000pt;}
.y0_c00466{bottom:0.000000pt;}
.y4_c00466{bottom:26.976000pt;}
.y3_c00466{bottom:499.653333pt;}
.y2_c00466{bottom:531.653333pt;}
.y1_c00466{bottom:634.240000pt;}
.h3_c00466{height:90.391875pt;}
.h2_c00466{height:109.437187pt;}
.h1_c00466{height:223.640625pt;}
.h0_c00466{height:720.000000pt;}
.w1_c00466{width:1279.999981pt;}
.w0_c00466{width:1280.000000pt;}
.x0_c00466{left:0.000000pt;}
.x2_c00466{left:72.127981pt;}
.x1_c00466{left:327.493314pt;}
.x3_c00466{left:784.386648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32a9296b8a3c4c5d928dcdbc.woff')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.172852;font-style: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;}
.ls0_c00467{letter-spacing:0.000000px;}
.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:0.000000px;}
._0_c00467{margin-left:-1.022400px;}
.fc0_c00467{color:rgb(0,0,0);}
.fs0_c00467{font-size:102.240000px;}
.y0_c00467{bottom:0.000000px;}
.y1_c00467{bottom:30.564000px;}
.h1_c00467{height:101.690859px;}
.h0_c00467{height:810.000000px;}
.w1_c00467{width:1439.999979px;}
.w0_c00467{width:1440.000000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:1196.744979px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls0_c00467{letter-spacing:0.000000pt;}
.ws0_c00467{word-spacing:0.000000pt;}
._0_c00467{margin-left:-0.908800pt;}
.fs0_c00467{font-size:90.880000pt;}
.y0_c00467{bottom:0.000000pt;}
.y1_c00467{bottom:27.168000pt;}
.h1_c00467{height:90.391875pt;}
.h0_c00467{height:720.000000pt;}
.w1_c00467{width:1279.999981pt;}
.w0_c00467{width:1280.000000pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:1063.773314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_17a0bf9d0409d381fc0c7059.woff')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00468;src:url('chunks/assets/font_5fca3a0af6d840e9e82b1440.woff')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00468;src:url('chunks/assets/font_d659f84214fbb8c7d8415e7c.woff')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:0.930176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00468;src:url('chunks/assets/font_c8fc247bee54e37ed36aa02b.woff')format("woff");}.ff4_c00468{font-family:ff4_c00468;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls2_c00468{letter-spacing:-0.036000px;}
.ls0_c00468{letter-spacing:0.000000px;}
.ls1_c00468{letter-spacing:0.155400px;}
.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;}
._0_c00468{margin-left:-1.124640px;}
._2_c00468{width:1.040640px;}
._1_c00468{width:2.072640px;}
.fc0_c00468{color:rgb(0,0,0);}
.fs0_c00468{font-size:102.240000px;}
.fs1_c00468{font-size:108.000000px;}
.y0_c00468{bottom:0.000000px;}
.y1_c00468{bottom:30.564000px;}
.y5_c00468{bottom:354.960000px;}
.y4_c00468{bottom:429.480000px;}
.y3_c00468{bottom:466.740000px;}
.y2_c00468{bottom:504.000000px;}
.h2_c00468{height:77.730469px;}
.h3_c00468{height:78.626953px;}
.h1_c00468{height:101.690859px;}
.h0_c00468{height:810.000000px;}
.w1_c00468{width:1439.999979px;}
.w0_c00468{width:1440.000000px;}
.x0_c00468{left:0.000000px;}
.x2_c00468{left:843.014979px;}
.x1_c00468{left:1201.064979px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls2_c00468{letter-spacing:-0.032000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ls1_c00468{letter-spacing:0.138133pt;}
.ws0_c00468{word-spacing:0.000000pt;}
._0_c00468{margin-left:-0.999680pt;}
._2_c00468{width:0.925013pt;}
._1_c00468{width:1.842347pt;}
.fs0_c00468{font-size:90.880000pt;}
.fs1_c00468{font-size:96.000000pt;}
.y0_c00468{bottom:0.000000pt;}
.y1_c00468{bottom:27.168000pt;}
.y5_c00468{bottom:315.520000pt;}
.y4_c00468{bottom:381.760000pt;}
.y3_c00468{bottom:414.880000pt;}
.y2_c00468{bottom:448.000000pt;}
.h2_c00468{height:69.093750pt;}
.h3_c00468{height:69.890625pt;}
.h1_c00468{height:90.391875pt;}
.h0_c00468{height:720.000000pt;}
.w1_c00468{width:1279.999981pt;}
.w0_c00468{width:1280.000000pt;}
.x0_c00468{left:0.000000pt;}
.x2_c00468{left:749.346648pt;}
.x1_c00468{left:1067.613314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c16283a8df4c720e3ef15e3.woff')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.172852;font-style:normal;font-weight:normal;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_06f54962ebad0e1646c30200.woff')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.202148;font-style: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);}
.m1_c00469{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls0_c00469{letter-spacing:0.000000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00469{word-spacing:-29.777760px;}
.ws1_c00469{word-spacing:0.000000px;}
._1_c00469{margin-left:-4.078080px;}
._0_c00469{margin-left:-2.245248px;}
._2_c00469{margin-left:-1.185840px;}
.fc2_c00469{color:rgb(5,99,193);}
.fc1_c00469{color:rgb(0,32,96);}
.fc0_c00469{color:rgb(0,0,0);}
.fs2_c00469{font-size:66.240000px;}
.fs1_c00469{font-size:131.760000px;}
.fs0_c00469{font-size:203.904000px;}
.y0_c00469{bottom:0.000000px;}
.y4_c00469{bottom:223.635000px;}
.y3_c00469{bottom:370.185000px;}
.y2_c00469{bottom:413.025000px;}
.y1_c00469{bottom:502.170000px;}
.h3_c00469{height:65.884219px;}
.h2_c00469{height:131.052305px;}
.h1_c00469{height:208.782562px;}
.h0_c00469{height:810.000000px;}
.w1_c00469{width:1439.999979px;}
.w0_c00469{width:1440.000000px;}
.x0_c00469{left:0.000000px;}
.x4_c00469{left:10.799979px;}
.x1_c00469{left:459.074979px;}
.x3_c00469{left:564.914979px;}
.x2_c00469{left:580.574979px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ws0_c00469{word-spacing:-26.469120pt;}
.ws1_c00469{word-spacing:0.000000pt;}
._1_c00469{margin-left:-3.624960pt;}
._0_c00469{margin-left:-1.995776pt;}
._2_c00469{margin-left:-1.054080pt;}
.fs2_c00469{font-size:58.880000pt;}
.fs1_c00469{font-size:117.120000pt;}
.fs0_c00469{font-size:181.248000pt;}
.y0_c00469{bottom:0.000000pt;}
.y4_c00469{bottom:198.786667pt;}
.y3_c00469{bottom:329.053333pt;}
.y2_c00469{bottom:367.133333pt;}
.y1_c00469{bottom:446.373333pt;}
.h3_c00469{height:58.563750pt;}
.h2_c00469{height:116.490937pt;}
.h1_c00469{height:185.584500pt;}
.h0_c00469{height:720.000000pt;}
.w1_c00469{width:1279.999981pt;}
.w0_c00469{width:1280.000000pt;}
.x0_c00469{left:0.000000pt;}
.x4_c00469{left:9.599981pt;}
.x1_c00469{left:408.066648pt;}
.x3_c00469{left:502.146648pt;}
.x2_c00469{left:516.066648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_681533474a78a610a79e6eb8.woff')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:0.980957;font-style:normal;font-weight:normal;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_c941c64ba485291ca70b8d60.woff')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.094048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.v1_c00470{vertical-align:90.720000px;}
.ls1_c00470{letter-spacing:0.000000px;}
.ls0_c00470{letter-spacing:794.232000px;}
.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:0.000000px;}
._0_c00470{margin-left:-1.620720px;}
.fc1_c00470{color:rgb(0,0,0);}
.fc0_c00470{color:rgb(255,255,255);}
.fs0_c00470{font-size:108.000000px;}
.fs1_c00470{font-size:324.000000px;}
.fs2_c00470{font-size:324.144000px;}
.y0_c00470{bottom:0.000000px;}
.y2_c00470{bottom:34.128000px;}
.y1_c00470{bottom:108.648000px;}
.h2_c00470{height:288.164016px;}
.h1_c00470{height:378.756000px;}
.h0_c00470{height:810.000000px;}
.w1_c00470{width:1439.999979px;}
.w0_c00470{width:1440.000000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:716.219979px;}
.x2_c00470{left:723.569979px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.v1_c00470{vertical-align:80.640000pt;}
.ls1_c00470{letter-spacing:0.000000pt;}
.ls0_c00470{letter-spacing:705.984000pt;}
.ws0_c00470{word-spacing:0.000000pt;}
._0_c00470{margin-left:-1.440640pt;}
.fs0_c00470{font-size:96.000000pt;}
.fs1_c00470{font-size:288.000000pt;}
.fs2_c00470{font-size:288.128000pt;}
.y0_c00470{bottom:0.000000pt;}
.y2_c00470{bottom:30.336000pt;}
.y1_c00470{bottom:96.576000pt;}
.h2_c00470{height:256.145792pt;}
.h1_c00470{height:336.672000pt;}
.h0_c00470{height:720.000000pt;}
.w1_c00470{width:1279.999981pt;}
.w0_c00470{width:1280.000000pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:636.639981pt;}
.x2_c00470{left:643.173314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6a0cdf824c2a0e98c51d7a0.woff')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.094048;font-style:normal;font-weight:normal;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_baaef6b43212878411eae058.woff')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls0_c00471{letter-spacing:0.000000px;}
.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:-28.800000px;}
.ws1_c00471{word-spacing:0.000000px;}
._0_c00471{margin-left:-1.080000px;}
._1_c00471{width:2.160000px;}
.fc0_c00471{color:rgb(0,0,0);}
.fs1_c00471{font-size:144.000000px;}
.fs2_c00471{font-size:144.144000px;}
.fs0_c00471{font-size:216.000000px;}
.y0_c00471{bottom:0.000000px;}
.y1_c00471{bottom:45.108000px;}
.y7_c00471{bottom:230.550000px;}
.y6_c00471{bottom:295.350000px;}
.y5_c00471{bottom:360.180000px;}
.y4_c00471{bottom:424.980000px;}
.y3_c00471{bottom:489.810000px;}
.y2_c00471{bottom:554.610000px;}
.h2_c00471{height:113.760000px;}
.h3_c00471{height:113.873760px;}
.h1_c00471{height:192.024000px;}
.h0_c00471{height:810.000000px;}
.w1_c00471{width:1439.999979px;}
.w0_c00471{width:1440.000000px;}
.x0_c00471{left:0.000000px;}
.x1_c00471{left:709.994979px;}
.x2_c00471{left:730.904979px;}
.x3_c00471{left:740.804979px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws0_c00471{word-spacing:-25.600000pt;}
.ws1_c00471{word-spacing:0.000000pt;}
._0_c00471{margin-left:-0.960000pt;}
._1_c00471{width:1.920000pt;}
.fs1_c00471{font-size:128.000000pt;}
.fs2_c00471{font-size:128.128000pt;}
.fs0_c00471{font-size:192.000000pt;}
.y0_c00471{bottom:0.000000pt;}
.y1_c00471{bottom:40.096000pt;}
.y7_c00471{bottom:204.933333pt;}
.y6_c00471{bottom:262.533333pt;}
.y5_c00471{bottom:320.160000pt;}
.y4_c00471{bottom:377.760000pt;}
.y3_c00471{bottom:435.386667pt;}
.y2_c00471{bottom:492.986667pt;}
.h2_c00471{height:101.120000pt;}
.h3_c00471{height:101.221120pt;}
.h1_c00471{height:170.688000pt;}
.h0_c00471{height:720.000000pt;}
.w1_c00471{width:1279.999981pt;}
.w0_c00471{width:1280.000000pt;}
.x0_c00471{left:0.000000pt;}
.x1_c00471{left:631.106648pt;}
.x2_c00471{left:649.693314pt;}
.x3_c00471{left:658.493314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2ad8a26e3f2a266128279d9.woff')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.094048;font-style: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;}
._0_c00472{margin-left:-1.512000px;}
._1_c00472{width:1.188000px;}
._2_c00472{width:359.712000px;}
._3_c00472{width:576.528000px;}
.fc0_c00472{color:rgb(0,0,0);}
.fs1_c00472{font-size:108.000000px;}
.fs0_c00472{font-size:216.000000px;}
.y0_c00472{bottom:0.000000px;}
.y1_c00472{bottom:45.108000px;}
.y2_c00472{bottom:211.965000px;}
.h2_c00472{height:96.012000px;}
.h1_c00472{height:192.024000px;}
.h0_c00472{height:810.000000px;}
.w1_c00472{width:1439.999979px;}
.w0_c00472{width:1440.000000px;}
.x0_c00472{left:0.000000px;}
.x2_c00472{left:93.455979px;}
.x1_c00472{left:702.794979px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws0_c00472{word-spacing:0.000000pt;}
._0_c00472{margin-left:-1.344000pt;}
._1_c00472{width:1.056000pt;}
._2_c00472{width:319.744000pt;}
._3_c00472{width:512.469333pt;}
.fs1_c00472{font-size:96.000000pt;}
.fs0_c00472{font-size:192.000000pt;}
.y0_c00472{bottom:0.000000pt;}
.y1_c00472{bottom:40.096000pt;}
.y2_c00472{bottom:188.413333pt;}
.h2_c00472{height:85.344000pt;}
.h1_c00472{height:170.688000pt;}
.h0_c00472{height:720.000000pt;}
.w1_c00472{width:1279.999981pt;}
.w0_c00472{width:1280.000000pt;}
.x0_c00472{left:0.000000pt;}
.x2_c00472{left:83.071981pt;}
.x1_c00472{left:624.706648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cf2f246e10fd22509c92d1a9.woff')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.094048;font-style: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);}
.v1_c00473{vertical-align:-5.460000px;}
.v0_c00473{vertical-align:0.000000px;}
.ls0_c00473{letter-spacing:0.000000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:0.000000px;}
._0_c00473{margin-left:-2.376000px;}
._2_c00473{width:1.080000px;}
._1_c00473{width:1213.212000px;}
.fc0_c00473{color:rgb(0,0,0);}
.fs1_c00473{font-size:108.000000px;}
.fs0_c00473{font-size:216.000000px;}
.y0_c00473{bottom:0.000000px;}
.y1_c00473{bottom:45.108000px;}
.y2_c00473{bottom:213.330000px;}
.h2_c00473{height:96.012000px;}
.h1_c00473{height:192.024000px;}
.h0_c00473{height:810.000000px;}
.w1_c00473{width:1439.999979px;}
.w0_c00473{width:1440.000000px;}
.x0_c00473{left:0.000000px;}
.x2_c00473{left:231.089979px;}
.x1_c00473{left:607.574979px;}
@media print{
.v1_c00473{vertical-align:-4.853333pt;}
.v0_c00473{vertical-align:0.000000pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ws0_c00473{word-spacing:0.000000pt;}
._0_c00473{margin-left:-2.112000pt;}
._2_c00473{width:0.960000pt;}
._1_c00473{width:1078.410667pt;}
.fs1_c00473{font-size:96.000000pt;}
.fs0_c00473{font-size:192.000000pt;}
.y0_c00473{bottom:0.000000pt;}
.y1_c00473{bottom:40.096000pt;}
.y2_c00473{bottom:189.626667pt;}
.h2_c00473{height:85.344000pt;}
.h1_c00473{height:170.688000pt;}
.h0_c00473{height:720.000000pt;}
.w1_c00473{width:1279.999981pt;}
.w0_c00473{width:1280.000000pt;}
.x0_c00473{left:0.000000pt;}
.x2_c00473{left:205.413314pt;}
.x1_c00473{left:540.066648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65b523b202d350e6bf7121cf.woff')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.094048;font-style:normal;font-weight:normal;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_e2b94da75628a8216e38802d.woff')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00474;src:url('chunks/assets/font_a1482ddf4e5e11019e3193a0.woff')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls0_c00474{letter-spacing:0.000000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00474{word-spacing:-216.000000px;}
.ws1_c00474{word-spacing:0.000000px;}
._0_c00474{margin-left:-1.440000px;}
._1_c00474{width:1.008000px;}
.fc0_c00474{color:rgb(0,0,0);}
.fs1_c00474{font-size:144.000000px;}
.fs2_c00474{font-size:144.144000px;}
.fs0_c00474{font-size:216.000000px;}
.y0_c00474{bottom:0.000000px;}
.y1_c00474{bottom:45.108000px;}
.y9_c00474{bottom:143.280000px;}
.y8_c00474{bottom:208.080000px;}
.y7_c00474{bottom:272.910000px;}
.y6_c00474{bottom:337.710000px;}
.y5_c00474{bottom:402.555000px;}
.y4_c00474{bottom:467.355000px;}
.y3_c00474{bottom:532.185000px;}
.y2_c00474{bottom:596.985000px;}
.h2_c00474{height:113.760000px;}
.h3_c00474{height:113.873760px;}
.h1_c00474{height:192.024000px;}
.h0_c00474{height:810.000000px;}
.w1_c00474{width:1439.999979px;}
.w0_c00474{width:1440.000000px;}
.x0_c00474{left:0.000000px;}
.x2_c00474{left:807.449979px;}
.x3_c00474{left:828.689979px;}
.x1_c00474{left:1052.789979px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws0_c00474{word-spacing:-192.000000pt;}
.ws1_c00474{word-spacing:0.000000pt;}
._0_c00474{margin-left:-1.280000pt;}
._1_c00474{width:0.896000pt;}
.fs1_c00474{font-size:128.000000pt;}
.fs2_c00474{font-size:128.128000pt;}
.fs0_c00474{font-size:192.000000pt;}
.y0_c00474{bottom:0.000000pt;}
.y1_c00474{bottom:40.096000pt;}
.y9_c00474{bottom:127.360000pt;}
.y8_c00474{bottom:184.960000pt;}
.y7_c00474{bottom:242.586667pt;}
.y6_c00474{bottom:300.186667pt;}
.y5_c00474{bottom:357.826667pt;}
.y4_c00474{bottom:415.426667pt;}
.y3_c00474{bottom:473.053333pt;}
.y2_c00474{bottom:530.653333pt;}
.h2_c00474{height:101.120000pt;}
.h3_c00474{height:101.221120pt;}
.h1_c00474{height:170.688000pt;}
.h0_c00474{height:720.000000pt;}
.w1_c00474{width:1279.999981pt;}
.w0_c00474{width:1280.000000pt;}
.x0_c00474{left:0.000000pt;}
.x2_c00474{left:717.733314pt;}
.x3_c00474{left:736.613314pt;}
.x1_c00474{left:935.813314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd95c8c641702d78f89a677b.woff')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.094048;font-style:normal;font-weight:normal;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_7bbf5d12801f5665ab0e2bf4.woff')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.094048;font-style: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;}
.ls1_c00475{letter-spacing:-0.288000px;}
.ls0_c00475{letter-spacing:0.000000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00475{word-spacing:-216.000000px;}
.ws0_c00475{word-spacing:-43.200000px;}
.ws2_c00475{word-spacing:0.000000px;}
._0_c00475{width:1.020000px;}
.fc0_c00475{color:rgb(0,0,0);}
.fs0_c00475{font-size:216.000000px;}
.y0_c00475{bottom:0.000000px;}
.y1_c00475{bottom:45.108000px;}
.h1_c00475{height:192.024000px;}
.h0_c00475{height:810.000000px;}
.w1_c00475{width:1439.999979px;}
.w0_c00475{width:1440.000000px;}
.x0_c00475{left:0.000000px;}
.x1_c00475{left:797.864979px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls1_c00475{letter-spacing:-0.256000pt;}
.ls0_c00475{letter-spacing:0.000000pt;}
.ws1_c00475{word-spacing:-192.000000pt;}
.ws0_c00475{word-spacing:-38.400000pt;}
.ws2_c00475{word-spacing:0.000000pt;}
._0_c00475{width:0.906667pt;}
.fs0_c00475{font-size:192.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y1_c00475{bottom:40.096000pt;}
.h1_c00475{height:170.688000pt;}
.h0_c00475{height:720.000000pt;}
.w1_c00475{width:1279.999981pt;}
.w0_c00475{width:1280.000000pt;}
.x0_c00475{left:0.000000pt;}
.x1_c00475{left:709.213314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5927db596a9094f8064c73d1.woff')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.094048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls0_c00476{letter-spacing:0.000000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00476{word-spacing:0.000000px;}
.fc0_c00476{color:rgb(0,0,0);}
.fs0_c00476{font-size:216.000000px;}
.y0_c00476{bottom:0.000000px;}
.y1_c00476{bottom:45.108000px;}
.h1_c00476{height:192.024000px;}
.h0_c00476{height:810.000000px;}
.w1_c00476{width:1439.999979px;}
.w0_c00476{width:1440.000000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:1211.909979px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws0_c00476{word-spacing:0.000000pt;}
.fs0_c00476{font-size:192.000000pt;}
.y0_c00476{bottom:0.000000pt;}
.y1_c00476{bottom:40.096000pt;}
.h1_c00476{height:170.688000pt;}
.h0_c00476{height:720.000000pt;}
.w1_c00476{width:1279.999981pt;}
.w0_c00476{width:1280.000000pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:1077.253314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6fba3e6c5b6e9f7ce315e9b.woff')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.094048;font-style:normal;font-weight:normal;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_48b3723bdbf7dc3c24dfe8a2.woff')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:0.997000;font-style: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;}
._0_c00477{margin-left:-1.513008px;}
._1_c00477{width:1.513008px;}
.fc0_c00477{color:rgb(0,0,0);}
.fs2_c00477{font-size:144.000000px;}
.fs3_c00477{font-size:144.144000px;}
.fs1_c00477{font-size:216.000000px;}
.fs0_c00477{font-size:216.144000px;}
.y0_c00477{bottom:0.000000px;}
.y2_c00477{bottom:47.340000px;}
.y1_c00477{bottom:112.176000px;}
.y7_c00477{bottom:297.000000px;}
.y6_c00477{bottom:361.800000px;}
.y5_c00477{bottom:426.630000px;}
.y4_c00477{bottom:491.430000px;}
.y3_c00477{bottom:556.230000px;}
.h3_c00477{height:113.760000px;}
.h4_c00477{height:113.873760px;}
.h2_c00477{height:192.024000px;}
.h1_c00477{height:192.152016px;}
.h0_c00477{height:810.000000px;}
.w1_c00477{width:1439.999979px;}
.w0_c00477{width:1440.000000px;}
.x0_c00477{left:0.000000px;}
.x2_c00477{left:868.529979px;}
.x3_c00477{left:875.489979px;}
.x1_c00477{left:987.149979px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws0_c00477{word-spacing:0.000000pt;}
._0_c00477{margin-left:-1.344896pt;}
._1_c00477{width:1.344896pt;}
.fs2_c00477{font-size:128.000000pt;}
.fs3_c00477{font-size:128.128000pt;}
.fs1_c00477{font-size:192.000000pt;}
.fs0_c00477{font-size:192.128000pt;}
.y0_c00477{bottom:0.000000pt;}
.y2_c00477{bottom:42.080000pt;}
.y1_c00477{bottom:99.712000pt;}
.y7_c00477{bottom:264.000000pt;}
.y6_c00477{bottom:321.600000pt;}
.y5_c00477{bottom:379.226667pt;}
.y4_c00477{bottom:436.826667pt;}
.y3_c00477{bottom:494.426667pt;}
.h3_c00477{height:101.120000pt;}
.h4_c00477{height:101.221120pt;}
.h2_c00477{height:170.688000pt;}
.h1_c00477{height:170.801792pt;}
.h0_c00477{height:720.000000pt;}
.w1_c00477{width:1279.999981pt;}
.w0_c00477{width:1280.000000pt;}
.x0_c00477{left:0.000000pt;}
.x2_c00477{left:772.026648pt;}
.x3_c00477{left:778.213314pt;}
.x1_c00477{left:877.466648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_155a45bfeb5f1186dae45f7a.woff')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.094048;font-style: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;}
._1_c00478{width:1.080000px;}
._0_c00478{width:1052.928000px;}
.fc0_c00478{color:rgb(0,0,0);}
.fs1_c00478{font-size:108.000000px;}
.fs0_c00478{font-size:216.000000px;}
.y0_c00478{bottom:0.000000px;}
.y1_c00478{bottom:45.108000px;}
.y2_c00478{bottom:206.070000px;}
.h2_c00478{height:96.012000px;}
.h1_c00478{height:192.024000px;}
.h0_c00478{height:810.000000px;}
.w1_c00478{width:1439.999979px;}
.w0_c00478{width:1440.000000px;}
.x0_c00478{left:0.000000px;}
.x2_c00478{left:301.604979px;}
.x1_c00478{left:976.784979px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws0_c00478{word-spacing:0.000000pt;}
._1_c00478{width:0.960000pt;}
._0_c00478{width:935.936000pt;}
.fs1_c00478{font-size:96.000000pt;}
.fs0_c00478{font-size:192.000000pt;}
.y0_c00478{bottom:0.000000pt;}
.y1_c00478{bottom:40.096000pt;}
.y2_c00478{bottom:183.173333pt;}
.h2_c00478{height:85.344000pt;}
.h1_c00478{height:170.688000pt;}
.h0_c00478{height:720.000000pt;}
.w1_c00478{width:1279.999981pt;}
.w0_c00478{width:1280.000000pt;}
.x0_c00478{left:0.000000pt;}
.x2_c00478{left:268.093314pt;}
.x1_c00478{left:868.253314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e0785ac5ef45ec95fa510b27.woff')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.094048;font-style:normal;font-weight:normal;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_5d538b67665529122e06e411.woff')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.094048;font-style: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:-43.228800px;}
.ws1_c00479{word-spacing:0.000000px;}
._0_c00479{margin-left:-1.296000px;}
.fc0_c00479{color:rgb(0,0,0);}
.fs0_c00479{font-size:216.000000px;}
.fs1_c00479{font-size:216.144000px;}
.y0_c00479{bottom:0.000000px;}
.y1_c00479{bottom:45.108000px;}
.y4_c00479{bottom:276.690000px;}
.y3_c00479{bottom:373.890000px;}
.y2_c00479{bottom:471.135000px;}
.h1_c00479{height:192.024000px;}
.h2_c00479{height:192.152016px;}
.h0_c00479{height:810.000000px;}
.w1_c00479{width:1439.999979px;}
.w0_c00479{width:1440.000000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:701.174979px;}
.x4_c00479{left:1092.314979px;}
.x2_c00479{left:1162.514979px;}
.x3_c00479{left:1225.514979px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws0_c00479{word-spacing:-38.425600pt;}
.ws1_c00479{word-spacing:0.000000pt;}
._0_c00479{margin-left:-1.152000pt;}
.fs0_c00479{font-size:192.000000pt;}
.fs1_c00479{font-size:192.128000pt;}
.y0_c00479{bottom:0.000000pt;}
.y1_c00479{bottom:40.096000pt;}
.y4_c00479{bottom:245.946667pt;}
.y3_c00479{bottom:332.346667pt;}
.y2_c00479{bottom:418.786667pt;}
.h1_c00479{height:170.688000pt;}
.h2_c00479{height:170.801792pt;}
.h0_c00479{height:720.000000pt;}
.w1_c00479{width:1279.999981pt;}
.w0_c00479{width:1280.000000pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:623.266648pt;}
.x4_c00479{left:970.946648pt;}
.x2_c00479{left:1033.346648pt;}
.x3_c00479{left:1089.346648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d027a4e12a0f012584e1d89f.woff')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.094048;font-style:normal;font-weight:normal;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_1de77015386d1bfd2adbfb1c.woff')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls0_c00480{letter-spacing:0.000000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00480{word-spacing:0.000000px;}
._0_c00480{margin-left:-1.152000px;}
._1_c00480{width:1.008000px;}
.fc0_c00480{color:rgb(0,0,0);}
.fs1_c00480{font-size:144.000000px;}
.fs2_c00480{font-size:144.144000px;}
.fs0_c00480{font-size:216.000000px;}
.y0_c00480{bottom:0.000000px;}
.y1_c00480{bottom:45.108000px;}
.y7_c00480{bottom:228.060000px;}
.y6_c00480{bottom:292.860000px;}
.y5_c00480{bottom:357.690000px;}
.y4_c00480{bottom:422.490000px;}
.y3_c00480{bottom:487.335000px;}
.y2_c00480{bottom:552.135000px;}
.h2_c00480{height:113.760000px;}
.h3_c00480{height:113.873760px;}
.h1_c00480{height:192.024000px;}
.h0_c00480{height:810.000000px;}
.w1_c00480{width:1439.999979px;}
.w0_c00480{width:1440.000000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:860.684979px;}
.x2_c00480{left:875.489979px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ws0_c00480{word-spacing:0.000000pt;}
._0_c00480{margin-left:-1.024000pt;}
._1_c00480{width:0.896000pt;}
.fs1_c00480{font-size:128.000000pt;}
.fs2_c00480{font-size:128.128000pt;}
.fs0_c00480{font-size:192.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y1_c00480{bottom:40.096000pt;}
.y7_c00480{bottom:202.720000pt;}
.y6_c00480{bottom:260.320000pt;}
.y5_c00480{bottom:317.946667pt;}
.y4_c00480{bottom:375.546667pt;}
.y3_c00480{bottom:433.186667pt;}
.y2_c00480{bottom:490.786667pt;}
.h2_c00480{height:101.120000pt;}
.h3_c00480{height:101.221120pt;}
.h1_c00480{height:170.688000pt;}
.h0_c00480{height:720.000000pt;}
.w1_c00480{width:1279.999981pt;}
.w0_c00480{width:1280.000000pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:765.053314pt;}
.x2_c00480{left:778.213314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_960927a4ebefcf801263f04c.woff')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.094048;font-style:normal;font-weight:normal;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_5f67a87c73dc3d1895c5ed8f.woff')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00481;src:url('chunks/assets/font_11312908561cc8b7badf2817.woff')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls0_c00481{letter-spacing:0.000000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00481{word-spacing:-28.800000px;}
.ws1_c00481{word-spacing:0.000000px;}
._0_c00481{margin-left:-1.008000px;}
._1_c00481{width:1.296000px;}
.fc0_c00481{color:rgb(0,0,0);}
.fs1_c00481{font-size:144.000000px;}
.fs2_c00481{font-size:144.144000px;}
.fs0_c00481{font-size:216.000000px;}
.y0_c00481{bottom:0.000000px;}
.y1_c00481{bottom:45.108000px;}
.y8_c00481{bottom:177.810000px;}
.y7_c00481{bottom:242.610000px;}
.y6_c00481{bottom:307.440000px;}
.y5_c00481{bottom:372.240000px;}
.y4_c00481{bottom:437.070000px;}
.y3_c00481{bottom:501.870000px;}
.y2_c00481{bottom:566.670000px;}
.h2_c00481{height:113.760000px;}
.h3_c00481{height:113.873760px;}
.h1_c00481{height:192.024000px;}
.h0_c00481{height:810.000000px;}
.w1_c00481{width:1439.999979px;}
.w0_c00481{width:1440.000000px;}
.x0_c00481{left:0.000000px;}
.x2_c00481{left:746.849979px;}
.x3_c00481{left:768.089979px;}
.x1_c00481{left:919.724979px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:-25.600000pt;}
.ws1_c00481{word-spacing:0.000000pt;}
._0_c00481{margin-left:-0.896000pt;}
._1_c00481{width:1.152000pt;}
.fs1_c00481{font-size:128.000000pt;}
.fs2_c00481{font-size:128.128000pt;}
.fs0_c00481{font-size:192.000000pt;}
.y0_c00481{bottom:0.000000pt;}
.y1_c00481{bottom:40.096000pt;}
.y8_c00481{bottom:158.053333pt;}
.y7_c00481{bottom:215.653333pt;}
.y6_c00481{bottom:273.280000pt;}
.y5_c00481{bottom:330.880000pt;}
.y4_c00481{bottom:388.506667pt;}
.y3_c00481{bottom:446.106667pt;}
.y2_c00481{bottom:503.706667pt;}
.h2_c00481{height:101.120000pt;}
.h3_c00481{height:101.221120pt;}
.h1_c00481{height:170.688000pt;}
.h0_c00481{height:720.000000pt;}
.w1_c00481{width:1279.999981pt;}
.w0_c00481{width:1280.000000pt;}
.x0_c00481{left:0.000000pt;}
.x2_c00481{left:663.866648pt;}
.x3_c00481{left:682.746648pt;}
.x1_c00481{left:817.533314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9db8adb46e35ce5425a7dde6.woff')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.094048;font-style:normal;font-weight:normal;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_6d7ccd065cc57c976ea291c3.woff')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:0.997000;font-style:normal;font-weight:normal;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_c5db0c2c9ecad642a10bb3fa.woff')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:0.997000;font-style: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;}
.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:-28.800000px;}
.ws1_c00482{word-spacing:0.000000px;}
._0_c00482{margin-left:-1.512000px;}
._1_c00482{width:1.224000px;}
.fc0_c00482{color:rgb(0,0,0);}
.fs1_c00482{font-size:144.000000px;}
.fs2_c00482{font-size:144.144000px;}
.fs0_c00482{font-size:216.000000px;}
.y0_c00482{bottom:0.000000px;}
.y1_c00482{bottom:45.108000px;}
.y8_c00482{bottom:167.370000px;}
.y7_c00482{bottom:232.170000px;}
.y6_c00482{bottom:297.000000px;}
.y5_c00482{bottom:361.800000px;}
.y4_c00482{bottom:426.630000px;}
.y3_c00482{bottom:491.430000px;}
.y2_c00482{bottom:556.230000px;}
.h2_c00482{height:113.760000px;}
.h3_c00482{height:113.873760px;}
.h1_c00482{height:192.024000px;}
.h0_c00482{height:810.000000px;}
.w1_c00482{width:1439.999979px;}
.w0_c00482{width:1440.000000px;}
.x0_c00482{left:0.000000px;}
.x2_c00482{left:808.484979px;}
.x3_c00482{left:829.769979px;}
.x1_c00482{left:907.484979px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws0_c00482{word-spacing:-25.600000pt;}
.ws1_c00482{word-spacing:0.000000pt;}
._0_c00482{margin-left:-1.344000pt;}
._1_c00482{width:1.088000pt;}
.fs1_c00482{font-size:128.000000pt;}
.fs2_c00482{font-size:128.128000pt;}
.fs0_c00482{font-size:192.000000pt;}
.y0_c00482{bottom:0.000000pt;}
.y1_c00482{bottom:40.096000pt;}
.y8_c00482{bottom:148.773333pt;}
.y7_c00482{bottom:206.373333pt;}
.y6_c00482{bottom:264.000000pt;}
.y5_c00482{bottom:321.600000pt;}
.y4_c00482{bottom:379.226667pt;}
.y3_c00482{bottom:436.826667pt;}
.y2_c00482{bottom:494.426667pt;}
.h2_c00482{height:101.120000pt;}
.h3_c00482{height:101.221120pt;}
.h1_c00482{height:170.688000pt;}
.h0_c00482{height:720.000000pt;}
.w1_c00482{width:1279.999981pt;}
.w0_c00482{width:1280.000000pt;}
.x0_c00482{left:0.000000pt;}
.x2_c00482{left:718.653314pt;}
.x3_c00482{left:737.573314pt;}
.x1_c00482{left:806.653314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b02c2f7b40bf1c56d41db1f0.woff')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.094048;font-style:normal;font-weight:normal;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_a94e74cbc10ed5fb9bed3e75.woff')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:0.997000;font-style:normal;font-weight:normal;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_e585a00ff650340acd015a7b.woff')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00483;src:url('chunks/assets/font_fbb4535e5c09da21adf93fee.woff')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:0.997000;font-style: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;}
.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;}
._0_c00483{margin-left:-2.450448px;}
._1_c00483{margin-left:-1.152000px;}
._2_c00483{width:1.152000px;}
.fc0_c00483{color:rgb(0,0,0);}
.fs2_c00483{font-size:144.000000px;}
.fs1_c00483{font-size:144.144000px;}
.fs0_c00483{font-size:216.000000px;}
.y0_c00483{bottom:0.000000px;}
.y1_c00483{bottom:45.108000px;}
.y5_c00483{bottom:304.305000px;}
.y4_c00483{bottom:433.950000px;}
.y3_c00483{bottom:498.750000px;}
.y2_c00483{bottom:563.580000px;}
.h3_c00483{height:113.760000px;}
.h2_c00483{height:113.873760px;}
.h1_c00483{height:192.024000px;}
.h0_c00483{height:810.000000px;}
.w1_c00483{width:1439.999979px;}
.w0_c00483{width:1440.000000px;}
.x0_c00483{left:0.000000px;}
.x2_c00483{left:722.369979px;}
.x1_c00483{left:900.104979px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws0_c00483{word-spacing:0.000000pt;}
._0_c00483{margin-left:-2.178176pt;}
._1_c00483{margin-left:-1.024000pt;}
._2_c00483{width:1.024000pt;}
.fs2_c00483{font-size:128.000000pt;}
.fs1_c00483{font-size:128.128000pt;}
.fs0_c00483{font-size:192.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y1_c00483{bottom:40.096000pt;}
.y5_c00483{bottom:270.493333pt;}
.y4_c00483{bottom:385.733333pt;}
.y3_c00483{bottom:443.333333pt;}
.y2_c00483{bottom:500.960000pt;}
.h3_c00483{height:101.120000pt;}
.h2_c00483{height:101.221120pt;}
.h1_c00483{height:170.688000pt;}
.h0_c00483{height:720.000000pt;}
.w1_c00483{width:1279.999981pt;}
.w0_c00483{width:1280.000000pt;}
.x0_c00483{left:0.000000pt;}
.x2_c00483{left:642.106648pt;}
.x1_c00483{left:800.093314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df33833343d033fbf2eadc88.woff')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:0.997000;font-style:normal;font-weight:normal;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_9b433ce86cfc7fb5609be3a1.woff')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.094048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls0_c00484{letter-spacing:0.000000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00484{word-spacing:0.000000px;}
._0_c00484{margin-left:-1.296000px;}
._1_c00484{width:1.440000px;}
.fc0_c00484{color:rgb(0,0,0);}
.fs0_c00484{font-size:144.000000px;}
.fs1_c00484{font-size:216.000000px;}
.y0_c00484{bottom:0.000000px;}
.y5_c00484{bottom:45.108000px;}
.y4_c00484{bottom:288.255000px;}
.y3_c00484{bottom:353.055000px;}
.y2_c00484{bottom:417.885000px;}
.y1_c00484{bottom:482.685000px;}
.h1_c00484{height:113.760000px;}
.h2_c00484{height:192.024000px;}
.h0_c00484{height:810.000000px;}
.w1_c00484{width:1439.999979px;}
.w0_c00484{width:1440.000000px;}
.x0_c00484{left:0.000000px;}
.x2_c00484{left:611.354979px;}
.x1_c00484{left:773.429979px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:0.000000pt;}
._0_c00484{margin-left:-1.152000pt;}
._1_c00484{width:1.280000pt;}
.fs0_c00484{font-size:128.000000pt;}
.fs1_c00484{font-size:192.000000pt;}
.y0_c00484{bottom:0.000000pt;}
.y5_c00484{bottom:40.096000pt;}
.y4_c00484{bottom:256.226667pt;}
.y3_c00484{bottom:313.826667pt;}
.y2_c00484{bottom:371.453333pt;}
.y1_c00484{bottom:429.053333pt;}
.h1_c00484{height:101.120000pt;}
.h2_c00484{height:170.688000pt;}
.h0_c00484{height:720.000000pt;}
.w1_c00484{width:1279.999981pt;}
.w0_c00484{width:1280.000000pt;}
.x0_c00484{left:0.000000pt;}
.x2_c00484{left:543.426648pt;}
.x1_c00484{left:687.493314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1299dabe4d680de6e8fbb59e.woff')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.094048;font-style: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;}
._0_c00485{margin-left:-2.376000px;}
.fc0_c00485{color:rgb(0,0,0);}
.fs0_c00485{font-size:216.000000px;}
.y0_c00485{bottom:0.000000px;}
.y1_c00485{bottom:45.108000px;}
.h1_c00485{height:192.024000px;}
.h0_c00485{height:810.000000px;}
.w1_c00485{width:1439.999979px;}
.w0_c00485{width:1440.000000px;}
.x0_c00485{left:0.000000px;}
.x1_c00485{left:865.544979px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls0_c00485{letter-spacing:0.000000pt;}
.ws0_c00485{word-spacing:0.000000pt;}
._0_c00485{margin-left:-2.112000pt;}
.fs0_c00485{font-size:192.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y1_c00485{bottom:40.096000pt;}
.h1_c00485{height:170.688000pt;}
.h0_c00485{height:720.000000pt;}
.w1_c00485{width:1279.999981pt;}
.w0_c00485{width:1280.000000pt;}
.x0_c00485{left:0.000000pt;}
.x1_c00485{left:769.373314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e66246bb9fd92a4936c6a73.woff')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:0.980957;font-style:normal;font-weight:normal;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_b2d52750ce5203549ce15df4.woff')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.094048;font-style: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;}
.ls1_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:0.072000px;}
.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;}
.fc2_c00486{color:transparent;}
.fc1_c00486{color:rgb(0,0,0);}
.fc0_c00486{color:rgb(255,255,255);}
.fs0_c00486{font-size:108.000000px;}
.fs1_c00486{font-size:216.144000px;}
.y0_c00486{bottom:0.000000px;}
.y2_c00486{bottom:43.524000px;}
.y1_c00486{bottom:396.255000px;}
.h1_c00486{height:91.283203px;}
.h2_c00486{height:192.152016px;}
.h0_c00486{height:810.000000px;}
.w1_c00486{width:1439.999979px;}
.w0_c00486{width:1440.000000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:716.219979px;}
.x2_c00486{left:1223.744979px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls1_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:0.064000pt;}
.ws0_c00486{word-spacing:0.000000pt;}
.fs0_c00486{font-size:96.000000pt;}
.fs1_c00486{font-size:192.128000pt;}
.y0_c00486{bottom:0.000000pt;}
.y2_c00486{bottom:38.688000pt;}
.y1_c00486{bottom:352.226667pt;}
.h1_c00486{height:81.140625pt;}
.h2_c00486{height:170.801792pt;}
.h0_c00486{height:720.000000pt;}
.w1_c00486{width:1279.999981pt;}
.w0_c00486{width:1280.000000pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:636.639981pt;}
.x2_c00486{left:1087.773314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e66246bb9fd92a4936c6a73.woff')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:0.980957;font-style:normal;font-weight:normal;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_330fb5d2d097c7a9b1c856d4.woff')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.094048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00487;src:url('chunks/assets/font_370f2f810885f61470f85eb8.woff')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.094048;font-style: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;}
.ls1_c00487{letter-spacing:0.000000px;}
.ls0_c00487{letter-spacing:0.072000px;}
.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;}
._0_c00487{margin-left:-1.336464px;}
._1_c00487{width:1.123488px;}
.fc2_c00487{color:transparent;}
.fc1_c00487{color:rgb(0,0,0);}
.fc0_c00487{color:rgb(255,255,255);}
.fs0_c00487{font-size:108.000000px;}
.fs1_c00487{font-size:216.144000px;}
.y0_c00487{bottom:0.000000px;}
.y2_c00487{bottom:43.524000px;}
.y1_c00487{bottom:396.255000px;}
.h1_c00487{height:91.283203px;}
.h2_c00487{height:192.152016px;}
.h0_c00487{height:810.000000px;}
.w1_c00487{width:1439.999979px;}
.w0_c00487{width:1440.000000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:716.219979px;}
.x2_c00487{left:719.129979px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls1_c00487{letter-spacing:0.000000pt;}
.ls0_c00487{letter-spacing:0.064000pt;}
.ws0_c00487{word-spacing:0.000000pt;}
._0_c00487{margin-left:-1.187968pt;}
._1_c00487{width:0.998656pt;}
.fs0_c00487{font-size:96.000000pt;}
.fs1_c00487{font-size:192.128000pt;}
.y0_c00487{bottom:0.000000pt;}
.y2_c00487{bottom:38.688000pt;}
.y1_c00487{bottom:352.226667pt;}
.h1_c00487{height:81.140625pt;}
.h2_c00487{height:170.801792pt;}
.h0_c00487{height:720.000000pt;}
.w1_c00487{width:1279.999981pt;}
.w0_c00487{width:1280.000000pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:636.639981pt;}
.x2_c00487{left:639.226648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e66246bb9fd92a4936c6a73.woff')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:0.980957;font-style:normal;font-weight:normal;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_e4a53f22b2a8fa512f69e05a.woff')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.094048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00488;src:url('chunks/assets/font_a1fd6baf7aa76756f9283124.woff')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.094048;font-style: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;}
.ls1_c00488{letter-spacing:0.000000px;}
.ls0_c00488{letter-spacing:0.072000px;}
.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;}
._0_c00488{margin-left:-1.945296px;}
._1_c00488{width:1.105680px;}
.fc1_c00488{color:rgb(0,0,0);}
.fc0_c00488{color:rgb(255,255,255);}
.fs0_c00488{font-size:108.000000px;}
.fs1_c00488{font-size:216.144000px;}
.y0_c00488{bottom:0.000000px;}
.y2_c00488{bottom:43.524000px;}
.y1_c00488{bottom:396.255000px;}
.h1_c00488{height:91.283203px;}
.h2_c00488{height:192.152016px;}
.h0_c00488{height:810.000000px;}
.w1_c00488{width:1439.999979px;}
.w0_c00488{width:1440.000000px;}
.x0_c00488{left:0.000000px;}
.x2_c00488{left:648.929979px;}
.x1_c00488{left:716.219979px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls1_c00488{letter-spacing:0.000000pt;}
.ls0_c00488{letter-spacing:0.064000pt;}
.ws0_c00488{word-spacing:0.000000pt;}
._0_c00488{margin-left:-1.729152pt;}
._1_c00488{width:0.982827pt;}
.fs0_c00488{font-size:96.000000pt;}
.fs1_c00488{font-size:192.128000pt;}
.y0_c00488{bottom:0.000000pt;}
.y2_c00488{bottom:38.688000pt;}
.y1_c00488{bottom:352.226667pt;}
.h1_c00488{height:81.140625pt;}
.h2_c00488{height:170.801792pt;}
.h0_c00488{height:720.000000pt;}
.w1_c00488{width:1279.999981pt;}
.w0_c00488{width:1280.000000pt;}
.x0_c00488{left:0.000000pt;}
.x2_c00488{left:576.826648pt;}
.x1_c00488{left:636.639981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e66246bb9fd92a4936c6a73.woff')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:0.980957;font-style:normal;font-weight:normal;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_f4ce7585d68548861d2eea93.woff')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.094048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_a032184909dd5d086db353d0.woff')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.094048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls1_c00489{letter-spacing:0.000000px;}
.ls0_c00489{letter-spacing:0.072000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00489{word-spacing:-216.144000px;}
.ws0_c00489{word-spacing:-43.228800px;}
.ws2_c00489{word-spacing:0.000000px;}
._0_c00489{margin-left:-1.428912px;}
.fc2_c00489{color:transparent;}
.fc1_c00489{color:rgb(0,0,0);}
.fc0_c00489{color:rgb(255,255,255);}
.fs0_c00489{font-size:108.000000px;}
.fs1_c00489{font-size:216.144000px;}
.y0_c00489{bottom:0.000000px;}
.y2_c00489{bottom:43.524000px;}
.y1_c00489{bottom:396.255000px;}
.h1_c00489{height:91.283203px;}
.h2_c00489{height:192.152016px;}
.h0_c00489{height:810.000000px;}
.w1_c00489{width:1439.999979px;}
.w0_c00489{width:1440.000000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:716.219979px;}
.x2_c00489{left:814.934979px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls1_c00489{letter-spacing:0.000000pt;}
.ls0_c00489{letter-spacing:0.064000pt;}
.ws1_c00489{word-spacing:-192.128000pt;}
.ws0_c00489{word-spacing:-38.425600pt;}
.ws2_c00489{word-spacing:0.000000pt;}
._0_c00489{margin-left:-1.270144pt;}
.fs0_c00489{font-size:96.000000pt;}
.fs1_c00489{font-size:192.128000pt;}
.y0_c00489{bottom:0.000000pt;}
.y2_c00489{bottom:38.688000pt;}
.y1_c00489{bottom:352.226667pt;}
.h1_c00489{height:81.140625pt;}
.h2_c00489{height:170.801792pt;}
.h0_c00489{height:720.000000pt;}
.w1_c00489{width:1279.999981pt;}
.w0_c00489{width:1280.000000pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:636.639981pt;}
.x2_c00489{left:724.386648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b840c1be0ddf35d66c519f8f.woff')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.094048;font-style:normal;font-weight:normal;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_aec5e6f56e6470b1408c5890.woff')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.094048;font-style: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;}
._0_c00490{margin-left:-1.387536px;}
.fc0_c00490{color:rgb(0,0,0);}
.fs0_c00490{font-size:216.144000px;}
.y0_c00490{bottom:0.000000px;}
.y1_c00490{bottom:43.524000px;}
.h1_c00490{height:192.152016px;}
.h0_c00490{height:810.000000px;}
.w1_c00490{width:1439.999979px;}
.w0_c00490{width:1440.000000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:891.614979px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws0_c00490{word-spacing:0.000000pt;}
._0_c00490{margin-left:-1.233365pt;}
.fs0_c00490{font-size:192.128000pt;}
.y0_c00490{bottom:0.000000pt;}
.y1_c00490{bottom:38.688000pt;}
.h1_c00490{height:170.801792pt;}
.h0_c00490{height:720.000000pt;}
.w1_c00490{width:1279.999981pt;}
.w0_c00490{width:1280.000000pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:792.546648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_384cb240722854ba03ebec05.woff')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.094048;font-style:normal;font-weight:normal;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_fbfaf8f760cd6faa744a35e6.woff')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.094048;font-style: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:-43.228800px;}
.ws1_c00491{word-spacing:0.000000px;}
._0_c00491{margin-left:-1.331664px;}
.fc0_c00491{color:rgb(0,0,0);}
.fs0_c00491{font-size:216.144000px;}
.y0_c00491{bottom:0.000000px;}
.y1_c00491{bottom:43.524000px;}
.h1_c00491{height:192.152016px;}
.h0_c00491{height:810.000000px;}
.w1_c00491{width:1439.999979px;}
.w0_c00491{width:1440.000000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:643.889979px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws0_c00491{word-spacing:-38.425600pt;}
.ws1_c00491{word-spacing:0.000000pt;}
._0_c00491{margin-left:-1.183701pt;}
.fs0_c00491{font-size:192.128000pt;}
.y0_c00491{bottom:0.000000pt;}
.y1_c00491{bottom:38.688000pt;}
.h1_c00491{height:170.801792pt;}
.h0_c00491{height:720.000000pt;}
.w1_c00491{width:1279.999981pt;}
.w0_c00491{width:1280.000000pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:572.346648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7c199942d1f526bb38a8dc8.woff')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.094048;font-style: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:0.000000px;}
.fc0_c00492{color:rgb(0,0,0);}
.fs0_c00492{font-size:216.144000px;}
.y0_c00492{bottom:0.000000px;}
.y1_c00492{bottom:43.524000px;}
.h1_c00492{height:192.152016px;}
.h0_c00492{height:810.000000px;}
.w1_c00492{width:1439.999979px;}
.w0_c00492{width:1440.000000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:1101.344979px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws0_c00492{word-spacing:0.000000pt;}
.fs0_c00492{font-size:192.128000pt;}
.y0_c00492{bottom:0.000000pt;}
.y1_c00492{bottom:38.688000pt;}
.h1_c00492{height:170.801792pt;}
.h0_c00492{height:720.000000pt;}
.w1_c00492{width:1279.999981pt;}
.w0_c00492{width:1280.000000pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:978.973314pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc6b27411a95905db962660a.woff')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.094048;font-style:normal;font-weight:normal;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_c39fb2591656594cb7199571.woff')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.094048;font-style: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:-43.228800px;}
.ws1_c00493{word-spacing:0.000000px;}
._0_c00493{margin-left:-1.691808px;}
.fc0_c00493{color:rgb(0,0,0);}
.fs0_c00493{font-size:216.144000px;}
.y0_c00493{bottom:0.000000px;}
.y1_c00493{bottom:43.524000px;}
.h1_c00493{height:192.152016px;}
.h0_c00493{height:810.000000px;}
.w1_c00493{width:1439.999979px;}
.w0_c00493{width:1440.000000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:406.439979px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ws0_c00493{word-spacing:-38.425600pt;}
.ws1_c00493{word-spacing:0.000000pt;}
._0_c00493{margin-left:-1.503829pt;}
.fs0_c00493{font-size:192.128000pt;}
.y0_c00493{bottom:0.000000pt;}
.y1_c00493{bottom:38.688000pt;}
.h1_c00493{height:170.801792pt;}
.h0_c00493{height:720.000000pt;}
.w1_c00493{width:1279.999981pt;}
.w0_c00493{width:1280.000000pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:361.279981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e326d04d1dba8005da00778.woff')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.094048;font-style:normal;font-weight:normal;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_072b7b69f5022768f98f0032.woff')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.094048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls0_c00494{letter-spacing:0.000000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00494{word-spacing:-43.228800px;}
.ws1_c00494{word-spacing:0.000000px;}
._0_c00494{margin-left:-1.741200px;}
.fc0_c00494{color:rgb(0,0,0);}
.fs0_c00494{font-size:216.144000px;}
.y0_c00494{bottom:0.000000px;}
.y1_c00494{bottom:43.524000px;}
.h1_c00494{height:192.152016px;}
.h0_c00494{height:810.000000px;}
.w1_c00494{width:1439.999979px;}
.w0_c00494{width:1440.000000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:434.699979px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ws0_c00494{word-spacing:-38.425600pt;}
.ws1_c00494{word-spacing:0.000000pt;}
._0_c00494{margin-left:-1.547733pt;}
.fs0_c00494{font-size:192.128000pt;}
.y0_c00494{bottom:0.000000pt;}
.y1_c00494{bottom:38.688000pt;}
.h1_c00494{height:170.801792pt;}
.h0_c00494{height:720.000000pt;}
.w1_c00494{width:1279.999981pt;}
.w0_c00494{width:1280.000000pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:386.399981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_681533474a78a610a79e6eb8.woff')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:0.980957;font-style:normal;font-weight:normal;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_9d7cdc82a2d5ed6c039f7eaa.woff')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.094048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_0e326d04d1dba8005da00778.woff')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.094048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.v1_c00495{vertical-align:90.720000px;}
.ls2_c00495{letter-spacing:0.000000px;}
.ls1_c00495{letter-spacing:0.191952px;}
.ls0_c00495{letter-spacing:794.232000px;}
.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;}
.fc1_c00495{color:rgb(0,0,0);}
.fc0_c00495{color:rgb(255,255,255);}
.fs0_c00495{font-size:108.000000px;}
.fs1_c00495{font-size:324.000000px;}
.fs2_c00495{font-size:324.144000px;}
.y0_c00495{bottom:0.000000px;}
.y2_c00495{bottom:34.128000px;}
.y1_c00495{bottom:108.648000px;}
.h2_c00495{height:288.164016px;}
.h1_c00495{height:378.756000px;}
.h0_c00495{height:810.000000px;}
.w1_c00495{width:1439.999979px;}
.w0_c00495{width:1440.000000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:716.219979px;}
.x2_c00495{left:1027.079979px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.v1_c00495{vertical-align:80.640000pt;}
.ls2_c00495{letter-spacing:0.000000pt;}
.ls1_c00495{letter-spacing:0.170624pt;}
.ls0_c00495{letter-spacing:705.984000pt;}
.ws0_c00495{word-spacing:0.000000pt;}
.fs0_c00495{font-size:96.000000pt;}
.fs1_c00495{font-size:288.000000pt;}
.fs2_c00495{font-size:288.128000pt;}
.y0_c00495{bottom:0.000000pt;}
.y2_c00495{bottom:30.336000pt;}
.y1_c00495{bottom:96.576000pt;}
.h2_c00495{height:256.145792pt;}
.h1_c00495{height:336.672000pt;}
.h0_c00495{height:720.000000pt;}
.w1_c00495{width:1279.999981pt;}
.w0_c00495{width:1280.000000pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:636.639981pt;}
.x2_c00495{left:912.959981pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f58026911ba965a3c8570f6a.woff')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.177000;font-style: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;}
.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;}
.fc0_c00496{color:rgb(0,0,0);}
.fs0_c00496{font-size:233.954999px;}
.y0_c00496{bottom:0.000000px;}
.y1_c00496{bottom:0.000010px;}
.y2_c00496{bottom:169.058225px;}
.h3_c00496{height:225.766574px;}
.h2_c00496{height:1214.999949px;}
.h0_c00496{height:1214.999989px;}
.h1_c00496{height:1215.000000px;}
.w1_c00496{width:2159.999910px;}
.w0_c00496{width:2160.000000px;}
.x0_c00496{left:0.000000px;}
.x1_c00496{left:31.851561px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws0_c00496{word-spacing:0.000000pt;}
.fs0_c00496{font-size:207.959999pt;}
.y0_c00496{bottom:0.000000pt;}
.y1_c00496{bottom:0.000009pt;}
.y2_c00496{bottom:150.273978pt;}
.h3_c00496{height:200.681399pt;}
.h2_c00496{height:1079.999955pt;}
.h0_c00496{height:1079.999991pt;}
.h1_c00496{height:1080.000000pt;}
.w1_c00496{width:1919.999920pt;}
.w0_c00496{width:1920.000000pt;}
.x0_c00496{left:0.000000pt;}
.x1_c00496{left:28.312499pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d4235e4599c08fd5f312b6a.woff')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:0.980000;font-style:normal;font-weight:normal;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_351bb7c4186d6ac330d65103.woff')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls0_c00497{letter-spacing: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:-127.439995px;}
.ws1_c00497{word-spacing:0.000000px;}
._1_c00497{margin-left:-4.209912px;}
._2_c00497{margin-left:-2.110221px;}
._0_c00497{margin-left:-1.073718px;}
.fc0_c00497{color:rgb(0,0,0);}
.fs0_c00497{font-size:209.969991px;}
.fs1_c00497{font-size:269.999989px;}
.y0_c00497{bottom:0.000000px;}
.y1_c00497{bottom:0.000010px;}
.y4_c00497{bottom:435.933921px;}
.y3_c00497{bottom:570.933916px;}
.y2_c00497{bottom:705.933910px;}
.y5_c00497{bottom:1068.649638px;}
.h3_c00497{height:163.776593px;}
.h4_c00497{height:263.789989px;}
.h2_c00497{height:1214.999949px;}
.h0_c00497{height:1214.999989px;}
.h1_c00497{height:1215.000000px;}
.w1_c00497{width:2159.999910px;}
.w0_c00497{width:2160.000000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:953.765921px;}
.x2_c00497{left:999.123011px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ws0_c00497{word-spacing:-113.279995pt;}
.ws1_c00497{word-spacing:0.000000pt;}
._1_c00497{margin-left:-3.742144pt;}
._2_c00497{margin-left:-1.875752pt;}
._0_c00497{margin-left:-0.954416pt;}
.fs0_c00497{font-size:186.639992pt;}
.fs1_c00497{font-size:239.999990pt;}
.y0_c00497{bottom:0.000000pt;}
.y1_c00497{bottom:0.000009pt;}
.y4_c00497{bottom:387.496819pt;}
.y3_c00497{bottom:507.496814pt;}
.y2_c00497{bottom:627.496809pt;}
.y5_c00497{bottom:949.910789pt;}
.h3_c00497{height:145.579194pt;}
.h4_c00497{height:234.479990pt;}
.h2_c00497{height:1079.999955pt;}
.h0_c00497{height:1079.999991pt;}
.h1_c00497{height:1080.000000pt;}
.w1_c00497{width:1919.999920pt;}
.w0_c00497{width:1920.000000pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:847.791930pt;}
.x2_c00497{left:888.109343pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_147c7490bffbcece05cfc7cf.woff')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.028000;font-style:normal;font-weight:normal;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_b0b4f7b720c381b7b3c376c8.woff')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.161000;font-style: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{margin-left:-5.400121px;}
._3_c00498{margin-left:-4.209966px;}
._2_c00498{margin-left:-2.972155px;}
._1_c00498{margin-left:-1.620157px;}
._4_c00498{width:1.356621px;}
._5_c00498{width:16.054524px;}
.fc0_c00498{color:rgb(0,0,0);}
.fs1_c00498{font-size:209.969991px;}
.fs0_c00498{font-size:269.999989px;}
.y0_c00498{bottom:0.000000px;}
.y1_c00498{bottom:0.000010px;}
.y9_c00498{bottom:353.188682px;}
.y8_c00498{bottom:420.688679px;}
.y7_c00498{bottom:488.188676px;}
.y6_c00498{bottom:555.688673px;}
.y5_c00498{bottom:623.188670px;}
.y4_c00498{bottom:893.188659px;}
.y3_c00498{bottom:960.688656px;}
.y2_c00498{bottom:1100.188650px;}
.h4_c00498{height:199.261522px;}
.h3_c00498{height:220.319991px;}
.h2_c00498{height:1214.999949px;}
.h0_c00498{height:1214.999989px;}
.h1_c00498{height:1215.000000px;}
.w1_c00498{width:2159.999910px;}
.w0_c00498{width:2160.000000px;}
.x0_c00498{left:0.000000px;}
.x2_c00498{left:140.547321px;}
.x3_c00498{left:229.791457px;}
.x1_c00498{left:512.184024px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws0_c00498{word-spacing:0.000000pt;}
._0_c00498{margin-left:-4.800108pt;}
._3_c00498{margin-left:-3.742192pt;}
._2_c00498{margin-left:-2.641915pt;}
._1_c00498{margin-left:-1.440140pt;}
._4_c00498{width:1.205885pt;}
._5_c00498{width:14.270688pt;}
.fs1_c00498{font-size:186.639992pt;}
.fs0_c00498{font-size:239.999990pt;}
.y0_c00498{bottom:0.000000pt;}
.y1_c00498{bottom:0.000009pt;}
.y9_c00498{bottom:313.945495pt;}
.y8_c00498{bottom:373.945492pt;}
.y7_c00498{bottom:433.945490pt;}
.y6_c00498{bottom:493.945487pt;}
.y5_c00498{bottom:553.945485pt;}
.y4_c00498{bottom:793.945475pt;}
.y3_c00498{bottom:853.945472pt;}
.y2_c00498{bottom:977.945467pt;}
.h4_c00498{height:177.121353pt;}
.h3_c00498{height:195.839992pt;}
.h2_c00498{height:1079.999955pt;}
.h0_c00498{height:1079.999991pt;}
.h1_c00498{height:1080.000000pt;}
.w1_c00498{width:1919.999920pt;}
.w0_c00498{width:1920.000000pt;}
.x0_c00498{left:0.000000pt;}
.x2_c00498{left:124.930952pt;}
.x3_c00498{left:204.259073pt;}
.x1_c00498{left:455.274688pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6123fb5d672298fbae02895.woff')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:0.980000;font-style:normal;font-weight:normal;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_69996683654875da43f3377c.woff')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.028000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls0_c00499{letter-spacing:0.000000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:0.000000px;}
._1_c00499{margin-left:-5.260306px;}
._2_c00499{margin-left:-3.294814px;}
._0_c00499{margin-left:-1.909642px;}
.fc0_c00499{color:rgb(0,0,0);}
.fs0_c00499{font-size:209.969991px;}
.fs1_c00499{font-size:269.954998px;}
.fs2_c00499{font-size:336.689986px;}
.y0_c00499{bottom:0.000000px;}
.y1_c00499{bottom:0.000010px;}
.y4_c00499{bottom:529.543785px;}
.y3_c00499{bottom:664.543780px;}
.y2_c00499{bottom:799.543774px;}
.y6_c00499{bottom:855.155833px;}
.y5_c00499{bottom:1094.780823px;}
.h3_c00499{height:163.776593px;}
.h4_c00499{height:220.283278px;}
.h5_c00499{height:262.618189px;}
.h2_c00499{height:1214.999949px;}
.h0_c00499{height:1214.999989px;}
.h1_c00499{height:1215.000000px;}
.w1_c00499{width:2159.999910px;}
.w0_c00499{width:2160.000000px;}
.x0_c00499{left:0.000000px;}
.x4_c00499{left:679.781222px;}
.x5_c00499{left:1070.068320px;}
.x1_c00499{left:1199.435141px;}
.x2_c00499{left:1215.677328px;}
.x3_c00499{left:1222.814046px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ws0_c00499{word-spacing:0.000000pt;}
._1_c00499{margin-left:-4.675828pt;}
._2_c00499{margin-left:-2.928724pt;}
._0_c00499{margin-left:-1.697460pt;}
.fs0_c00499{font-size:186.639992pt;}
.fs1_c00499{font-size:239.959998pt;}
.fs2_c00499{font-size:299.279988pt;}
.y0_c00499{bottom:0.000000pt;}
.y1_c00499{bottom:0.000009pt;}
.y4_c00499{bottom:470.705587pt;}
.y3_c00499{bottom:590.705582pt;}
.y2_c00499{bottom:710.705577pt;}
.y6_c00499{bottom:760.138518pt;}
.y5_c00499{bottom:973.138509pt;}
.h3_c00499{height:145.579194pt;}
.h4_c00499{height:195.807358pt;}
.h5_c00499{height:233.438390pt;}
.h2_c00499{height:1079.999955pt;}
.h0_c00499{height:1079.999991pt;}
.h1_c00499{height:1080.000000pt;}
.w1_c00499{width:1919.999920pt;}
.w0_c00499{width:1920.000000pt;}
.x0_c00499{left:0.000000pt;}
.x4_c00499{left:604.249975pt;}
.x5_c00499{left:951.171840pt;}
.x1_c00499{left:1066.164570pt;}
.x2_c00499{left:1080.602069pt;}
.x3_c00499{left:1086.945819pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69996683654875da43f3377c.woff')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.028000;font-style:normal;font-weight:normal;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_ee97b29adde3969b14b26430.woff')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:0.992000;font-style:normal;font-weight:normal;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_69996683654875da43f3377c.woff')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.028000;font-style:normal;font-weight:normal;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_630968c81750781581cc5efc.woff')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.179000;font-style:normal;font-weight:normal;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_6d856136ad7dd37ee58ab669.woff')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.016000;font-style:normal;font-weight:normal;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_fb95bf5c3da49d6e36aff71e.woff')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:0.980000;font-style:normal;font-weight:normal;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_c27c2bc1ca97224140ea587f.woff')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.016000;font-style:normal;font-weight:normal;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_0522c10b130a60350c0bfb5b.woff')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:0.828000;font-style:normal;font-weight:normal;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_a90c2a9efdfad6c89490e351.woff')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:0.980000;font-style:normal;font-weight: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_a90c2a9efdfad6c89490e351.woff')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:0.980000;font-style:normal;font-weight: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_0522c10b130a60350c0bfb5b.woff')format("woff");}.ffb_c00001{font-family:ffb_c00001;line-height:0.828000;font-style:normal;font-weight: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_5da560dfc99bef2a68d801f6.woff')format("woff");}.ffc_c00001{font-family:ffc_c00001;line-height:1.016000;font-style:normal;font-weight: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_c61a14bdf9fa9c0cfd0ce894.woff')format("woff");}.ffd_c00001{font-family:ffd_c00001;line-height:0.992000;font-style:normal;font-weight: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_64cc9132602dd8c7301562d5.woff')format("woff");}.ffe_c00001{font-family:ffe_c00001;line-height:0.828000;font-style:normal;font-weight: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_b400fb7142e2c502121c9ab3.woff')format("woff");}.fff_c00001{font-family:fff_c00001;line-height:0.980000;font-style:normal;font-weight: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_7c0622ec60a41b0a5785d4ca.woff')format("woff");}.ff10_c00001{font-family:ff10_c00001;line-height:0.828000;font-style:normal;font-weight: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_d428fd6b5bfe03cfc2e9ffc1.woff')format("woff");}.ff11_c00001{font-family:ff11_c00001;line-height:0.992000;font-style:normal;font-weight: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_55ba44441eb958846aede157.woff')format("woff");}.ff12_c00001{font-family:ff12_c00001;line-height:1.016000;font-style:normal;font-weight: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_4be3b4a7c1f8757d656b6557.woff')format("woff");}.ff13_c00001{font-family:ff13_c00001;line-height:1.155000;font-style:normal;font-weight: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_39af2487fe94c1999a142c89.woff')format("woff");}.ff14_c00001{font-family:ff14_c00001;line-height:1.165000;font-style:normal;font-weight: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_52ee7b1a60a048bb1504302c.woff')format("woff");}.ff15_c00001{font-family:ff15_c00001;line-height:0.792000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00001{word-spacing:-63.719997px;}
.ws3_c00001{word-spacing:-56.636460px;}
.ws1_c00001{word-spacing:-49.552918px;}
.ws0_c00001{word-spacing:0.000000px;}
._8_c00001{margin-left:-11.523439px;}
._4_c00001{margin-left:-9.413508px;}
._5_c00001{margin-left:-6.592804px;}
._3_c00001{margin-left:-5.222542px;}
._6_c00001{margin-left:-3.907277px;}
._0_c00001{margin-left:-2.715967px;}
._1_c00001{margin-left:-1.493380px;}
._2_c00001{width:2.093314px;}
._7_c00001{width:764.045156px;}
.fc0_c00001{color:rgb(0,0,0);}
.fs1_c00001{font-size:209.969991px;}
.fs4_c00001{font-size:234.044981px;}
.fs6_c00001{font-size:239.984999px;}
.fs0_c00001{font-size:269.954998px;}
.fs2_c00001{font-size:269.999989px;}
.fs3_c00001{font-size:270.044980px;}
.fs5_c00001{font-size:599.940007px;}
.y0_c00001{bottom:0.000000px;}
.y1_c00001{bottom:0.000010px;}
.y23_c00001{bottom:140.939731px;}
.y1c_c00001{bottom:263.540725px;}
.y1d_c00001{bottom:463.993001px;}
.y1b_c00001{bottom:474.610948px;}
.yd_c00001{bottom:571.091265px;}
.y21_c00001{bottom:594.742976px;}
.y22_c00001{bottom:596.564712px;}
.y19_c00001{bottom:598.915213px;}
.y13_c00001{bottom:689.624971px;}
.y15_c00001{bottom:693.463374px;}
.yc_c00001{bottom:706.091259px;}
.y20_c00001{bottom:729.742970px;}
.y18_c00001{bottom:733.915208px;}
.y4_c00001{bottom:821.660524px;}
.y12_c00001{bottom:824.624966px;}
.y14_c00001{bottom:828.463368px;}
.yb_c00001{bottom:841.091253px;}
.y1f_c00001{bottom:864.742964px;}
.y17_c00001{bottom:868.915202px;}
.y8_c00001{bottom:869.002221px;}
.y3_c00001{bottom:889.160521px;}
.y10_c00001{bottom:916.388487px;}
.ya_c00001{bottom:976.091248px;}
.y7_c00001{bottom:1004.002216px;}
.ye_c00001{bottom:1022.591229px;}
.y6_c00001{bottom:1059.577185px;}
.y16_c00001{bottom:1070.532553px;}
.y1e_c00001{bottom:1071.742956px;}
.y11_c00001{bottom:1085.788326px;}
.y1a_c00001{bottom:1098.899943px;}
.y2_c00001{bottom:1105.668730px;}
.y9_c00001{bottom:1110.341226px;}
.yf_c00001{bottom:1112.092359px;}
.y5_c00001{bottom:1131.577182px;}
.h4_c00001{height:163.776593px;}
.h8_c00001{height:182.555085px;}
.h9_c00001{height:198.001702px;}
.h6_c00001{height:205.560621px;}
.h3_c00001{height:220.283278px;}
.h5_c00001{height:220.319991px;}
.h7_c00001{height:220.356703px;}
.hb_c00001{height:231.585524px;}
.ha_c00001{height:578.942106px;}
.h2_c00001{height:1214.999949px;}
.h0_c00001{height:1214.999989px;}
.h1_c00001{height:1215.000000px;}
.hd_c00001{height:1620.000000px;}
.hc_c00001{height:1620.225000px;}
.w1_c00001{width:2159.999910px;}
.w0_c00001{width:2160.000000px;}
.w2_c00001{width:2880.405000px;}
.w3_c00001{width:2880.750000px;}
.x0_c00001{left:0.000000px;}
.xf_c00001{left:130.747843px;}
.xd_c00001{left:147.425826px;}
.x14_c00001{left:152.857786px;}
.x1b_c00001{left:299.214831px;}
.x15_c00001{left:354.371142px;}
.xb_c00001{left:493.154282px;}
.x12_c00001{left:630.839505px;}
.xc_c00001{left:640.740213px;}
.x18_c00001{left:669.619087px;}
.x4_c00001{left:679.675753px;}
.x1_c00001{left:682.510547px;}
.xe_c00001{left:687.673805px;}
.x19_c00001{left:693.718695px;}
.x1a_c00001{left:733.374944px;}
.x11_c00001{left:765.738249px;}
.x13_c00001{left:769.710905px;}
.x17_c00001{left:784.070254px;}
.x8_c00001{left:855.984339px;}
.x7_c00001{left:861.266743px;}
.xa_c00001{left:893.531213px;}
.x6_c00001{left:897.758929px;}
.x9_c00001{left:984.844216px;}
.x5_c00001{left:1073.794883px;}
.x2_c00001{left:1102.242880px;}
.x3_c00001{left:1530.709665px;}
.x10_c00001{left:1572.508947px;}
.x16_c00001{left:1661.823226px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws2_c00001{word-spacing:-56.639998pt;}
.ws3_c00001{word-spacing:-50.343520pt;}
.ws1_c00001{word-spacing:-44.047038pt;}
.ws0_c00001{word-spacing:0.000000pt;}
._8_c00001{margin-left:-10.243057pt;}
._4_c00001{margin-left:-8.367563pt;}
._5_c00001{margin-left:-5.860270pt;}
._3_c00001{margin-left:-4.642260pt;}
._6_c00001{margin-left:-3.473135pt;}
._0_c00001{margin-left:-2.414193pt;}
._1_c00001{margin-left:-1.327449pt;}
._2_c00001{width:1.860724pt;}
._7_c00001{width:679.151250pt;}
.fs1_c00001{font-size:186.639992pt;}
.fs4_c00001{font-size:208.039983pt;}
.fs6_c00001{font-size:213.319999pt;}
.fs0_c00001{font-size:239.959998pt;}
.fs2_c00001{font-size:239.999990pt;}
.fs3_c00001{font-size:240.039982pt;}
.fs5_c00001{font-size:533.280006pt;}
.y0_c00001{bottom:0.000000pt;}
.y1_c00001{bottom:0.000009pt;}
.y23_c00001{bottom:125.279761pt;}
.y1c_c00001{bottom:234.258422pt;}
.y1d_c00001{bottom:412.438223pt;}
.y1b_c00001{bottom:421.876398pt;}
.yd_c00001{bottom:507.636680pt;}
.y21_c00001{bottom:528.660423pt;}
.y22_c00001{bottom:530.279744pt;}
.y19_c00001{bottom:532.369079pt;}
.y13_c00001{bottom:612.999974pt;}
.y15_c00001{bottom:616.411888pt;}
.yc_c00001{bottom:627.636675pt;}
.y20_c00001{bottom:648.660418pt;}
.y18_c00001{bottom:652.369074pt;}
.y4_c00001{bottom:730.364910pt;}
.y12_c00001{bottom:732.999969pt;}
.y14_c00001{bottom:736.411883pt;}
.yb_c00001{bottom:747.636670pt;}
.y1f_c00001{bottom:768.660413pt;}
.y17_c00001{bottom:772.369069pt;}
.y8_c00001{bottom:772.446419pt;}
.y3_c00001{bottom:790.364908pt;}
.y10_c00001{bottom:814.567544pt;}
.ya_c00001{bottom:867.636665pt;}
.y7_c00001{bottom:892.446414pt;}
.ye_c00001{bottom:908.969982pt;}
.y6_c00001{bottom:941.846387pt;}
.y16_c00001{bottom:951.584492pt;}
.y1e_c00001{bottom:952.660405pt;}
.y11_c00001{bottom:965.145179pt;}
.y1a_c00001{bottom:976.799949pt;}
.y2_c00001{bottom:982.816649pt;}
.y9_c00001{bottom:986.969978pt;}
.yf_c00001{bottom:988.526541pt;}
.y5_c00001{bottom:1005.846384pt;}
.h4_c00001{height:145.579194pt;}
.h8_c00001{height:162.271187pt;}
.h9_c00001{height:176.001513pt;}
.h6_c00001{height:182.720552pt;}
.h3_c00001{height:195.807358pt;}
.h5_c00001{height:195.839992pt;}
.h7_c00001{height:195.872625pt;}
.hb_c00001{height:205.853799pt;}
.ha_c00001{height:514.615206pt;}
.h2_c00001{height:1079.999955pt;}
.h0_c00001{height:1079.999991pt;}
.h1_c00001{height:1080.000000pt;}
.hd_c00001{height:1440.000000pt;}
.hc_c00001{height:1440.200000pt;}
.w1_c00001{width:1919.999920pt;}
.w0_c00001{width:1920.000000pt;}
.w2_c00001{width:2560.360000pt;}
.w3_c00001{width:2560.666667pt;}
.x0_c00001{left:0.000000pt;}
.xf_c00001{left:116.220305pt;}
.xd_c00001{left:131.045179pt;}
.x14_c00001{left:135.873588pt;}
.x1b_c00001{left:265.968739pt;}
.x15_c00001{left:314.996570pt;}
.xb_c00001{left:438.359362pt;}
.x12_c00001{left:560.746226pt;}
.xc_c00001{left:569.546856pt;}
.x18_c00001{left:595.216966pt;}
.x4_c00001{left:604.156225pt;}
.x1_c00001{left:606.676042pt;}
.xe_c00001{left:611.265605pt;}
.x19_c00001{left:616.638840pt;}
.x1a_c00001{left:651.888839pt;}
.x11_c00001{left:680.656222pt;}
.x13_c00001{left:684.187471pt;}
.x17_c00001{left:696.951337pt;}
.x8_c00001{left:760.874968pt;}
.x7_c00001{left:765.570438pt;}
.xa_c00001{left:794.249967pt;}
.x6_c00001{left:798.007937pt;}
.x9_c00001{left:875.417081pt;}
.x5_c00001{left:954.484340pt;}
.x2_c00001{left:979.771449pt;}
.x3_c00001{left:1360.630813pt;}
.x10_c00001{left:1397.785731pt;}
.x16_c00001{left:1477.176200pt;}
}




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